[
  {
    "path": ".github/ISSUE_TEMPLATE/bug-report.md",
    "content": "---\nname: Bug Report\nabout: Create a report to help us improve\ntitle: ''\nlabels: bug\nassignees: dscyrescotti\n\n---\n\n**Describe the bug**\nA clear and concise description of what the bug is.\n\n**To Reproduce**\nMinimum amount of code to reproduce:\n```\n/* add it here */\n```\nSteps to reproduce the behavior:\n1. Go to '...'\n2. Click on '....'\n3. Scroll down to '....'\n4. See error\n\n**Expected behavior**\nA clear and concise description of what you expected to happen.\n\n**Screenshots**\nIf applicable, add screenshots to help explain your problem.\n\n**Device information (please complete the following information):**\n - Device: [e.g. iPhone/Simulator]\n - OS: [e.g. iOS8.1]\n - Xcode version: [e.g. Xcode 13]\n\n**Additional context**\nAdd any other context about the problem here.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature-request.md",
    "content": "---\nname: Feature Request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: enhancement\nassignees: dscyrescotti\n\n---\n\n**Is your feature request related to a problem? Please describe.**\nA clear and concise description of what the problem is. Ex. I'm always frustrated when [...]\n\n**Describe the solution you'd like**\nA clear and concise description of what you want to happen.\n\n**Describe alternatives you've considered**\nA clear and concise description of any alternative solutions or features you've considered.\n\n**Additional context**\nAdd any other context or screenshots about the feature request here.\n"
  },
  {
    "path": ".github/workflows/swift.yml",
    "content": "name: Swift\n\non:\n  push:\n    branches: [ main ]\n  pull_request:\n    branches: [ main ]\n\njobs:\n  build:\n    runs-on: macos-12\n    steps:\n    - uses: actions/checkout@v2\n    - uses: maxim-lobanov/setup-xcode@v1\n      with:\n        xcode-version: '14.2'\n    - name: Build\n      run: swift build -v\n    # - name: Build (iOS)\n    #   run: xcrun xcodebuild -derivedDataPath \"../.derivedData\" clean build -scheme \"ShuffleIt\" -destination \"generic/platform=ios\"\n    # - name: Build (macOS)\n    #   run: xcrun xcodebuild -derivedDataPath \"../.derivedData\" clean build -scheme \"ShuffleIt\" -destination \"generic/platform=macos\"\n    # - name: Build (tvOS)\n    #   run: xcrun xcodebuild -derivedDataPath \"../.derivedData\" clean build -scheme \"ShuffleIt\" -destination \"generic/platform=tvos\"\n    # - name: Build (watchOS)\n    #   run: xcrun xcodebuild -derivedDataPath \"../.derivedData\" clean build -scheme \"ShuffleIt\" -destination \"generic/platform=watchos\"\n    - name: Run tests\n      run: swift test --enable-code-coverage\n    - name: Convert code coverage\n      run: xcrun llvm-cov export -format=\"lcov\" -instr-profile=$(find .build -name default.profdata) $(find .build -name ShuffleItPackageTests) > info.lcov\n    - name: Codecov\n      uses: codecov/codecov-action@v3.1.1\n      with:\n        file: info.lcov\n"
  },
  {
    "path": ".gitignore",
    "content": "# Xcode\n#\n# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore\n\n## User settings\nxcuserdata/\n\n## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)\n*.xcscmblueprint\n*.xccheckout\n\n## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)\nbuild/\nDerivedData/\n*.moved-aside\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\n\n## Obj-C/Swift specific\n*.hmap\n\n## App packaging\n*.ipa\n*.dSYM.zip\n*.dSYM\n\n## Playgrounds\ntimeline.xctimeline\nplayground.xcworkspace\n\n# Swift Package Manager\n#\n# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.\nPackages/\nPackage.pins\nPackage.resolved\n# *.xcodeproj\n#\n# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata\n# hence it is not needed unless you have added a package configuration file to your project\n.swiftpm\n\n.build/\n\n# CocoaPods\n#\n# We recommend against adding the Pods directory to your .gitignore. However\n# you should judge for yourself, the pros and cons are mentioned at:\n# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control\n#\n# Pods/\n#\n# Add this line if you want to avoid checking in source code from the Xcode workspace\n# *.xcworkspace\n\n# Carthage\n#\n# Add this line if you want to avoid checking in source code from Carthage dependencies.\n# Carthage/Checkouts\n\nCarthage/Build/\n\n# Accio dependency management\nDependencies/\n.accio/\n\n# fastlane\n#\n# It is recommended to not store the screenshots in the git repo.\n# Instead, use fastlane to re-generate the screenshots whenever they are needed.\n# For more information about the recommended setup visit:\n# https://docs.fastlane.tools/best-practices/source-control/#source-control\n\nfastlane/report.xml\nfastlane/Preview.html\nfastlane/screenshots/**/*.png\nfastlane/test_output\n\n# Code Injection\n#\n# After new code Injection tools there's a generated folder /iOSInjectionProject\n# https://github.com/johnno1962/injectionforxcode\n\niOSInjectionProject/"
  },
  {
    "path": "Demo/Demo/App/DemoApp.swift",
    "content": "import SwiftUI\n\n@main\nstruct DemoApp: App {\n    var body: some Scene {\n        WindowGroup {\n            MainView()\n                .preferredColorScheme(.light)\n        }\n    }\n}\n"
  },
  {
    "path": "Demo/Demo/App/MainView.swift",
    "content": "import SwiftUI\n\nstruct MainView: View {\n    @State private var route: Route? = nil\n    var body: some View {\n        NavigationView {\n            List {\n                Section {\n                    Button(action: {\n                        route = .shuffleStack\n                    }) {\n                        Label(\"ShuffleStack (Simple)\", systemImage: \"square.stack.3d.down.forward.fill\")\n                    }\n                    Button(action: {\n                        route = .timingShuffleStack\n                    }) {\n                        Label(\"ShuffleStack (with Timer)\", systemImage: \"deskclock.fill\")\n                    }\n                    Button(action: {\n                        route = .carouselStack\n                    }) {\n                        Label(\"CarouselStack\", systemImage: \"sparkles.rectangle.stack.fill\")\n                    }\n                    Button(action: {\n                        route = .shuffleDeck\n                    }) {\n                        Label(\"ShuffleDeck\", systemImage: \"photo.on.rectangle.angled\")\n                    }\n                } header: {\n                    Text(\"ShuffleStack\")\n                }\n\n            }\n            .listStyle(.insetGrouped)\n            .foregroundColor(.black)\n            .navigationTitle(\"ShuffleIt ✌️\")\n            .fullScreenCover(item: $route) { route in\n                switch route {\n                case .shuffleStack:\n                    ShuffleStackDemoView()\n                case .timingShuffleStack:\n                    TimingShuffleStackDemoView()\n                case .carouselStack:\n                    CarouselStackDemoView()\n                case .shuffleDeck:\n                    ShuffleDeckDemoView()\n                }\n            }\n        }\n    }\n}\n\nstruct ContentView_Previews: PreviewProvider {\n    static var previews: some View {\n        MainView()\n    }\n}\n\nenum Route: Identifiable {\n    case shuffleStack\n    case timingShuffleStack\n    case carouselStack\n    case shuffleDeck\n    \n    var id: String {\n        switch self {\n        case .shuffleStack: return \"shuffle-stack\"\n        case .timingShuffleStack: return \"timing-shuffle-stack\"\n        case .carouselStack: return \"carousel-stack\"\n        case .shuffleDeck: return \"shuffle-deck\"\n        }\n    }\n}\n"
  },
  {
    "path": "Demo/Demo/Components/LandmarkCard.swift",
    "content": "import SwiftUI\n\nstruct LandmarkCard: View {\n    let landmark: Landmark\n\n    var body: some View {\n        ZStack(alignment: .bottomLeading) {\n            Image(landmark.image)\n                .resizable()\n            LinearGradient(\n                colors: [\n                    .clear,\n                    .clear,\n                    .black.opacity(0.7)\n                ],\n                startPoint: .top,\n                endPoint: .bottom\n            )\n            VStack(alignment: .leading) {\n                Text(landmark.name)\n                    .font(.title.bold())\n                Text(landmark.location)\n                    .font(.title3.bold())\n            }\n            .foregroundColor(.white)\n            .padding()\n        }\n        .frame(width: 300, height: 400)\n        .cornerRadius(20)\n        .shadow(radius: 10)\n    }\n}\n\nstruct LandmarkCard_Previews: PreviewProvider {\n    static var previews: some View {\n        LandmarkCard(\n            landmark: Landmark(\n                id: \"shwedagon_pagoda\",\n                image: \"shwedagon_pagoda\",\n                name: \"Shwedagon Pagoda\",\n                location: \"Yangon, Myanmar\",\n                lat: 0,\n                long: 0,\n                background: \"\"\n            )\n        )\n    }\n}\n"
  },
  {
    "path": "Demo/Demo/Components/SneakerCard.swift",
    "content": "import SwiftUI\n\nstruct SneakerCard: View {\n    let sneaker: Sneaker\n    let translation: CGFloat\n    @Environment(\\.horizontalSizeClass) var horizontalSizeClass\n    \n    var body: some View {\n        Group {\n            if horizontalSizeClass == .compact {\n                compactContent\n            } else {\n                regularContent\n            }\n        }\n        .frame(maxWidth: .infinity)\n        .foregroundColor(Color(hex: sneaker.theme.foreground))\n        .background {\n            GeometryReader { proxy in\n                ZStack {\n                    Circle()\n                        .position(x: -30, y: 30)\n                        .foregroundColor(Color(hex: sneaker.theme.secondary).opacity(0.6))\n                    Circle()\n                        .scale(1.3, anchor: .bottomTrailing)\n                        .position(x: 250, y: proxy.size.height + 60)\n                        .foregroundColor(Color(hex: sneaker.theme.primary).opacity(0.45))\n                    Circle()\n                        .scale(0.5)\n                        .position(x: proxy.size.width, y: 60)\n                        .foregroundColor(Color(hex: sneaker.theme.tertiary).opacity(0.6))\n                }\n                .blur(radius: 40)\n            }\n        }\n        .background(Color(hex: sneaker.theme.background).opacity(0.4))\n        .background(.white)\n        .cornerRadius(16)\n    }\n    \n    var compactContent: some View {\n        VStack(spacing: 0) {\n            Image(sneaker.imageName)\n                .resizable()\n                .scaledToFit()\n                .frame(width: 180, height: 180)\n                .rotationEffect(.degrees(-40 * Double(1 - translation)))\n                .offset(x: -20 * Double(1 - translation))\n            Text(sneaker.title)\n                .font(.title.bold())\n                .offset(y: -15)\n                .padding(.bottom, -15)\n            Text(sneaker.slogan)\n                .font(.headline)\n                .lineLimit(1)\n        }\n        .padding(.bottom)\n    }\n    \n    var regularContent: some View {\n        HStack(spacing: 0) {\n            Image(sneaker.imageName)\n                .resizable()\n                .scaledToFit()\n                .frame(width: 300, height: 300)\n                .rotationEffect(.degrees(-40 * Double(1 - translation)))\n                .offset(x: -40 * Double(1 - translation))\n            VStack(alignment: .leading, spacing: 0) {\n                Text(sneaker.title)\n                    .font(.system(size: 60).bold())\n                Text(sneaker.slogan)\n                    .font(.title)\n            }\n            .padding(.trailing, 30)\n            .lineLimit(2)\n        }\n        .padding(20)\n    }\n}\n\nstruct SneakerCard_Previews: PreviewProvider {\n    static var previews: some View {\n        SneakerCard(\n            sneaker: Sneaker(\n                id: \"air-trainer-sc-high\",\n                title: \"Air Force 1\",\n                slogan: \"To Air force, or not to the Air force.\",\n                imageName: \"air-trainer-sc-high\",\n                theme: .init(\n                    primary: \"#FFBF85FF\",\n                    secondary: \"#FFA490FF\",\n                    tertiary: \"#FF7A00FF\",\n                    background: \"#FFCFA3FF\",\n                    foreground: \"#000000FF\"\n                ),\n                items: []\n            ),\n            translation: 1\n        )\n        .foregroundColor(.white)\n        .padding()\n    }\n}\n"
  },
  {
    "path": "Demo/Demo/Components/SneakerItemRow.swift",
    "content": "import SwiftUI\n\nstruct SneakerItemRow: View {\n    let item: SneakerItem\n    var body: some View {\n        HStack(alignment: .top, spacing: 16) {\n            Image(item.imageName)\n                .resizable()\n                .frame(width: 100, height: 100)\n                .cornerRadius(16)\n            VStack(alignment: .leading, spacing: 5) {\n                Text(item.title)\n                    .font(.headline)\n                    .lineLimit(2)\n                HStack(spacing: 5) {\n                    Group {\n                        Text(item.type)\n                        Text(item.colorVariants)\n                    }\n                    .padding(.horizontal, 10)\n                    .padding(.vertical, 5)\n                    .background(.gray.opacity(0.2))\n                    .cornerRadius(10)\n                }\n                .font(.caption.bold())\n                Text(item.price)\n                    .font(.subheadline.bold())\n            }\n            .frame(maxWidth: .infinity, alignment: .leading)\n        }\n        .padding(16)\n        .background(.ultraThinMaterial)\n        .cornerRadius(16)\n    }\n}\n\nstruct SneakerItemRow_Previews: PreviewProvider {\n    static var previews: some View {\n        SneakerItemRow(\n            item: SneakerItem(\n                id: \"air-force4\",\n                imageName: \"air-force4\",\n                title: \"Nike Air Force 1 Mid '07 LV8 Next Nature\",\n                type: \"Men's Shoes\",\n                colorVariants: \"1 Color\",\n                price: \"$130\"\n            )\n        )\n        .padding()\n    }\n}\n"
  },
  {
    "path": "Demo/Demo/Demos/CarouselStack/Scenes/CarouselStackDemoView.swift",
    "content": "import SwiftUI\nimport Combine\nimport ShuffleIt\n\nstruct CarouselStackDemoView: View {\n    @Environment(\\.dismiss) var dismiss\n    @State private var sneaker: Sneaker?\n    @State private var isShowItems: Bool = false\n    let carouselPublisher = PassthroughSubject<CarouselDirection, Never>()\n    let timer = Timer.publish(every: 10, tolerance: 0.1, on: .main, in: .default).autoconnect()\n    @Environment(\\.horizontalSizeClass) var horizontalSizeClass\n    let columns: [GridItem] = .init(repeating: GridItem(.flexible(), spacing: 20, alignment: .leading), count: 2)\n    let sneakers: [Sneaker] = .sneakers()\n    \n    var body: some View {\n        VStack(alignment: .leading, spacing: 16) {\n            CarouselStack(sneakers, initialIndex: 0) { sneaker, translation in\n                SneakerCard(sneaker: sneaker, translation: translation)\n            }\n            .carouselScale(0.7)\n            .carouselPadding(horizontalSizeClass == .compact ? 20 : 40)\n            .carouselSpacing(horizontalSizeClass == .compact ? 10 : 30)\n            .carouselStyle(.infiniteScroll)\n            .onCarousel { context in\n                withAnimation(.easeInOut(duration: 0.2)) {\n                    isShowItems = false\n                }\n                DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {\n                    withAnimation(.easeInOut(duration: 0.2)) {\n                        sneaker = sneakers[context.index]\n                        isShowItems = true\n                    }\n                }\n            }\n            .carouselTrigger(on: carouselPublisher)\n            .carouselAnimation(.easeInOut)\n            if let sneaker = sneaker, isShowItems {\n                Text(\"Explore in \\(sneaker.title)\")\n                    .font(.title.bold())\n                    .animation(.none)\n                    .transition(AnyTransition.slide.combined(with: .opacity))\n                    .padding(.horizontal, 20)\n            }\n            if let sneaker = sneaker, isShowItems {\n                ScrollView {\n                    Group {\n                        if horizontalSizeClass == .compact {\n                            LazyVStack(alignment: .leading) {\n                                ForEach(sneaker.items) { item in\n                                    SneakerItemRow(item: item)\n                                }\n                            }\n                        } else {\n                            LazyVGrid(columns: columns) {\n                                ForEach(sneaker.items) { item in\n                                    SneakerItemRow(item: item)\n                                }\n                            }\n                        }\n                    }\n                    .padding(.horizontal, 20)\n                    .animation(.none, value: sneaker.id)\n                }\n                .transition(AnyTransition.move(edge: .bottom).combined(with: .opacity))\n                .modifier(DragGestureViewModifier(onEnd: { value in\n                    switch(value.translation.width, value.translation.height) {\n                    case (...0, -30...30):\n                        carouselPublisher.send(.right)\n                    case (0..., -30...30):\n                        carouselPublisher.send(.left)\n                    default: break\n                    }\n                }))\n                .padding(.bottom, 20)\n            } else {\n                Spacer()\n            }\n        }\n        .background {\n            if let sneaker = sneaker {\n                GeometryReader { proxy in\n                    ZStack {\n                        Circle()\n                            .scale(1.1, anchor: .bottomTrailing)\n                            .position(x: proxy.size.width, y: proxy.size.height / 2.5)\n                            .foregroundColor(Color(hex: sneaker.theme.tertiary).opacity(0.3))\n                        Circle()\n                            .scale(0.7, anchor: .bottomTrailing)\n                            .position(x: 0, y: proxy.size.height)\n                            .foregroundColor(Color(hex: sneaker.theme.primary).opacity(0.45))\n                    }\n                    .blur(radius: 40)\n                    .background(.white)\n                    .ignoresSafeArea()\n                }\n            }\n        }\n        .onAppear {\n            sneaker = sneakers.first\n            DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {\n                withAnimation(.easeInOut(duration: 0.2)) {\n                    isShowItems = true\n                }\n            }\n        }\n        .overlay(alignment: .topTrailing) {\n            Button(action: {\n                dismiss()\n            }) {\n                Image(systemName: \"xmark.circle.fill\")\n                    .font(.largeTitle)\n                    .foregroundStyle(.white)\n                    .background {\n                        Circle()\n                            .foregroundColor(.black.opacity(0.4))\n                            .padding(4)\n                    }\n            }\n            .buttonStyle(.plain)\n            .padding(.horizontal, 20)\n        }\n        .onReceive(timer) { _ in\n            carouselPublisher.send(.right)\n        }\n    }\n}\n"
  },
  {
    "path": "Demo/Demo/Demos/ShuffleDeck/Scenes/ShuffleDeckDemoView.swift",
    "content": "import SwiftUI\nimport Combine\nimport ShuffleIt\nimport MapKit\n\nstruct ShuffleDeckDemoView: View {\n    @Environment(\\.dismiss) var dismiss\n    @State private var landmark: Landmark?\n\n    let landmarks: [Landmark] = .landmarks()\n    \n    var body: some View {\n        VStack(alignment: .leading, spacing: 0) {\n            VStack(alignment: .leading) {\n                Text(\"Captivating Landmarks\")\n                    .font(.title.bold())\n                Text(\"For Your Next Adventure\")\n                    .font(.title2.bold())\n            }\n            .padding()\n            Spacer()\n            ShuffleDeck(\n                landmarks,\n                initialIndex: 0\n            ) { landmark in\n                LandmarkCard(landmark: landmark)\n            }\n            .shuffleDeckAnimation(.easeInOut)\n            .shuffleDeckScale(0.5)\n            .onShuffleDeck { context in\n                landmark = landmarks[context.index]\n            }\n            .padding(.vertical)\n            Spacer()\n            Spacer()\n        }\n        .overlay(alignment: .topTrailing) {\n            Button(action: {\n                dismiss()\n            }) {\n                Image(systemName: \"xmark.circle.fill\")\n                    .font(.largeTitle)\n                    .foregroundStyle(.white)\n                    .background {\n                        Circle()\n                            .foregroundColor(.black.opacity(0.4))\n                            .padding(4)\n                    }\n            }\n            .buttonStyle(.plain)\n            .padding([.top, .horizontal])\n        }\n        .background {\n            if let landmark = landmark {\n                GeometryReader { proxy in\n                    ZStack {\n                        Circle()\n                            .scale(1.1, anchor: .bottomTrailing)\n                            .position(x: proxy.size.width, y: proxy.size.height / 2.5)\n                            .foregroundColor(Color(hex: landmark.background).opacity(0.3))\n                        Circle()\n                            .scale(0.7, anchor: .bottomTrailing)\n                            .position(x: 0, y: proxy.size.height / 1.5)\n                            .foregroundColor(Color(hex: landmark.background).opacity(0.2))\n                    }\n                    .blur(radius: 40)\n                    .background(.white)\n                    .ignoresSafeArea()\n                }\n            }\n        }\n        .onAppear {\n            landmark = landmarks.first\n        }\n    }\n}\n"
  },
  {
    "path": "Demo/Demo/Demos/ShuffleStack/Scenes/ShuffleStackDemoView.swift",
    "content": "import Combine\nimport SwiftUI\nimport ShuffleIt\n\nstruct ShuffleStackDemoView: View {\n    @Environment(\\.dismiss) var dismiss\n    @State private var sneaker: Sneaker?\n    @State private var isShowItems: Bool = false\n    let shufflePublisher = PassthroughSubject<ShuffleDirection, Never>()\n    @Environment(\\.horizontalSizeClass) var horizontalSizeClass\n    let columns: [GridItem] = .init(repeating: GridItem(.flexible(), spacing: 20, alignment: .leading), count: 2)\n    let sneakers: [Sneaker] = .sneakers()\n    \n    var body: some View {\n        VStack(alignment: .leading, spacing: 16) {\n            ShuffleStack(sneakers) { sneaker, translation in\n                SneakerCard(\n                    sneaker: sneaker,\n                    translation: abs(translation)\n                )\n            }\n            .shuffleOffset(horizontalSizeClass == .compact ? 20 : 40)\n            .shuffleScale(horizontalSizeClass == .compact ? 0.5 : 0.4)\n            .shufflePadding(20)\n            .onShuffle { context in\n                withAnimation(.easeInOut(duration: 0.2)) {\n                    isShowItems = false\n                }\n                DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {\n                    withAnimation(.easeInOut(duration: 0.2)) {\n                        sneaker = sneakers[context.index]\n                        isShowItems = true\n                    }\n                }\n            }\n            .shuffleTrigger(on: shufflePublisher)\n            .shuffleAnimation(.easeInOut)\n            .shuffleStyle(horizontalSizeClass == .compact ? .rotateIn : .slide)\n            if let sneaker = sneaker, isShowItems {\n                Text(\"Explore in \\(sneaker.title)\")\n                    .font(.title.bold())\n                    .animation(.none)\n                    .transition(AnyTransition.slide.combined(with: .opacity))\n                    .padding(.horizontal, 20)\n            }\n            if let sneaker = sneaker, isShowItems {\n                ScrollView {\n                    Group {\n                        if horizontalSizeClass == .compact {\n                            LazyVStack(alignment: .leading) {\n                                ForEach(sneaker.items) { item in\n                                    SneakerItemRow(item: item)\n                                }\n                            }\n                        } else {\n                            LazyVGrid(columns: columns) {\n                                ForEach(sneaker.items) { item in\n                                    SneakerItemRow(item: item)\n                                }\n                            }\n                        }\n                    }\n                    .padding(.horizontal, 20)\n                    .animation(.none, value: sneaker.id)\n                }\n                .clipped()\n                .transition(AnyTransition.move(edge: .bottom).combined(with: .opacity))\n                .modifier(DragGestureViewModifier(onEnd: { value in\n                    switch(value.translation.width, value.translation.height) {\n                    case (...0, -30...30):\n                        shufflePublisher.send(.right)\n                    case (0..., -30...30):\n                        shufflePublisher.send(.left)\n                    default: break\n                    }\n                }))\n                .padding(.bottom, 20)\n            } else {\n                Spacer()\n            }\n        }\n        .background {\n            if let sneaker = sneaker {\n                GeometryReader { proxy in\n                    ZStack {\n                        Circle()\n                            .scale(1.1, anchor: .bottomTrailing)\n                            .position(x: proxy.size.width, y: proxy.size.height / 2.5)\n                            .foregroundColor(Color(hex: sneaker.theme.tertiary).opacity(0.3))\n                        Circle()\n                            .scale(0.7, anchor: .bottomTrailing)\n                            .position(x: 0, y: proxy.size.height)\n                            .foregroundColor(Color(hex: sneaker.theme.primary).opacity(0.45))\n                    }\n                    .blur(radius: 40)\n                    .background(.white)\n                    .ignoresSafeArea()\n                }\n            }\n        }\n        .onAppear {\n            sneaker = sneakers.first\n            DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {\n                withAnimation(.easeInOut(duration: 0.2)) {\n                    isShowItems = true\n                }\n            }\n        }\n        .overlay(alignment: .topTrailing) {\n            Button(action: {\n                dismiss()\n            }) {\n                Image(systemName: \"xmark.circle.fill\")\n                    .font(.largeTitle)\n                    .foregroundStyle(.white)\n                    .background {\n                        Circle()\n                            .foregroundColor(.black.opacity(0.4))\n                            .padding(4)\n                    }\n            }\n            .buttonStyle(.plain)\n            .padding(.horizontal, 20)\n        }\n    }\n}\n\nstruct ShuffleStackDemoView_Previews: PreviewProvider {\n    static var previews: some View {\n        ShuffleStackDemoView()\n    }\n}\n"
  },
  {
    "path": "Demo/Demo/Demos/ShuffleStack/Scenes/TimingShuffleStackDemoView.swift",
    "content": "import Combine\nimport SwiftUI\nimport ShuffleIt\n\nstruct TimingShuffleStackDemoView: View {\n    @Environment(\\.dismiss) var dismiss\n    @State private var sneaker: Sneaker?\n    @State private var isShowItems: Bool = false\n    let shufflePublisher = PassthroughSubject<ShuffleDirection, Never>()\n    let timer = Timer.publish(every: 10, tolerance: 0.1, on: .main, in: .default).autoconnect()\n    @Environment(\\.horizontalSizeClass) var horizontalSizeClass\n    let columns: [GridItem] = .init(repeating: GridItem(.flexible(), spacing: 20, alignment: .leading), count: 2)\n    let sneakers: [Sneaker] = .sneakers()\n    \n    var body: some View {\n        VStack(alignment: .leading, spacing: 16) {\n            ShuffleStack(sneakers) { sneaker, translation in\n                SneakerCard(\n                    sneaker: sneaker,\n                    translation: abs(translation)\n                )\n            }\n            .shuffleOffset(horizontalSizeClass == .compact ? 20 : 40)\n            .shuffleScale(horizontalSizeClass == .compact ? 0.5 : 0.4)\n            .shufflePadding(20)\n            .onShuffle { context in\n                withAnimation(.easeInOut(duration: 0.2)) {\n                    isShowItems = false\n                }\n                DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {\n                    withAnimation(.easeInOut(duration: 0.2)) {\n                        sneaker = sneakers[context.index]\n                        isShowItems = true\n                    }\n                }\n            }\n            .shuffleTrigger(on: shufflePublisher)\n            .shuffleAnimation(.easeInOut)\n            .shuffleStyle(horizontalSizeClass == .compact ? .rotateIn : .slide)\n            if let sneaker = sneaker, isShowItems {\n                Text(\"Explore in \\(sneaker.title)\")\n                    .font(.title.bold())\n                    .animation(.none)\n                    .transition(AnyTransition.slide.combined(with: .opacity))\n                    .padding(.horizontal, 20)\n            }\n            if let sneaker = sneaker, isShowItems {\n                ScrollView {\n                    Group {\n                        if horizontalSizeClass == .compact {\n                            LazyVStack(alignment: .leading) {\n                                ForEach(sneaker.items) { item in\n                                    SneakerItemRow(item: item)\n                                }\n                            }\n                        } else {\n                            LazyVGrid(columns: columns) {\n                                ForEach(sneaker.items) { item in\n                                    SneakerItemRow(item: item)\n                                }\n                            }\n                        }\n                    }\n                    .padding(.horizontal, 20)\n                    .animation(.none, value: sneaker.id)\n                }\n                .transition(AnyTransition.move(edge: .bottom).combined(with: .opacity))\n                .modifier(DragGestureViewModifier(onEnd: { value in\n                    switch(value.translation.width, value.translation.height) {\n                    case (...0, -30...30):\n                        shufflePublisher.send(.right)\n                    case (0..., -30...30):\n                        shufflePublisher.send(.left)\n                    default: break\n                    }\n                }))\n                .padding(.bottom, 20)\n            } else {\n                Spacer()\n            }\n        }\n        .background {\n            if let sneaker = sneaker {\n                GeometryReader { proxy in\n                    ZStack {\n                        Circle()\n                            .scale(1.1, anchor: .bottomTrailing)\n                            .position(x: proxy.size.width, y: proxy.size.height / 2.5)\n                            .foregroundColor(Color(hex: sneaker.theme.tertiary).opacity(0.3))\n                        Circle()\n                            .scale(0.7, anchor: .bottomTrailing)\n                            .position(x: 0, y: proxy.size.height)\n                            .foregroundColor(Color(hex: sneaker.theme.primary).opacity(0.45))\n                    }\n                    .blur(radius: 40)\n                    .background(.white)\n                    .ignoresSafeArea()\n                }\n            }\n        }\n        .onAppear {\n            sneaker = sneakers.first\n            DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {\n                withAnimation(.easeInOut(duration: 0.2)) {\n                    isShowItems = true\n                }\n            }\n        }\n        .overlay(alignment: .topTrailing) {\n            Button(action: {\n                dismiss()\n            }) {\n                Image(systemName: \"xmark.circle.fill\")\n                    .font(.largeTitle)\n                    .foregroundStyle(.white)\n                    .background {\n                        Circle()\n                            .foregroundColor(.black.opacity(0.4))\n                            .padding(4)\n                    }\n            }\n            .buttonStyle(.plain)\n            .padding(.horizontal, 20)\n        }\n        .onReceive(timer) { _ in\n            shufflePublisher.send(.right)\n        }\n    }\n}\n\nstruct TimingShuffleStackDemoView_Previews: PreviewProvider {\n    static var previews: some View {\n        TimingShuffleStackDemoView()\n    }\n}\n"
  },
  {
    "path": "Demo/Demo/Extensions/Color+Extension.swift",
    "content": "import SwiftUI\n\n#if os(macOS)\ntypealias _Color = NSColor\n#else\ntypealias _Color = UIColor\n#endif\n\nextension Color {\n    public init(hex: String) {\n        self.init(_Color(hex: hex) ?? _Color())\n   }\n}\n\nextension _Color {\n    public convenience init?(hex: String) {\n        let r, g, b, a: CGFloat\n\n        if hex.hasPrefix(\"#\") {\n            let start = hex.index(hex.startIndex, offsetBy: 1)\n            let hexColor = String(hex[start...])\n\n            if hexColor.count == 8 {\n                let scanner = Scanner(string: hexColor)\n                var hexNumber: UInt64 = 0\n\n                if scanner.scanHexInt64(&hexNumber) {\n                    r = CGFloat((hexNumber & 0xff000000) >> 24) / 255\n                    g = CGFloat((hexNumber & 0x00ff0000) >> 16) / 255\n                    b = CGFloat((hexNumber & 0x0000ff00) >> 8) / 255\n                    a = CGFloat(hexNumber & 0x000000ff) / 255\n\n                    self.init(red: r, green: g, blue: b, alpha: a)\n                    return\n                }\n            }\n        }\n\n        return nil\n    }\n}\n"
  },
  {
    "path": "Demo/Demo/Models/Landmark.swift",
    "content": "import MapKit\nimport Foundation\n\nstruct Landmark: Decodable, Identifiable {\n    let id: String\n    let image: String\n    let name: String\n    let location: String\n    let lat: Double\n    let long: Double\n    let background: String\n\n    var coordinate: CLLocationCoordinate2D {\n        CLLocationCoordinate2D(latitude: lat, longitude: long)\n    }\n}\n\nextension Array where Element == Landmark {\n    static func landmarks() -> Self {\n        guard let path = Bundle.main.url(forResource: \"Landmarks\", withExtension: \"json\"), let data = try? Data(contentsOf: path), let landmarks = try? JSONDecoder().decode([Landmark].self, from: data) else { return [] }\n        return landmarks\n    }\n}\n"
  },
  {
    "path": "Demo/Demo/Models/Sneaker.swift",
    "content": "import Foundation\n\nstruct Sneaker: Decodable {\n    let id: String\n    let title: String\n    let slogan: String\n    let imageName: String\n    let theme: SneakerTheme\n    let items: [SneakerItem]\n}\n\nstruct SneakerTheme: Decodable {\n    let primary: String\n    let secondary: String\n    let tertiary: String\n    let background: String\n    let foreground: String\n}\n\nstruct SneakerItem: Decodable, Identifiable {\n    let id: String\n    let imageName: String\n    let title: String\n    let type: String\n    let colorVariants: String\n    let price: String\n}\n\nextension Array where Element == Sneaker {\n    static func sneakers() -> [Sneaker] {\n        guard let path = Bundle.main.url(forResource: \"Sneakers\", withExtension: \"json\"), let data = try? Data(contentsOf: path), let sneakers = try? JSONDecoder().decode([Sneaker].self, from: data) else { return [] }\n        return sneakers\n    }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/AccentColor.colorset/Contents.json",
    "content": "{\n  \"colors\" : [\n    {\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"40.png\",\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"2x\",\n      \"size\" : \"20x20\"\n    },\n    {\n      \"filename\" : \"60.png\",\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\",\n      \"size\" : \"20x20\"\n    },\n    {\n      \"filename\" : \"29.png\",\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"1x\",\n      \"size\" : \"29x29\"\n    },\n    {\n      \"filename\" : \"58.png\",\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"2x\",\n      \"size\" : \"29x29\"\n    },\n    {\n      \"filename\" : \"87.png\",\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\",\n      \"size\" : \"29x29\"\n    },\n    {\n      \"filename\" : \"80.png\",\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"2x\",\n      \"size\" : \"40x40\"\n    },\n    {\n      \"filename\" : \"120.png\",\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\",\n      \"size\" : \"40x40\"\n    },\n    {\n      \"filename\" : \"57.png\",\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"1x\",\n      \"size\" : \"57x57\"\n    },\n    {\n      \"filename\" : \"114.png\",\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"2x\",\n      \"size\" : \"57x57\"\n    },\n    {\n      \"filename\" : \"120.png\",\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"2x\",\n      \"size\" : \"60x60\"\n    },\n    {\n      \"filename\" : \"180.png\",\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\",\n      \"size\" : \"60x60\"\n    },\n    {\n      \"filename\" : \"20.png\",\n      \"idiom\" : \"ipad\",\n      \"scale\" : \"1x\",\n      \"size\" : \"20x20\"\n    },\n    {\n      \"filename\" : \"40.png\",\n      \"idiom\" : \"ipad\",\n      \"scale\" : \"2x\",\n      \"size\" : \"20x20\"\n    },\n    {\n      \"filename\" : \"29.png\",\n      \"idiom\" : \"ipad\",\n      \"scale\" : \"1x\",\n      \"size\" : \"29x29\"\n    },\n    {\n      \"filename\" : \"58.png\",\n      \"idiom\" : \"ipad\",\n      \"scale\" : \"2x\",\n      \"size\" : \"29x29\"\n    },\n    {\n      \"filename\" : \"40.png\",\n      \"idiom\" : \"ipad\",\n      \"scale\" : \"1x\",\n      \"size\" : \"40x40\"\n    },\n    {\n      \"filename\" : \"80.png\",\n      \"idiom\" : \"ipad\",\n      \"scale\" : \"2x\",\n      \"size\" : \"40x40\"\n    },\n    {\n      \"filename\" : \"50.png\",\n      \"idiom\" : \"ipad\",\n      \"scale\" : \"1x\",\n      \"size\" : \"50x50\"\n    },\n    {\n      \"filename\" : \"100.png\",\n      \"idiom\" : \"ipad\",\n      \"scale\" : \"2x\",\n      \"size\" : \"50x50\"\n    },\n    {\n      \"filename\" : \"72.png\",\n      \"idiom\" : \"ipad\",\n      \"scale\" : \"1x\",\n      \"size\" : \"72x72\"\n    },\n    {\n      \"filename\" : \"144.png\",\n      \"idiom\" : \"ipad\",\n      \"scale\" : \"2x\",\n      \"size\" : \"72x72\"\n    },\n    {\n      \"filename\" : \"76.png\",\n      \"idiom\" : \"ipad\",\n      \"scale\" : \"1x\",\n      \"size\" : \"76x76\"\n    },\n    {\n      \"filename\" : \"152.png\",\n      \"idiom\" : \"ipad\",\n      \"scale\" : \"2x\",\n      \"size\" : \"76x76\"\n    },\n    {\n      \"filename\" : \"167.png\",\n      \"idiom\" : \"ipad\",\n      \"scale\" : \"2x\",\n      \"size\" : \"83.5x83.5\"\n    },\n    {\n      \"filename\" : \"1024.png\",\n      \"idiom\" : \"ios-marketing\",\n      \"scale\" : \"1x\",\n      \"size\" : \"1024x1024\"\n    },\n    {\n      \"filename\" : \"16.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"1x\",\n      \"size\" : \"16x16\"\n    },\n    {\n      \"filename\" : \"32.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"2x\",\n      \"size\" : \"16x16\"\n    },\n    {\n      \"filename\" : \"32.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"1x\",\n      \"size\" : \"32x32\"\n    },\n    {\n      \"filename\" : \"64.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"2x\",\n      \"size\" : \"32x32\"\n    },\n    {\n      \"filename\" : \"128.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"1x\",\n      \"size\" : \"128x128\"\n    },\n    {\n      \"filename\" : \"256.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"2x\",\n      \"size\" : \"128x128\"\n    },\n    {\n      \"filename\" : \"256.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"1x\",\n      \"size\" : \"256x256\"\n    },\n    {\n      \"filename\" : \"512.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"2x\",\n      \"size\" : \"256x256\"\n    },\n    {\n      \"filename\" : \"512.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"1x\",\n      \"size\" : \"512x512\"\n    },\n    {\n      \"filename\" : \"1024.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"2x\",\n      \"size\" : \"512x512\"\n    },\n    {\n      \"filename\" : \"48.png\",\n      \"idiom\" : \"watch\",\n      \"role\" : \"notificationCenter\",\n      \"scale\" : \"2x\",\n      \"size\" : \"24x24\",\n      \"subtype\" : \"38mm\"\n    },\n    {\n      \"filename\" : \"55.png\",\n      \"idiom\" : \"watch\",\n      \"role\" : \"notificationCenter\",\n      \"scale\" : \"2x\",\n      \"size\" : \"27.5x27.5\",\n      \"subtype\" : \"42mm\"\n    },\n    {\n      \"filename\" : \"58.png\",\n      \"idiom\" : \"watch\",\n      \"role\" : \"companionSettings\",\n      \"scale\" : \"2x\",\n      \"size\" : \"29x29\"\n    },\n    {\n      \"filename\" : \"87.png\",\n      \"idiom\" : \"watch\",\n      \"role\" : \"companionSettings\",\n      \"scale\" : \"3x\",\n      \"size\" : \"29x29\"\n    },\n    {\n      \"idiom\" : \"watch\",\n      \"role\" : \"notificationCenter\",\n      \"scale\" : \"2x\",\n      \"size\" : \"33x33\",\n      \"subtype\" : \"45mm\"\n    },\n    {\n      \"filename\" : \"80.png\",\n      \"idiom\" : \"watch\",\n      \"role\" : \"appLauncher\",\n      \"scale\" : \"2x\",\n      \"size\" : \"40x40\",\n      \"subtype\" : \"38mm\"\n    },\n    {\n      \"filename\" : \"88.png\",\n      \"idiom\" : \"watch\",\n      \"role\" : \"appLauncher\",\n      \"scale\" : \"2x\",\n      \"size\" : \"44x44\",\n      \"subtype\" : \"40mm\"\n    },\n    {\n      \"idiom\" : \"watch\",\n      \"role\" : \"appLauncher\",\n      \"scale\" : \"2x\",\n      \"size\" : \"46x46\",\n      \"subtype\" : \"41mm\"\n    },\n    {\n      \"filename\" : \"100.png\",\n      \"idiom\" : \"watch\",\n      \"role\" : \"appLauncher\",\n      \"scale\" : \"2x\",\n      \"size\" : \"50x50\",\n      \"subtype\" : \"44mm\"\n    },\n    {\n      \"idiom\" : \"watch\",\n      \"role\" : \"appLauncher\",\n      \"scale\" : \"2x\",\n      \"size\" : \"51x51\",\n      \"subtype\" : \"45mm\"\n    },\n    {\n      \"idiom\" : \"watch\",\n      \"role\" : \"appLauncher\",\n      \"scale\" : \"2x\",\n      \"size\" : \"54x54\",\n      \"subtype\" : \"49mm\"\n    },\n    {\n      \"filename\" : \"172.png\",\n      \"idiom\" : \"watch\",\n      \"role\" : \"quickLook\",\n      \"scale\" : \"2x\",\n      \"size\" : \"86x86\",\n      \"subtype\" : \"38mm\"\n    },\n    {\n      \"filename\" : \"196.png\",\n      \"idiom\" : \"watch\",\n      \"role\" : \"quickLook\",\n      \"scale\" : \"2x\",\n      \"size\" : \"98x98\",\n      \"subtype\" : \"42mm\"\n    },\n    {\n      \"filename\" : \"216.png\",\n      \"idiom\" : \"watch\",\n      \"role\" : \"quickLook\",\n      \"scale\" : \"2x\",\n      \"size\" : \"108x108\",\n      \"subtype\" : \"44mm\"\n    },\n    {\n      \"idiom\" : \"watch\",\n      \"role\" : \"quickLook\",\n      \"scale\" : \"2x\",\n      \"size\" : \"117x117\",\n      \"subtype\" : \"45mm\"\n    },\n    {\n      \"idiom\" : \"watch\",\n      \"role\" : \"quickLook\",\n      \"scale\" : \"2x\",\n      \"size\" : \"129x129\",\n      \"subtype\" : \"49mm\"\n    },\n    {\n      \"filename\" : \"1024.png\",\n      \"idiom\" : \"watch-marketing\",\n      \"scale\" : \"1x\",\n      \"size\" : \"1024x1024\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/landmarks/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/landmarks/christ_the_redeemer.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"christ_the_redeemer.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  },\n  \"properties\" : {\n    \"template-rendering-intent\" : \"original\"\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/landmarks/eiffel_tower.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"eiffel_tower.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  },\n  \"properties\" : {\n    \"template-rendering-intent\" : \"original\"\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/landmarks/great_wall_of_china.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"great_wall_of_china.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  },\n  \"properties\" : {\n    \"template-rendering-intent\" : \"original\"\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/landmarks/merlion_statue.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"merlion_statue.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  },\n  \"properties\" : {\n    \"template-rendering-intent\" : \"original\"\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/landmarks/niagara_falls.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"niagara_falls.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  },\n  \"properties\" : {\n    \"template-rendering-intent\" : \"original\"\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/landmarks/petronas_towers.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"petronas_towers.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  },\n  \"properties\" : {\n    \"template-rendering-intent\" : \"original\"\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/landmarks/shwedagon_pagoda.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"shwedagon_pagoda.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  },\n  \"properties\" : {\n    \"template-rendering-intent\" : \"original\"\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/landmarks/sphinx_statue.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"sphinx.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  },\n  \"properties\" : {\n    \"template-rendering-intent\" : \"original\"\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/landmarks/statue_of_liberty.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"statue_of_liberty.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  },\n  \"properties\" : {\n    \"template-rendering-intent\" : \"original\"\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/shuffle-it-logo.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"swift-theming-logo-with-text 1.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"filename\" : \"swift-theming-logo-with-text 1@2x.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"filename\" : \"swift-theming-logo-with-text 1@3x.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-force-1-mid.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"air-force-1-mid.png\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-forces/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-forces/air-force1.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"air-force1.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-forces/air-force2.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"air-force2.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-forces/air-force3.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"air-force3.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-forces/air-force4.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"air-force4.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-forces/air-force5.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"air-force5.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-jordan-1.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"air-jordan-1.png\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-jordans/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-jordans/air-jordan1.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"air-jorden1.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-jordans/air-jordan2.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"air-jorden2.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-jordans/air-jordan3.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"air-jorden3.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-trainer-sc-high.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"air-trainer-sc-high.png\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-trainers/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-trainers/air-trainer1.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"air-trainer1.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/air-trainers/air-trainer2.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"air-trainer2.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/dunk-high-retro-premium.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"dunk-high-retro-premium.png\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/dunk-high-vintage.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"dunk-high-vintage.png\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/kyrie-infinity.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"kyrie-infinity.png\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/kyrie-infiniy/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/kyrie-infiniy/kyrie-infinity1.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"kyrie-infinity1.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/kyrie-infiniy/kyrie-infinity2.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"kyrie-infinity2.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/nike-air-presto.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"nike-air-presto.png\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/prestos/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/prestos/presto1.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"presto1.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/prestos/presto2.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"presto2.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/retros/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/retros/retro1.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"retro1.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/retros/retro2.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"retro2.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/vintages/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/vintages/vintage1.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"vintage1.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/vintages/vintage2.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"vintage2.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/vintages/vintage3.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"vintage3.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Assets.xcassets/sneakers/vintages/vintage4.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"retro2.svg\",\n      \"idiom\" : \"universal\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Demo/Demo/Resources/Json/Landmarks.json",
    "content": "[\n    {\n        \"id\": \"christ_the_redeemer\",\n        \"image\": \"christ_the_redeemer\",\n        \"name\": \"Christ the Redeemer\",\n        \"location\": \"Rio de Janeiro, Brazil\",\n        \"lat\": -22.9519,\n        \"long\": -43.2105,\n        \"background\": \"#FFBF85FF\"\n    },\n    {\n        \"id\": \"eiffel_tower\",\n        \"image\": \"eiffel_tower\",\n        \"name\": \"Eiffel Tower\",\n        \"location\": \"Paris, France\",\n        \"lat\": 48.8584,\n        \"long\": 2.2945,\n        \"background\": \"#FFA490FF\"\n    },\n    {\n        \"id\": \"great_wall_of_china\",\n        \"image\": \"great_wall_of_china\",\n        \"name\": \"Great Wall of China\",\n        \"location\": \"Huairou, China\",\n        \"lat\": 40.4319,\n        \"long\": 116.5704,\n        \"background\": \"#FFDC62FF\"\n    },\n    {\n        \"id\": \"merlion_statue\",\n        \"image\": \"merlion_statue\",\n        \"name\": \"Merlion Statue\",\n        \"location\": \"Singapore, Singapore\",\n        \"lat\": 1.2868,\n        \"long\": 103.8545,\n        \"background\": \"#7451FFFF\"\n    },\n    {\n        \"id\": \"niagara_falls\",\n        \"image\": \"niagara_falls\",\n        \"name\": \"Niagara Falls\",\n        \"location\": \"Ontario, Canada\",\n        \"lat\": 43.0962,\n        \"long\": -79.0377,\n        \"background\": \"#FF4D00FF\"\n    },\n    {\n        \"id\": \"petronas_towers\",\n        \"image\": \"petronas_towers\",\n        \"name\": \"Petronas Towers\",\n        \"location\": \"Kuala Lumpur, Malaysia\",\n        \"lat\": 3.1575,\n        \"long\": 101.7116,\n        \"background\": \"#FF4B4BFF\"\n    },\n    {\n        \"id\": \"shwedagon_pagoda\",\n        \"image\": \"shwedagon_pagoda\",\n        \"name\": \"Shwedagon Pagoda\",\n        \"location\": \"Yangon, Myanmar\",\n        \"lat\": 16.7985,\n        \"long\": 96.1497,\n        \"background\": \"#2B10CFFF\"\n    },\n    {\n        \"id\": \"sphinx_statue\",\n        \"image\": \"sphinx_statue\",\n        \"name\": \"Great Sphinx of Giza\",\n        \"location\": \"Giza, Egypt\",\n        \"lat\": 29.9753,\n        \"long\": 31.1376,\n        \"background\": \"#993700FF\"\n    },\n    {\n        \"id\": \"statue_of_liberty\",\n        \"image\": \"statue_of_liberty\",\n        \"name\": \"Statue of Liberty\",\n        \"location\": \"New York, US\",\n        \"lat\": 40.6892,\n        \"long\": -74.0445,\n        \"background\": \"#7A320AFF\"\n    }\n]"
  },
  {
    "path": "Demo/Demo/Resources/Json/Sneakers.json",
    "content": "[\n    {\n        \"id\": \"air-force-1-mid\",\n        \"title\": \"Air Force\",\n        \"slogan\": \"To Air force, or not to the Air force.\",\n        \"imageName\": \"air-force-1-mid\",\n        \"theme\": {\n            \"primary\": \"#FFBF85FF\",\n            \"secondary\": \"#FFA490FF\",\n            \"tertiary\": \"#FF7A00FF\",\n            \"background\": \"#FFCFA3FF\",\n            \"foreground\": \"#343434FF\"\n        },\n        \"items\": [\n            {\n                \"imageName\": \"air-force1\",\n                \"id\": \"air-force1\",\n                \"title\": \"Nike Air Force 1 Mid Premium\",\n                \"type\": \"Men's Shoes\",\n                \"colorVariants\": \"1 Color\",\n                \"price\": \"$140\"\n            },\n            {\n                \"imageName\": \"air-force2\",\n                \"id\": \"air-force2\",\n                \"title\": \"Nike Air Force 1 Mid '07 QS\",\n                \"type\": \"Men's Shoes\",\n                \"colorVariants\": \"2 Colors\",\n                \"price\": \"$150\"\n            },\n            {\n                \"imageName\": \"air-force3\",\n                \"id\": \"air-force3\",\n                \"title\": \"Nike Air Force 1 '07 Mid\",\n                \"type\": \"Women's Shoes\",\n                \"colorVariants\": \"1 Color\",\n                \"price\": \"$110\"\n            },\n            {\n                \"imageName\": \"air-force4\",\n                \"id\": \"air-force4\",\n                \"title\": \"Nike Air Force 1 Mid '07 LV8 Next Nature\",\n                \"type\": \"Men's Shoes\",\n                \"colorVariants\": \"1 Color\",\n                \"price\": \"$130\"\n            },\n            {\n                \"imageName\": \"air-force5\",\n                \"id\": \"air-force5\",\n                \"title\": \"Nike Force 1 Mid LE\",\n                \"type\": \"Toddler Shoes\",\n                \"colorVariants\": \"2 Colors\",\n                \"price\": \"$60\"\n            }\n        ]\n    },\n    {\n        \"id\": \"air-jordan-1\",\n        \"title\": \"Air Jordan\",\n        \"slogan\": \"The science of MJ is in the sole.\",\n        \"imageName\": \"air-jordan-1\",\n        \"theme\": {\n            \"primary\": \"#7451FFFF\",\n            \"secondary\": \"#6D8DFFFF\",\n            \"tertiary\": \"#BD00FFFF\",\n            \"background\": \"#8C56FFFF\",\n            \"foreground\": \"#FFFFFFFF\"\n        },\n        \"items\": [\n            {\n                \"imageName\": \"air-jordan1\",\n                \"id\": \"air-jordan1\",\n                \"title\": \"Air Jordan 1 Low\",\n                \"type\": \"Men's Shoes\",\n                \"colorVariants\": \"1 Color\",\n                \"price\": \"$110\"\n            },\n            {\n                \"imageName\": \"air-jordan2\",\n                \"id\": \"air-jordan2\",\n                \"title\": \"Air Jordan 1 Low Flyease\",\n                \"type\": \"Big Kids' Shoes\",\n                \"colorVariants\": \"1 Color\",\n                \"price\": \"$90\"\n            },\n            {\n                \"imageName\": \"air-jordan3\",\n                \"id\": \"air-jordan3\",\n                \"title\": \"Air Jordan 1 Utility Q\",\n                \"type\": \"Men's Shoes\",\n                \"colorVariants\": \"1 Color\",\n                \"price\": \"$190\"\n            }\n        ]\n    },\n    {\n        \"id\": \"air-trainer-sc-high\",\n        \"title\": \"Air Trainer\",\n        \"slogan\": \"Run the day. Don’t let it run you.\",\n        \"imageName\": \"air-trainer-sc-high\",\n        \"theme\": {\n            \"primary\": \"#FF4D00FF\",\n            \"secondary\": \"#FFDC62FF\",\n            \"tertiary\": \"#FF1010FF\",\n            \"background\": \"#FF7575FF\",\n            \"foreground\": \"#323232FF\"\n        },\n        \"items\": [\n            {\n                \"imageName\": \"air-trainer1\",\n                \"id\": \"air-trainer1\",\n                \"title\": \"Nike Air Trainer SC High\",\n                \"type\": \"Men's Shoes\",\n                \"colorVariants\": \"1 Color\",\n                \"price\": \"$140\"\n            },\n            {\n                \"imageName\": \"air-trainer2\",\n                \"id\": \"air-trainer2\",\n                \"title\": \"Nike Air Trainer 1 SP\",\n                \"type\": \"Men's Shoes\",\n                \"colorVariants\": \"2 Colors\",\n                \"price\": \"$150\"\n            }\n        ]\n    },\n    {\n        \"id\": \"dunk-high-retro-premium\",\n        \"title\": \"Dunk High Retro\",\n        \"slogan\": \"Who said man was not meant to fly.\",\n        \"imageName\": \"dunk-high-retro-premium\",\n        \"theme\": {\n            \"primary\": \"#001DB7FF\",\n            \"secondary\": \"#2B10CFFF\",\n            \"tertiary\": \"#4400D6FF\",\n            \"background\": \"#0400CBFF\",\n            \"foreground\": \"#FFFFFFFF\"\n        },\n        \"items\": [\n            {\n                \"imageName\": \"retro1\",\n                \"id\": \"retro1\",\n                \"title\": \"Nike Dunk High Retro Premium EMB\",\n                \"type\": \"Men's Shoes\",\n                \"colorVariants\": \"1 Color\",\n                \"price\": \"$135\"\n            },\n            {\n                \"imageName\": \"retro2\",\n                \"id\": \"retro2\",\n                \"title\": \"Nike Dunk High Retro Premium\",\n                \"type\": \"Men's Shoes\",\n                \"colorVariants\": \"1 Color\",\n                \"price\": \"$135\"\n            }\n        ]\n    },\n    {\n        \"id\": \"dunk-high-vintage\",\n        \"title\": \"Dunk High Vintage\",\n        \"slogan\": \"Be legendary.\",\n        \"imageName\": \"dunk-high-vintage\",\n        \"theme\": {\n            \"primary\": \"#7A320AFF\",\n            \"secondary\": \"#993700FF\",\n            \"tertiary\": \"#624600FF\",\n            \"background\": \"#451D00FF\",\n            \"foreground\": \"#FFFFFFFF\"\n        },\n        \"items\": [\n            {\n                \"imageName\": \"vintage1\",\n                \"id\": \"vintage1\",\n                \"title\": \"Nike Dunk High\",\n                \"type\": \"Big Kids' Shoes\",\n                \"colorVariants\": \"2 Colors\",\n                \"price\": \"$105\"\n            },\n            {\n                \"imageName\": \"vintage2\",\n                \"id\": \"vintage2\",\n                \"title\": \"Nike Dunk High 85\",\n                \"type\": \"Men's Shoes\",\n                \"colorVariants\": \"1 Color\",\n                \"price\": \"$140\"\n            },\n            {\n                \"imageName\": \"vintage3\",\n                \"id\": \"vintage3\",\n                \"title\": \"Nike Dunk High 1985\",\n                \"type\": \"Women's Shoes\",\n                \"colorVariants\": \"1 Color\",\n                \"price\": \"$140\"\n            },\n            {\n                \"imageName\": \"vintage4\",\n                \"id\": \"vintage4\",\n                \"title\": \"Nike Dunk High Retro Premium\",\n                \"type\": \"Men's Shoes\",\n                \"colorVariants\": \"1 Color\",\n                \"price\": \"$135\"\n            }\n        ]\n    },\n    {\n        \"id\": \"kyrie-infinity\",\n        \"title\": \"Kyrie Infinity\",\n        \"slogan\": \"The best to play the game.\",\n        \"imageName\": \"kyrie-infinity\",\n        \"theme\": {\n            \"primary\": \"#FF12A0FF\",\n            \"secondary\": \"#FF4B4BFF\",\n            \"tertiary\": \"#E8FF5CFF\",\n            \"background\": \"#FFA3A3FF\",\n            \"foreground\": \"#282828FF\"\n        },\n        \"items\": [\n            {\n                \"imageName\": \"kyrie-infinity1\",\n                \"id\": \"kyrie-infinity1\",\n                \"title\": \"Kyrie Infinity\",\n                \"type\": \"Basketball Shoes\",\n                \"colorVariants\": \"17 Colors\",\n                \"price\": \"$140\"\n            },\n            {\n                \"imageName\": \"kyrie-infinity2\",\n                \"id\": \"kyrie-infinity2\",\n                \"title\": \"Kyrie Infinity (Team)\",\n                \"type\": \"Basketball Shoes\",\n                \"colorVariants\": \"6 Colors\",\n                \"price\": \"$140\"\n            }\n        ]\n    },\n    {\n        \"id\": \"nike-air-presto\",\n        \"title\": \"Air Presto\",\n        \"slogan\": \"Where do you stand.\",\n        \"imageName\": \"nike-air-presto\",\n        \"theme\": {\n            \"primary\": \"#00B2FFFF\",\n            \"secondary\": \"#86CCFFFF\",\n            \"tertiary\": \"#35FFB6FF\",\n            \"background\": \"#71FFF6FF\",\n            \"foreground\": \"#000000FF\"\n        },\n        \"items\": [\n            {\n                \"imageName\": \"presto1\",\n                \"id\": \"presto1\",\n                \"title\": \"Nike Air Presto Mid Utility\",\n                \"type\": \"Men's Shoes\",\n                \"colorVariants\": \"4 Colors\",\n                \"price\": \"$150\"\n            },\n            {\n                \"imageName\": \"presto2\",\n                \"id\": \"presto2\",\n                \"title\": \"Nike Air Presto\",\n                \"type\": \"Women's Shoes\",\n                \"colorVariants\": \"1 Colors\",\n                \"price\": \"$130\"\n            }\n        ]\n    }\n]\n\n"
  },
  {
    "path": "Demo/Demo/Resources/Launch Screen.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"20037\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\" useSafeAreas=\"YES\" colorMatched=\"YES\" initialViewController=\"01J-lp-oVM\">\n    <device id=\"retina6_1\" orientation=\"portrait\" appearance=\"light\"/>\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"20020\"/>\n        <capability name=\"Safe area layout guides\" minToolsVersion=\"9.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--View Controller-->\n        <scene sceneID=\"EHf-IW-A2E\">\n            <objects>\n                <viewController id=\"01J-lp-oVM\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"Ze5-6b-2t3\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"414\" height=\"896\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <imageView clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"scaleAspectFit\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" image=\"shuffle-it-logo\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"yEG-cm-jdP\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"353\" width=\"414\" height=\"200\"/>\n                                <constraints>\n                                    <constraint firstAttribute=\"height\" constant=\"200\" id=\"oNN-Dc-FmQ\"/>\n                                </constraints>\n                            </imageView>\n                        </subviews>\n                        <viewLayoutGuide key=\"safeArea\" id=\"Bcu-3y-fUS\"/>\n                        <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                        <constraints>\n                            <constraint firstItem=\"Bcu-3y-fUS\" firstAttribute=\"trailing\" secondItem=\"yEG-cm-jdP\" secondAttribute=\"trailing\" id=\"73I-eP-vKx\"/>\n                            <constraint firstItem=\"yEG-cm-jdP\" firstAttribute=\"leading\" secondItem=\"Bcu-3y-fUS\" secondAttribute=\"leading\" id=\"WOS-Gc-UZu\"/>\n                            <constraint firstItem=\"yEG-cm-jdP\" firstAttribute=\"centerY\" secondItem=\"Bcu-3y-fUS\" secondAttribute=\"centerY\" id=\"jIV-Hd-Inp\"/>\n                        </constraints>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"iYj-Kq-Ea1\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"52.173913043478265\" y=\"375\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"shuffle-it-logo\" width=\"400\" height=\"253\"/>\n    </resources>\n</document>\n"
  },
  {
    "path": "Demo/Demo/ViewModifier/DragGestureViewModifier.swift",
    "content": "import SwiftUI\n\n// MARK: - https://developer.apple.com/forums/thread/123034\nstruct DragGestureViewModifier: ViewModifier {\n    @GestureState private var isDragging: Bool = false\n    @State var gestureState: GestureStatus = .idle\n\n    var onStart: (() -> Void)?\n    var onUpdate: ((DragGesture.Value) -> Void)?\n    var onEnd: ((DragGesture.Value) -> Void)?\n    var onCancel: (() -> Void)?\n\n    func body(content: Content) -> some View {\n        content\n            .gesture(\n                DragGesture()\n                    .updating($isDragging) { _, isDragging, _ in\n                        isDragging = true\n                    }\n                    .onChanged(onDragChange(_:))\n                    .onEnded(onDragEnded(_:))\n            )\n            .onChange(of: gestureState) { state in\n                guard state == .started else { return }\n                gestureState = .active\n            }\n            .onChange(of: isDragging) { value in\n                if value, gestureState != .started {\n                    gestureState = .started\n                    onStart?()\n                } else if !value, gestureState != .ended {\n                    gestureState = .cancelled\n                    onCancel?()\n                }\n            }\n    }\n\n    func onDragChange(_ value: DragGesture.Value) {\n        guard gestureState == .started || gestureState == .active else { return }\n        onUpdate?(value)\n    }\n\n    func onDragEnded(_ value: DragGesture.Value) {\n        gestureState = .ended\n        onEnd?(value)\n    }\n\n    enum GestureStatus: Equatable {\n        case idle\n        case started\n        case active\n        case ended\n        case cancelled\n    }\n}\n"
  },
  {
    "path": "Demo/Demo.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 55;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\tEC1D2D6328C366F80000668C /* ShuffleStackDemoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC1D2D6228C366F80000668C /* ShuffleStackDemoView.swift */; };\n\t\tEC1D2D6B28C37D280000668C /* Sneakers.json in Resources */ = {isa = PBXBuildFile; fileRef = EC1D2D6A28C37D280000668C /* Sneakers.json */; };\n\t\tEC1D2D6E28C382EF0000668C /* Color+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC1D2D6D28C382EF0000668C /* Color+Extension.swift */; };\n\t\tEC1D2D7128C3882D0000668C /* Sneaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC1D2D7028C3882D0000668C /* Sneaker.swift */; };\n\t\tEC1D2D7628C3A6EF0000668C /* SneakerItemRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC1D2D7528C3A6EF0000668C /* SneakerItemRow.swift */; };\n\t\tEC1D2D7D28C3C8B50000668C /* DragGestureViewModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC1D2D7C28C3C8B50000668C /* DragGestureViewModifier.swift */; };\n\t\tEC467D8028D6CCC700291DFD /* CarouselStackDemoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC467D7F28D6CCC700291DFD /* CarouselStackDemoView.swift */; };\n\t\tEC467D8228D6CF4800291DFD /* SneakerCard.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC467D8128D6CF4800291DFD /* SneakerCard.swift */; };\n\t\tEC64DECA28C4EB4000C317A3 /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EC64DEC928C4EB4000C317A3 /* Launch Screen.storyboard */; };\n\t\tEC67A95D28BE69F800BDAB83 /* DemoApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC67A94D28BE69F700BDAB83 /* DemoApp.swift */; };\n\t\tEC67A96128BE69F800BDAB83 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = EC67A94F28BE69F800BDAB83 /* Assets.xcassets */; };\n\t\tEC7410B928C44DA3005EFC41 /* MainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC7410B828C44DA3005EFC41 /* MainView.swift */; };\n\t\tEC7410BD28C45605005EFC41 /* TimingShuffleStackDemoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC7410BC28C45605005EFC41 /* TimingShuffleStackDemoView.swift */; };\n\t\tEC98DC2128C8E1E7000F3DD9 /* ShuffleIt in Frameworks */ = {isa = PBXBuildFile; productRef = EC98DC2028C8E1E7000F3DD9 /* ShuffleIt */; };\n\t\tECBE0E4B294D782E002239C1 /* ShuffleDeckDemoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECBE0E4A294D782E002239C1 /* ShuffleDeckDemoView.swift */; };\n\t\tECDE4B4829584BC800FF1876 /* LandmarkCard.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECDE4B4729584BC800FF1876 /* LandmarkCard.swift */; };\n\t\tECDE4B4A295859A700FF1876 /* Landmarks.json in Resources */ = {isa = PBXBuildFile; fileRef = ECDE4B49295859A700FF1876 /* Landmarks.json */; };\n\t\tECDE4B4C295859D300FF1876 /* Landmark.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECDE4B4B295859D300FF1876 /* Landmark.swift */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXFileReference section */\n\t\tEC1D2D6228C366F80000668C /* ShuffleStackDemoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShuffleStackDemoView.swift; sourceTree = \"<group>\"; };\n\t\tEC1D2D6A28C37D280000668C /* Sneakers.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = Sneakers.json; sourceTree = \"<group>\"; };\n\t\tEC1D2D6D28C382EF0000668C /* Color+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = \"Color+Extension.swift\"; sourceTree = \"<group>\"; };\n\t\tEC1D2D7028C3882D0000668C /* Sneaker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Sneaker.swift; sourceTree = \"<group>\"; };\n\t\tEC1D2D7528C3A6EF0000668C /* SneakerItemRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SneakerItemRow.swift; sourceTree = \"<group>\"; };\n\t\tEC1D2D7C28C3C8B50000668C /* DragGestureViewModifier.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DragGestureViewModifier.swift; sourceTree = \"<group>\"; };\n\t\tEC467D7F28D6CCC700291DFD /* CarouselStackDemoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CarouselStackDemoView.swift; sourceTree = \"<group>\"; };\n\t\tEC467D8128D6CF4800291DFD /* SneakerCard.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SneakerCard.swift; sourceTree = \"<group>\"; };\n\t\tEC64DEC928C4EB4000C317A3 /* Launch Screen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = \"Launch Screen.storyboard\"; sourceTree = \"<group>\"; };\n\t\tEC67A94D28BE69F700BDAB83 /* DemoApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DemoApp.swift; sourceTree = \"<group>\"; };\n\t\tEC67A94F28BE69F800BDAB83 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = \"<group>\"; };\n\t\tEC67A95428BE69F800BDAB83 /* ShuffleIt Demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = \"ShuffleIt Demo.app\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tEC7410B828C44DA3005EFC41 /* MainView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainView.swift; sourceTree = \"<group>\"; };\n\t\tEC7410BC28C45605005EFC41 /* TimingShuffleStackDemoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TimingShuffleStackDemoView.swift; sourceTree = \"<group>\"; };\n\t\tEC98DC1F28C8E1D6000F3DD9 /* ShuffleIt */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = ShuffleIt; path = ..; sourceTree = \"<group>\"; };\n\t\tECBE0E4A294D782E002239C1 /* ShuffleDeckDemoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShuffleDeckDemoView.swift; sourceTree = \"<group>\"; };\n\t\tECDE4B4729584BC800FF1876 /* LandmarkCard.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LandmarkCard.swift; sourceTree = \"<group>\"; };\n\t\tECDE4B49295859A700FF1876 /* Landmarks.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Landmarks.json; sourceTree = \"<group>\"; };\n\t\tECDE4B4B295859D300FF1876 /* Landmark.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Landmark.swift; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\tEC67A95128BE69F800BDAB83 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tEC98DC2128C8E1E7000F3DD9 /* ShuffleIt in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\tEC1D2D5F28C366A10000668C /* ShuffleStack */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC7410BB28C455DB005EFC41 /* Scenes */,\n\t\t\t);\n\t\t\tpath = ShuffleStack;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC1D2D6028C366AB0000668C /* App */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC7410B828C44DA3005EFC41 /* MainView.swift */,\n\t\t\t\tEC67A94D28BE69F700BDAB83 /* DemoApp.swift */,\n\t\t\t);\n\t\t\tpath = App;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC1D2D6128C366C20000668C /* Resources */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC1D2D6428C367E00000668C /* Json */,\n\t\t\t\tEC67A94F28BE69F800BDAB83 /* Assets.xcassets */,\n\t\t\t\tEC64DEC928C4EB4000C317A3 /* Launch Screen.storyboard */,\n\t\t\t);\n\t\t\tpath = Resources;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC1D2D6428C367E00000668C /* Json */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tECDE4B49295859A700FF1876 /* Landmarks.json */,\n\t\t\t\tEC1D2D6A28C37D280000668C /* Sneakers.json */,\n\t\t\t);\n\t\t\tpath = Json;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC1D2D6528C368F30000668C /* Components */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC467D8128D6CF4800291DFD /* SneakerCard.swift */,\n\t\t\t\tEC1D2D7528C3A6EF0000668C /* SneakerItemRow.swift */,\n\t\t\t\tECDE4B4729584BC800FF1876 /* LandmarkCard.swift */,\n\t\t\t);\n\t\t\tpath = Components;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC1D2D6C28C382D80000668C /* Extensions */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC1D2D6D28C382EF0000668C /* Color+Extension.swift */,\n\t\t\t);\n\t\t\tpath = Extensions;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC1D2D6F28C388170000668C /* Models */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC1D2D7028C3882D0000668C /* Sneaker.swift */,\n\t\t\t\tECDE4B4B295859D300FF1876 /* Landmark.swift */,\n\t\t\t);\n\t\t\tpath = Models;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC1D2D7B28C3C8A80000668C /* ViewModifier */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC1D2D7C28C3C8B50000668C /* DragGestureViewModifier.swift */,\n\t\t\t);\n\t\t\tpath = ViewModifier;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC467D7D28D6CC5200291DFD /* CarouselStack */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC467D7E28D6CC8F00291DFD /* Scenes */,\n\t\t\t);\n\t\t\tpath = CarouselStack;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC467D7E28D6CC8F00291DFD /* Scenes */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC467D7F28D6CCC700291DFD /* CarouselStackDemoView.swift */,\n\t\t\t);\n\t\t\tpath = Scenes;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC467D8328D6CF8C00291DFD /* Demos */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tECBE0E49294D7659002239C1 /* ShuffleDeck */,\n\t\t\t\tEC467D7D28D6CC5200291DFD /* CarouselStack */,\n\t\t\t\tEC1D2D5F28C366A10000668C /* ShuffleStack */,\n\t\t\t);\n\t\t\tpath = Demos;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC67A94728BE69F700BDAB83 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC98DC1E28C8E1D6000F3DD9 /* Packages */,\n\t\t\t\tEC67A94C28BE69F700BDAB83 /* Demo */,\n\t\t\t\tEC67A95528BE69F800BDAB83 /* Products */,\n\t\t\t\tECF6A7AA28BE6C360098E2BA /* Frameworks */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC67A94C28BE69F700BDAB83 /* Demo */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC1D2D6028C366AB0000668C /* App */,\n\t\t\t\tEC1D2D6528C368F30000668C /* Components */,\n\t\t\t\tEC467D8328D6CF8C00291DFD /* Demos */,\n\t\t\t\tEC1D2D6C28C382D80000668C /* Extensions */,\n\t\t\t\tEC1D2D6F28C388170000668C /* Models */,\n\t\t\t\tEC1D2D6128C366C20000668C /* Resources */,\n\t\t\t\tEC1D2D7B28C3C8A80000668C /* ViewModifier */,\n\t\t\t);\n\t\t\tpath = Demo;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC67A95528BE69F800BDAB83 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC67A95428BE69F800BDAB83 /* ShuffleIt Demo.app */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC7410BB28C455DB005EFC41 /* Scenes */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC1D2D6228C366F80000668C /* ShuffleStackDemoView.swift */,\n\t\t\t\tEC7410BC28C45605005EFC41 /* TimingShuffleStackDemoView.swift */,\n\t\t\t);\n\t\t\tpath = Scenes;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tEC98DC1E28C8E1D6000F3DD9 /* Packages */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEC98DC1F28C8E1D6000F3DD9 /* ShuffleIt */,\n\t\t\t);\n\t\t\tname = Packages;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tECBE0E49294D7659002239C1 /* ShuffleDeck */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tECBE0E4C294D789A002239C1 /* Scenes */,\n\t\t\t);\n\t\t\tpath = ShuffleDeck;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tECBE0E4C294D789A002239C1 /* Scenes */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tECBE0E4A294D782E002239C1 /* ShuffleDeckDemoView.swift */,\n\t\t\t);\n\t\t\tpath = Scenes;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tECF6A7AA28BE6C360098E2BA /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\tEC67A95328BE69F800BDAB83 /* Demo (iOS) */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = EC67A96528BE69F800BDAB83 /* Build configuration list for PBXNativeTarget \"Demo (iOS)\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tEC67A95028BE69F800BDAB83 /* Sources */,\n\t\t\t\tEC67A95128BE69F800BDAB83 /* Frameworks */,\n\t\t\t\tEC67A95228BE69F800BDAB83 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = \"Demo (iOS)\";\n\t\t\tpackageProductDependencies = (\n\t\t\t\tEC98DC2028C8E1E7000F3DD9 /* ShuffleIt */,\n\t\t\t);\n\t\t\tproductName = \"Demo (iOS)\";\n\t\t\tproductReference = EC67A95428BE69F800BDAB83 /* ShuffleIt Demo.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\tEC67A94828BE69F700BDAB83 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tBuildIndependentTargetsInParallel = 1;\n\t\t\t\tLastSwiftUpdateCheck = 1330;\n\t\t\t\tLastUpgradeCheck = 1330;\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\tEC67A95328BE69F800BDAB83 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 13.3.1;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = EC67A94B28BE69F700BDAB83 /* Build configuration list for PBXProject \"Demo\" */;\n\t\t\tcompatibilityVersion = \"Xcode 13.0\";\n\t\t\tdevelopmentRegion = en;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = EC67A94728BE69F700BDAB83;\n\t\t\tpackageReferences = (\n\t\t\t);\n\t\t\tproductRefGroup = EC67A95528BE69F800BDAB83 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\tEC67A95328BE69F800BDAB83 /* Demo (iOS) */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\tEC67A95228BE69F800BDAB83 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tEC64DECA28C4EB4000C317A3 /* Launch Screen.storyboard in Resources */,\n\t\t\t\tEC1D2D6B28C37D280000668C /* Sneakers.json in Resources */,\n\t\t\t\tEC67A96128BE69F800BDAB83 /* Assets.xcassets in Resources */,\n\t\t\t\tECDE4B4A295859A700FF1876 /* Landmarks.json in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\tEC67A95028BE69F800BDAB83 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tECDE4B4C295859D300FF1876 /* Landmark.swift in Sources */,\n\t\t\t\tEC1D2D7128C3882D0000668C /* Sneaker.swift in Sources */,\n\t\t\t\tEC467D8228D6CF4800291DFD /* SneakerCard.swift in Sources */,\n\t\t\t\tEC7410B928C44DA3005EFC41 /* MainView.swift in Sources */,\n\t\t\t\tEC1D2D7D28C3C8B50000668C /* DragGestureViewModifier.swift in Sources */,\n\t\t\t\tEC7410BD28C45605005EFC41 /* TimingShuffleStackDemoView.swift in Sources */,\n\t\t\t\tECDE4B4829584BC800FF1876 /* LandmarkCard.swift in Sources */,\n\t\t\t\tEC467D8028D6CCC700291DFD /* CarouselStackDemoView.swift in Sources */,\n\t\t\t\tEC1D2D7628C3A6EF0000668C /* SneakerItemRow.swift in Sources */,\n\t\t\t\tEC1D2D6E28C382EF0000668C /* Color+Extension.swift in Sources */,\n\t\t\t\tECBE0E4B294D782E002239C1 /* ShuffleDeckDemoView.swift in Sources */,\n\t\t\t\tEC1D2D6328C366F80000668C /* ShuffleStackDemoView.swift in Sources */,\n\t\t\t\tEC67A95D28BE69F800BDAB83 /* DemoApp.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin XCBuildConfiguration section */\n\t\tEC67A96328BE69F800BDAB83 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++17\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tEC67A96428BE69F800BDAB83 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++17\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tSWIFT_COMPILATION_MODE = wholemodule;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-O\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tEC67A96628BE69F800BDAB83 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEVELOPMENT_TEAM = 9TYSSFKV5U;\n\t\t\t\tENABLE_PREVIEWS = YES;\n\t\t\t\tGENERATE_INFOPLIST_FILE = YES;\n\t\t\t\tINFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;\n\t\t\t\tINFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;\n\t\t\t\tINFOPLIST_KEY_UILaunchScreen_Generation = YES;\n\t\t\t\tINFOPLIST_KEY_UILaunchStoryboardName = \"Launch Screen\";\n\t\t\t\tINFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = \"UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight\";\n\t\t\t\tINFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = UIInterfaceOrientationPortrait;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 15.4;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMARKETING_VERSION = 1.0;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.ShuffleIt;\n\t\t\t\tPRODUCT_NAME = \"ShuffleIt Demo\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSWIFT_EMIT_LOC_STRINGS = YES;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tEC67A96728BE69F800BDAB83 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEVELOPMENT_TEAM = 9TYSSFKV5U;\n\t\t\t\tENABLE_PREVIEWS = YES;\n\t\t\t\tGENERATE_INFOPLIST_FILE = YES;\n\t\t\t\tINFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;\n\t\t\t\tINFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;\n\t\t\t\tINFOPLIST_KEY_UILaunchScreen_Generation = YES;\n\t\t\t\tINFOPLIST_KEY_UILaunchStoryboardName = \"Launch Screen\";\n\t\t\t\tINFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = \"UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight\";\n\t\t\t\tINFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = UIInterfaceOrientationPortrait;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 15.4;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMARKETING_VERSION = 1.0;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.example.ShuffleIt;\n\t\t\t\tPRODUCT_NAME = \"ShuffleIt Demo\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSWIFT_EMIT_LOC_STRINGS = YES;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\tEC67A94B28BE69F700BDAB83 /* Build configuration list for PBXProject \"Demo\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tEC67A96328BE69F800BDAB83 /* Debug */,\n\t\t\t\tEC67A96428BE69F800BDAB83 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tEC67A96528BE69F800BDAB83 /* Build configuration list for PBXNativeTarget \"Demo (iOS)\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tEC67A96628BE69F800BDAB83 /* Debug */,\n\t\t\t\tEC67A96728BE69F800BDAB83 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\n/* Begin XCSwiftPackageProductDependency section */\n\t\tEC98DC2028C8E1E7000F3DD9 /* ShuffleIt */ = {\n\t\t\tisa = XCSwiftPackageProductDependency;\n\t\t\tproductName = ShuffleIt;\n\t\t};\n/* End XCSwiftPackageProductDependency section */\n\t};\n\trootObject = EC67A94828BE69F700BDAB83 /* Project object */;\n}\n"
  },
  {
    "path": "Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>IDEDidComputeMac32BitWarning</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2022 Dscyre Scotti\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "Package.swift",
    "content": "// swift-tools-version: 5.6\n// The swift-tools-version declares the minimum version of Swift required to build this package.\n\nimport PackageDescription\n\nlet package = Package(\n    name: \"ShuffleIt\",\n    platforms: [\n        .iOS(.v15),\n        .macOS(.v12),\n        .tvOS(.v15),\n        .watchOS(.v8)\n    ],\n    products: [\n        .library(\n            name: \"ShuffleIt\",\n            targets: [\"ShuffleIt\"]\n        ),\n        .library(\n            name: \"ShuffleStack\",\n            targets: [\"ShuffleStack\"]\n        ),\n        .library(\n            name: \"CarouselStack\",\n            targets: [\"CarouselStack\"]\n        ),\n        .library(\n            name: \"ShuffleDeck\",\n            targets: [\"ShuffleDeck\"]\n        )\n    ],\n    dependencies: [\n        .package(url: \"https://github.com/apple/swift-docc-plugin\", from: \"1.0.0\"),\n        .package(url: \"https://github.com/nalexn/ViewInspector.git\", from: \"0.9.7\"),\n    ],\n    targets: [\n        .target(\n            name: \"ShuffleIt\",\n            dependencies: [\"Utils\"]\n        ),\n        .target(\n            name: \"ShuffleStack\",\n            dependencies: [\"Utils\"]\n        ),\n        .target(\n            name: \"CarouselStack\",\n            dependencies: [\"Utils\"]\n        ),\n        .target(\n            name: \"ShuffleDeck\",\n            dependencies: [\"Utils\"]\n        ),\n        .target(\n            name: \"Utils\",\n            dependencies: []\n        ),\n        .target(\n            name: \"UtilsForTest\",\n            dependencies: [\"ViewInspector\"]\n        ),\n        .target(\n            name: \"ShuffleItForTest\",\n            dependencies: [\"ViewInspector\", \"UtilsForTest\"]\n        ),\n        .testTarget(\n            name: \"ShuffleItTests\",\n            dependencies: [\"ShuffleItForTest\", \"Utils\", \"ViewInspector\"]\n        ),\n    ],\n    swiftLanguageVersions: [.v5]\n)\n"
  },
  {
    "path": "README.md",
    "content": "<p align=\"center\">\n<img width=\"70%\" src=\"./Assets/ShuffleIt.png\">\n</p>\n\n<p align=\"center\">\n    <a href=\"https://swiftpackageindex.com/dscyrescotti/ShuffleIt\">\n\t    <img  src=\"https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fdscyrescotti%2FShuffleIt%2Fbadge%3Ftype%3Dplatforms\"/> \n    </a>\n    <a href=\"https://swiftpackageindex.com/dscyrescotti/ShuffleIt\">\n\t    <img  src=\"https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fdscyrescotti%2FShuffleIt%2Fbadge%3Ftype%3Dswift-versions\"/> \n    </a>\n    <a href=\"https://codecov.io/gh/dscyrescotti/ShuffleIt\">\n\t    <img  src=\"https://codecov.io/gh/dscyrescotti/ShuffleIt/branch/main/graph/badge.svg?token=D7DRKAD0VP\"/> \n    </a>\n    <a href=\"https://github.com/dscyrescotti/ShuffleIt/actions/workflows/swift.yml\">\n     \t<img src=\"https://github.com/dscyrescotti/ShuffleIt/actions/workflows/swift.yml/badge.svg\" alt=\"Action Status\"/>\n    </a>\n    <a href=\"LICENSE\">\n        <img src=\"https://img.shields.io/badge/license-MIT-brightgreen.svg\" alt=\"MIT License\">\n    </a>\n</p>\n\n**ShuffleIt** is a user interface library for **SwiftUI** which delivers a collection of customizable stack views with a wide range of elegant shuffling, sliding and swiping behaviours.\n\n<table>\n<tr>\n<th>CarouselStack</th>\n<th>ShuffleDeck</th>\n<th>ShuffleStack</th>\n</tr>\n<tr>\n<td align=\"center\" width=\"30%\"><img src=\"./Assets/CarouselStack-Demo.gif\" alt=\"CarouselStack-Demo\" width=\"100%\"/></td>\n<td align=\"center\" width=\"30%\"><img src=\"./Assets/ShuffleDeck-Demo.gif\" width=\"100%\"/></td>\n<td align=\"center\" width=\"30%\"><img src=\"./Assets/ShuffleStack-Demo.gif\" alt=\"ShuffleStack-Demo\" width=\"100%\"/></td>\n</tr>\n</table>\n\n## 💡 Features\n- [CarouselStack](#carouselstack)\n- [ShuffleDeck](#shuffledeck)\n- [ShuffleStack](#shufflestack)\n\n### CarouselStack <a id=\"carouselstack\"></a>\n**CarouselStack** is a stack view with sliding behaviour on the stack of content views with carousel effect. Just like **ShuffleStack**, it doesn't render all content views but it renders at most five content views which is enough to display content views with sliding animation. Besides, it provides customizablae modifiers to modify the view's appearance so that it is easy to adjust to what is desired.\n\n#### Usage\n```swift\nlet colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\nvar body: some View {\n    CarouselStack(\n        colors,\n        initialIndex: 0\n    ) { color in\n        color\n            .frame(height: 200)\n            .cornerRadius(16)\n    }\n}\n```\n<details>\n<summary>Preview</summary>\n<img src=\"./Assets/Previews/CarouselStack-Preview.gif\" alt=\"CarouselStack-Preview\"  height=\"300px\"/>\n</details>\n\nTo explore more about **CarouselStack**, check out the [documentation](https://dscyrescotti.github.io/ShuffleIt/documentation/shuffleit/carouselstack/).\n\n### ShuffleDeck <a id=\"shuffledeck\"></a>\n**ShuffleDeck** is a stack view with shuffling behaviour on the stack of content views which mimics the behaviour of photo collections in Apple's Messages App. As it is based on the reusability of content views, it only renders views that are visible on the screen and switches data of content views based on the current index. As it comes with a bunch of modifiers, it fully supports to tailor the view to meet the wanted appearance.\n\n#### Usage\n```swift\nlet colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\nvar body: some View {\n    ShuffleDeck(\n        colors,\n        initialIndex: 0\n    ) { color in\n        color\n            .frame(width: 200, height: 300)\n            .cornerRadius(16)\n    }\n}\n```\n<details>\n<summary>Preview</summary>\n<img src=\"./Assets/Previews/ShuffleDeck-Preview.gif\" alt=\"ShuffleDeck-Preview\" height=\"300px\"/>\n</details>\n\nTo explore more about **ShuffleDeck**, check out the [documentation](https://dscyrescotti.github.io/ShuffleIt/documentation/shuffleit/shuffledeck/).\n\n### ShuffleStack <a id=\"shufflestack\"></a>\n**ShuffleStack** is a stack view with shuffling behaviour on the stack of content views which will be useful as a banner. Not like normal stack view, it only renders three content views visible on the screen and switches data of content views based on the current index. As it comes with a bunch of modifiers, it is highly customizable to get the desired appearance.\n\n#### Usage\n```swift\nlet colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\nvar body: some View {\n    ShuffleStack(\n        colors,\n        initialIndex: 0\n    ) { color in\n        color\n            .frame(height: 200)\n            .cornerRadius(16)\n    }\n}\n```\n<details>\n<summary>Preview</summary>\n<img src=\"./Assets/Previews/ShuffleStack-Preview.gif\" alt=\"ShuffleStack-Preview\" height=\"300px\"/>\n</details>\n\nTo explore more about **ShuffleStack**, check out the [documentation](https://dscyrescotti.github.io/ShuffleIt/documentation/shuffleit/shufflestack/).\n\n> Starting from Version 2.0.0, there are some changes which rename some modifiers and some types of ShuffleStack. Please check out [documentation](https://dscyrescotti.github.io/ShuffleIt/documentation/shuffleit/shufflestack/) to update your code accordingly.\n\n## ⚠️ Requirements \n- iOS 15+, macOS 12+, watchOS 8+, tvOS 15+\n> ShuffleIt is developed using Xcode 13.3.1. Make sure you are using Xcode 13.3.1 and above.\n\n## 🛠 Installation \n### 📦 Using Swift Package Manager\nAdd it as a dependency within your Package.swift.\n```\ndependencies: [\n    .package(url: \"https://github.com/dscyrescotti/ShuffleIt.git\", from: \"2.1.3\")\n]\n```\n\n## 🔎 Exploration\n### Documentation\n**ShuffleIt** provides a clear documentation to increase the familiarity with the API and shallow learning curve when using it. You can check it out via this [link](https://dscyrescotti.github.io/ShuffleIt/documentation/shuffleit/).\n\n### Demo Project\n**ShuffleIt** also comes with the demo project which is an optimal spot to explore the API usage for available stack views. To run the demo project, you can use the following commands in your terminal.\n```\n> git clone https://github.com/dscyrescotti/ShuffleIt.git\n> cd ShuffleIt && xed Demo\n```\nAfterwards, Xcode will open the project and then you can hit ⌘+R to run the project.\n\n\n## 🎉 Motivation \nAs I'm kinda like an artistic guy, I really indulge in crafting something innovative, in particular, in area of implementing user interface elements. It's a huge pleasure for me to explore the API and create an elegant components and then it has attached to me as my precious hobby. That's why, I used to craft various components to test out what I can achieve so far. Recently, I got the idea of gathering my creations in one place and delivering them to the world so that it can be easily used in other projects and also used as a learning resource for other developers. With this intention, I eventually published my first UI library called **ShuffleIt** for SwiftUI.\n\n## ✍️ Author\nScotti | [@dscyrescotti](https://twitter.com/dscyrescotti) \n\n<p>\n<a href=\"https://twitter.com/dscyrescotti\">\n<img src=\"https://img.shields.io/twitter/follow/dscyrescotti.svg?style=social\">\n</a>\n&nbsp;\n<a href=\"https://github.com/dscyrescotti\">\n<img src=\"https://img.shields.io/github/followers/dscyrescotti.svg?style=social&label=Follow\">\n</a>\n</p>\n\n## 👨‍💻 Contributions\n\n**ShuffleIt**  welcomes all developers to contribute if you have any idea to enhance and open an issue if you encounter any bug.\n\n## © License\n\n**ShuffleIt** is available under the MIT license. See the  [LICENSE](https://github.com/dscyrescotti/ShuffleIt/blob/main/LICENSE)  file for more info.\n"
  },
  {
    "path": "Sources/CarouselStack/EnvironmentValues/CarouselAnimation.swift",
    "content": "import SwiftUI\n\n/// An enumeration of carousel animation that maps to `SwiftUI` animation.\npublic enum CarouselAnimation {\n    /// A linear animation.\n    case linear\n    /// An ease-in animation.\n    case easeIn\n    /// An ease-out animation.\n    case easeOut\n    /// An ease-in-out animation.\n    case easeInOut\n    \n    func timing(duration: Double) -> Animation {\n        switch self {\n        case .linear:\n            return .linear(duration: duration)\n        case .easeIn:\n            return .easeIn(duration: duration)\n        case .easeOut:\n            return .easeOut(duration: duration)\n        case .easeInOut:\n            return .easeInOut(duration: duration)\n        }\n    }\n}\n\n/// An environment key for carousel animation.\nstruct CarouselAnimationKey: EnvironmentKey {\n    static var defaultValue: CarouselAnimation = .linear\n}\n\nextension EnvironmentValues {\n    var carouselAnimation: CarouselAnimation {\n        get { self[CarouselAnimationKey.self] }\n        set { self[CarouselAnimationKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/CarouselStack/EnvironmentValues/CarouselContext.swift",
    "content": "import SwiftUI\n\n/// A structure that provides information about sliding.\npublic struct CarouselContext {\n    /// A property of current index of carousel stack view.\n    public let index: Int\n    /// A property of pervious index of carousel stack view.\n    public let previousIndex: Int\n    /// A property of carousel direction to which content view was slided.\n    public let direction: CarouselDirection\n}\n\n/// An environment key for carousel context.\nstruct CarouselContextKey: EnvironmentKey {\n    static var defaultValue: ((CarouselContext) -> Void)? = nil\n}\n\nextension EnvironmentValues {\n    var carouselContext: ((CarouselContext) -> Void)? {\n        get { self[CarouselContextKey.self] }\n        set { self[CarouselContextKey.self] = newValue }\n    }\n}\n\n"
  },
  {
    "path": "Sources/CarouselStack/EnvironmentValues/CarouselDisabled.swift",
    "content": "import SwiftUI\n\n/// An environment key for a flag to decide on whether sliding is disabled or not.\n@available(iOS 15.0, macOS 12.0, watchOS 8.0, *)\n@available(tvOS, unavailable)\nstruct CarouselDisabledKey: EnvironmentKey {\n    static var defaultValue: Bool = false\n}\n\nextension EnvironmentValues {\n    @available(iOS 15.0, macOS 12.0, watchOS 8.0, *)\n    @available(tvOS, unavailable)\n    var carouselDisabled: Bool {\n        get { self[CarouselDisabledKey.self] }\n        set { self[CarouselDisabledKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/CarouselStack/EnvironmentValues/CarouselPadding.swift",
    "content": "import SwiftUI\n\n/// An environment key for carousel padding.\nstruct CarouselPaddingKey: EnvironmentKey {\n    static var defaultValue: CGFloat = 20\n}\n\nextension EnvironmentValues {\n    var carouselPadding: CGFloat {\n        get { self[CarouselPaddingKey.self] }\n        set { self[CarouselPaddingKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/CarouselStack/EnvironmentValues/CarouselScale.swift",
    "content": "import SwiftUI\n\n/// An environment key for carousel scale.\nstruct CarouselScaleKey: EnvironmentKey {\n    static let defaultValue: CGFloat = 1\n}\n\nextension EnvironmentValues {\n    var carouselScale: CGFloat {\n        get { self[CarouselScaleKey.self] }\n        set { self[CarouselScaleKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/CarouselStack/EnvironmentValues/CarouselSpacing.swift",
    "content": "import SwiftUI\n\n/// An environment key for carousel spacing.\nstruct CarouselSpacingKey: EnvironmentKey {\n    static var defaultValue: CGFloat = 10\n}\n\nextension EnvironmentValues {\n    var carouselSpacing: CGFloat {\n        get { self[CarouselSpacingKey.self] }\n        set { self[CarouselSpacingKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/CarouselStack/EnvironmentValues/CarouselStyle.swift",
    "content": "import SwiftUI\n\n/// An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\npublic enum CarouselStyle {\n    /// A carousel style which makes content views scroll in the loop without ending.\n    case infiniteScroll\n    /// A carousel style which ends content views at both ends so that it cannot be scrolled infinitely.\n    case finiteScroll\n}\n\n/// An environment key for carousel style.\nstruct CarouselStyleKey: EnvironmentKey {\n    static var defaultValue: CarouselStyle = .finiteScroll\n}\n\nextension EnvironmentValues {\n    var carouselStyle: CarouselStyle {\n        get { self[CarouselStyleKey.self] }\n        set { self[CarouselStyleKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/CarouselStack/EnvironmentValues/CarouselTranslation.swift",
    "content": "import SwiftUI\n\n/// An environment key for carousel translation.\nstruct CarouselTranslationKey: EnvironmentKey {\n    static var defaultValue: ((CGFloat) -> Void)? = nil\n}\n\nextension EnvironmentValues {\n    var carouselTranslation: ((CGFloat) -> Void)? {\n        get { self[CarouselTranslationKey.self] }\n        set { self[CarouselTranslationKey.self] = newValue }\n    }\n}\n\n"
  },
  {
    "path": "Sources/CarouselStack/EnvironmentValues/CarouselTrigger.swift",
    "content": "import SwiftUI\nimport Combine\n\n/// An enumeratoin of carousel direction.\npublic enum CarouselDirection {\n    /// A slide direction to the left.\n    case left\n    /// A slide direction to the right.\n    case right\n}\n\n/// An environment key for carousel trigger.\nstruct CarouselTriggerKey: EnvironmentKey {\n    static var defaultValue: AnyPublisher<CarouselDirection, Never> = Empty<CarouselDirection, Never>().eraseToAnyPublisher()\n}\n\nextension EnvironmentValues {\n    var carouselTrigger: AnyPublisher<CarouselDirection, Never> {\n        get { self[CarouselTriggerKey.self] }\n        set { self[CarouselTriggerKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/CarouselStack/Extensions/CarouselStack+View.swift",
    "content": "import SwiftUI\nimport Combine\n\npublic extension View {\n    /// A modifer that overrides default carousel style of the carousel stack view.\n    ///\n    /// `CarouselStack` provides two different carousel styles - `finiteScroll` (default) and `infiniteScroll`. To apply style as desired, it can be overridden with `carouselStyle(_:)` modifier.\n    ///\n    /// The following code snippet demonstrates how to override the carousel style to be able to scroll infinitely left and right.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     CarouselStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .carouselStyle(.infiniteScroll)\n    /// }\n    /// ```\n    /// - Parameter style: A carousel style for carousel stack view.\n    /// - Returns: A view with the given carousel style.\n    func carouselStyle(_ style: CarouselStyle) -> some View {\n        environment(\\.carouselStyle, style)\n    }\n    \n    /// A modifier that overrides default carousel animation of the carousel stack view.\n    ///\n    /// By default, `CarouselStack` comes with `linear` animation to animate scrolling behaviour. With `carouselAnimation(_:)` modifier, it can be overridden with the given animation value.\n    ///\n    /// The following example shows the usage of overriding default carousel animation with `easeInOut` animation that will be used while shuffling.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     CarouselStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .carouselAnimation(.easeInOut)\n    /// }\n    /// ```\n    /// - Parameter animation: A shuffle animation for carousel stack view.\n    /// - Returns: A view with the given carousel animation.\n    func carouselAnimation(_ animation: CarouselAnimation) -> some View {\n        environment(\\.carouselAnimation, animation)\n    }\n    \n    /// A modifier that disables user interaction to carousel content views.\n    ///\n    /// Based on the boolean passing into the modifier, the user interaction will be disabled accordingly. If the boolean is `true`, it will no longer turn on the interaction to UI. If the boolean is `false`, it allows to carousel content views.\n    ///\n    /// The following piece of code show how to disable the user interaction on the shuffle stack view.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     CarouselStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .carouselDisabled(false)\n    /// }\n    /// ```\n    /// - Parameter disabled: A boolean value to decide whether it should be disabled or not.\n    /// - Returns: A view with the given boolean.\n    @available(iOS 15.0, macOS 12.0, watchOS 8.0, *)\n    @available(tvOS, unavailable)\n    func carouselDisabled(_ disabled: Bool) -> some View {\n        environment(\\.carouselDisabled, disabled)\n    }\n    \n    /// A modifier that accepts events of direction to perform programmatic sliding.\n    ///\n    /// In purpose of programmatic sliding such as using timer, `CarouselStack` accepts events via `carouselTrigger(on:)` modifier which is needed to inject an instance of publisher with `CarouselDirection` output type and `Never` failure type.\n    ///\n    /// The following example provides the programmatic approach of triggering slide event by sending `CarouselDirection` value through the publisher.\n    ///```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// let carouselPublisher = PassthroughSubject<CarouselDirection, Never>()\n    /// var body: some View {\n    ///     CarouselStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .carouselPublisher(on: carouselPublisher)\n    /// }\n    /// carouselPublisher.send(.left)\n    /// carouselPublisher.send(.right)\n    /// ```\n    /// - Parameter publisher: A publisher object that fires `CarouselDirection` values.\n    /// - Returns: A view with the given publisher object.\n    func carouselTrigger<P: Publisher>(on publisher: P) -> some View where P.Output == CarouselDirection, P.Failure == Never {\n        environment(\\.carouselTrigger, publisher.eraseToAnyPublisher())\n    }\n    \n    /// A modifier that sets value which is used to add some spacing between carousel stack contents.\n    ///\n    /// To add spacing between carousel stack contents, it can be achieved by passing the value through `carouselSpacing(_:)` modifier. By default, it uses 10 pixels to make a gap between contents.\n    ///\n    /// The following code sample shows the usage of `carouselSpacing(_:)` modifier by adding the space of 15 pixels to see a gap between stack contents.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     CarouselStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .carouselSpacing(15)\n    /// }\n    /// ```\n    /// - Parameter spacing: A spacing value between the content views of the carousel stack view.\n    /// - Returns: A view with the given spacing.\n    func carouselSpacing(_ spacing: CGFloat) -> some View {\n        environment(\\.carouselSpacing, spacing)\n    }\n    \n    /// A modifier that sets horizontal padding to the carousel stack view.\n    ///\n    /// By default, `CarouselStack` come with 20 pixels to add extra space between its frame and its content views. To be overriden, it can be done by passing the desired padding value through `carouselPadding(_:)` modifier.\n    ///\n    /// The following code snippet shows the usage of `carouselPadding(_:)` modifier.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     CarouselStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .carouselPadding(15)\n    /// }\n    /// ```\n    /// - Parameter padding: A padding value for a carousel stack view.\n    /// - Returns: A view with the given padding.\n    func carouselPadding(_ padding: CGFloat) -> some View {\n        environment(\\.carouselPadding, padding)\n    }\n    \n    /// A modifier that sets scale factor to shrink the size of the contents right next to the current content of the carousel stack view.\n    ///\n    /// `CarouselStack` allows to scale up (set value above 1) and scale down (set value below 1) contents so that the desired ui can be achieved by passing the value through `carouselScale(_:)` modifier. By defaults, it comes with the value of 1.\n    ///\n    /// The following code snippet shows the usage of `carouselScale(_:)` modifier.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     CarouselStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .carouselScale(1.2)\n    /// }\n    /// ```\n    /// - Parameter scale: A scaling factor to shrink or enlarge the size of content views.\n    /// - Returns: A view with the given scaling factor.\n    func carouselScale(_ scale: CGFloat) -> some View {\n        environment(\\.carouselScale, scale)\n    }\n    \n    /// A modifier that listens sliding events occurring on the carousel stack view.\n    ///\n    /// Using `onCarousel(_:)` modifier, it can be injected with a closure that exposes sliding information - `CarouselContext` through its parameter to perform a particular task whenever the user slides content views or sliding is executed programmatically.\n    ///\n    /// The following piece of code provides the usage of `onCarousel(_:)` modifier.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     CarouselStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .onCarousel { (context: CarouselContext) in\n    ///         /* some stuff */\n    ///     }\n    /// }\n    /// ```\n    /// - Parameter perform: A closure that exposes carousel context to perform everytime sliding occurs.\n    /// - Returns: A view with the given action for side effect of sliding.\n    func onCarousel(_ perform: @escaping (CarouselContext) -> Void) -> some View {\n        environment(\\.carouselContext, perform)\n    }\n    \n    /// A modifier that listens translation changes while sliding content views.\n    ///\n    /// To listen translation value of content views while sliding, `onCarouselTranslation(_:)` modifier can be used by passing a closure in order to perform a specific task based on the translation value.\n    ///\n    /// The following example provides the usage of `onCarouselTranslation(_:)` modifier.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     CarouselStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .onCarouselTranslation { (translation: CGFloat) in\n    ///         /* some stuff */\n    ///     }\n    /// }\n    /// ```\n    /// Besides, you can also directly listen translation value through the initializer instead of using this modifier.\n    /// - Parameter perform: A closure that exposes translation changes while sliding.\n    /// - Returns: A view with the given action to listen translation changes.\n    func onCarouselTranslation(_ perform: @escaping (CGFloat) -> Void) -> some View {\n        environment(\\.carouselTranslation, perform)\n    }\n}\n"
  },
  {
    "path": "Sources/CarouselStack/View/CarouselStack+Content.swift",
    "content": "import SwiftUI\n\nextension CarouselStack {\n    /// A view that renders the content view for the element of the current index.\n    @ViewBuilder\n    internal var mainContent: some View {\n        if let element = data[safe: index] {\n            let scale = 1 - (1 - scale) * scaleFactor\n            content(element, translation)\n                .scaleEffect(scale)\n                .offset(x: mainOffset(on: scale))\n        }\n    }\n    \n    /// A view that renders the content view for the element of the previous index.\n    @ViewBuilder\n    internal var leftContent: some View {\n        if let element = leftDataElement(1) {\n            let scale = scale + (1 - scale) * scaleFactor\n            let scaledWidth = size.width * scale\n            let offset = xPosition - size.width - spacing - (spacing * scaleFactor) + (size.width - scaledWidth) / 2\n            content(element, translation)\n                .scaleEffect(scale)\n                .offset(x: offset)\n        }\n    }\n    \n    /// A view that renders the content view for the element of the next index.\n    @ViewBuilder\n    internal var rightContent: some View {\n        if let element = rightDataElement(1) {\n            let scale = scale + (1 - scale) * scaleFactor\n            let scaledWidth = size.width * scale\n            let offset = xPosition + size.width + spacing + (spacing * scaleFactor) - (size.width - scaledWidth) / 2\n            content(element, translation)\n                .scaleEffect(scale)\n                .offset(x: offset)\n        }\n    }\n    \n    /// A view that renders the content view for the element of the second previous index.\n    @ViewBuilder\n    internal var secondLeftContent: some View {\n        if let element = leftDataElement(2) {\n            let scaledWidth = size.width * scale\n            let offsetRight = xPosition - size.width - spacing - (spacing * scaleFactor) + (size.width - scaledWidth) / 2\n            let offset = offsetRight - size.width - spacing * scaleFactor\n            content(element, translation)\n                .scaleEffect(scale)\n                .offset(x: offset)\n        }\n    }\n    \n    /// A view that renders the content view for the element of the second next index.\n    @ViewBuilder\n    internal var secondRightContent: some View {\n        if let element = rightDataElement(2) {\n            let scaledWidth = size.width * scale\n            let offsetRight = xPosition + size.width + spacing + (spacing * scaleFactor) - (size.width - scaledWidth) / 2\n            let offset = offsetRight + size.width + spacing * scaleFactor\n            content(element, translation)\n                .scaleEffect(scale)\n                .offset(x: offset)\n        }\n    }\n    \n    func mainOffset(on scale: CGFloat) -> CGFloat {\n        let scaledWidth = size.width * scale\n        let translation: CGFloat = scaleFactor > 0.5 ? (scaleFactor == 1 ? 0 : 0.5 - scaleFactor.truncatingRemainder(dividingBy: 0.5)) : scaleFactor\n        if xPosition > 0 {\n            return xPosition + (spacing * translation) - (spacing * scaleFactor) - (size.width - scaledWidth) / 2\n        } else {\n            return xPosition - (spacing * translation) + (spacing * scaleFactor) + (size.width - scaledWidth) / 2\n        }\n    }\n}\n"
  },
  {
    "path": "Sources/CarouselStack/View/CarouselStack+Data.swift",
    "content": "import Utils\nimport SwiftUI\n\nextension CarouselStack {\n    /// A property that provides the upcoming element of left side.\n    internal func leftDataElement(_ offset: Int) -> Data.Element? {\n        switch style {\n        case .infiniteScroll:\n            return data.previousElement(forLoop: index, offset: offset)\n        case .finiteScroll:\n            return data.previousElement(forUnloop: index, offset: offset)\n        }\n    }\n    \n    /// A property that provides the upcoming element of right side.\n    internal func rightDataElement(_ offset: Int) -> Data.Element? {\n        switch style {\n        case .infiniteScroll:\n            return data.nextElement(forLoop: index, offset: offset)\n        case .finiteScroll:\n            return data.nextElement(forUnloop: index, offset: offset)\n        }\n    }\n}\n"
  },
  {
    "path": "Sources/CarouselStack/View/CarouselStack+Gesture.swift",
    "content": "import SwiftUI\n\nextension CarouselStack {\n    /// A drag gesture that listens gesture state on content views and calculates rotation and position for sliding.\n    @available(iOS 15.0, macOS 12.0, watchOS 8.0, *)\n    @available(tvOS, unavailable)\n    internal var dragGesture: some Gesture {\n        DragGesture()\n            .updating($isActiveGesture, body: { _, state, _ in\n                state = true\n            })\n            .onChanged({ value in\n                let translation = value.translation.width\n                if translation > 0 {\n                    switch style {\n                    case .infiniteScroll:\n                        xPosition = translation - (data.distance(from: data.startIndex, to: data.endIndex) == 1 ? translation * 0.7 : 0)\n                    case .finiteScroll:\n                        xPosition = translation - (index == data.startIndex ? translation * 0.7 : 0)\n                    }\n                    direction = .left\n                } else if translation < 0 {\n                    switch style {\n                    case .infiniteScroll:\n                        xPosition = translation - (data.distance(from: data.startIndex, to: data.endIndex) == 1 ? translation * 0.7 : 0)\n                    case .finiteScroll:\n                        xPosition = translation - (index == data.index(before: data.endIndex) ? translation * 0.7 : 0)\n                    }\n                    direction = .right\n                }\n            })\n    }\n}\n"
  },
  {
    "path": "Sources/CarouselStack/View/CarouselStack+Sliding.swift",
    "content": "import SwiftUI\n\nextension CarouselStack {\n    /// A method that mimics sliding behaviour for the purpose of programmatic sliding.\n    internal func performSliding(_ direction: CarouselDirection) {\n        self.autoSliding = true\n        self.direction = direction\n        performMovingToMiddle()\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.21) {\n            self.performRestoring()\n        }\n    }\n    \n    /// A method that mimics sliding behaviour to slide view to left or right for the purpose of programmatic sliding.\n    internal func performMovingToMiddle() {\n        let maXSwipeDistance = size.width * 0.75\n        withAnimation(animation.timing(duration: 0.21)) {\n            switch direction {\n            case .left:\n                xPosition = maXSwipeDistance\n            case .right:\n                xPosition = -maXSwipeDistance\n            }\n        }\n    }\n    \n    /// A method that performs to restore content views, which have already been in the middle of sliding in the process of sliding, to the original position.\n    internal func performRestoring() {\n        let maxSwipeDistance = size.width * 0.5\n        if xPosition > 0 {\n            let newIndex: Data.Index?\n            switch style {\n            case .infiniteScroll:\n                newIndex = data.previousIndex(forLoop: index, offset: 1)\n            case .finiteScroll:\n                newIndex = data.previousIndex(forUnloop: index, offset: 1)\n            }\n            if xPosition >= maxSwipeDistance, let newIndex = newIndex {\n                xPosition = xPosition - size.width - spacing\n                let context = CarouselContext(\n                    index: data.distance(from: data.startIndex, to: newIndex),\n                    previousIndex: data.distance(from: data.startIndex, to: index),\n                    direction: .left\n                )\n                index = newIndex\n                direction = .right\n                withAnimation(animation.timing(duration: duration(0.07))) {\n                    xPosition = 0\n                    autoSliding = false\n                }\n                notifyListener(context: context)\n            } else {\n                withAnimation(animation.timing(duration: duration(0.05))) {\n                    xPosition = 0\n                }\n            }\n        } else if xPosition < 0 {\n            let newIndex: Data.Index?\n            switch style {\n            case .infiniteScroll:\n                newIndex = data.nextIndex(forLoop: index, offset: 1)\n            case .finiteScroll:\n                newIndex = data.nextIndex(forUnloop: index, offset: 1)\n            }\n            if xPosition <= -maxSwipeDistance, let newIndex = newIndex {\n                xPosition = xPosition + size.width + spacing\n                let context = CarouselContext(\n                    index: data.distance(from: data.startIndex, to: newIndex),\n                    previousIndex: data.distance(from: data.startIndex, to: index),\n                    direction: .right\n                )\n                index = newIndex\n                direction = .left\n                withAnimation(animation.timing(duration: duration(0.07))) {\n                    xPosition = 0\n                    autoSliding = false\n                }\n                notifyListener(context: context)\n            } else {\n                withAnimation(animation.timing(duration: duration(0.05))) {\n                    xPosition = 0\n                }\n            }\n        }\n    }\n    \n    private func duration(_ fraction: CGFloat) -> CGFloat {\n        let ratio = abs(xPosition / size.width)\n        return ratio * fraction + derivativeOf(fn: { $0 * fraction }, atX: ratio)\n    }\n    \n    private func derivativeOf(fn: (CGFloat) -> CGFloat, atX x: CGFloat) -> CGFloat {\n        let h = 0.0000001\n        return (fn(x + h) - fn(x)) / h\n    }\n    \n    /// A method that notifies an listener with context value after sliding succeeds.\n    private func notifyListener(context: CarouselContext) {\n        carouselContext?(context)\n    }\n    \n    /// A property that calculates translation value of swiping content views.\n    internal var translation: CGFloat {\n        if size.width > 0 {\n            let width = (size.width + spacing * 2) / 2\n            let position = abs(xPosition).truncatingRemainder(dividingBy: width)\n            if abs(xPosition) > width {\n                return 1 - (position / width)\n            } else {\n                return position / width\n            }\n        }\n        return 0\n    }\n    \n    /// A property that calculates scaleFactor for the views based on their position.\n    internal var scaleFactor: CGFloat {\n        if size.width > 0 {\n            let width = (size.width + spacing * 2)\n            return min(1, abs(xPosition) / width)\n        }\n        return 0\n    }\n}\n"
  },
  {
    "path": "Sources/CarouselStack/View/CarouselStack.swift",
    "content": "import Utils\nimport SwiftUI\n#if canImport(UtilsForTest)\nimport UtilsForTest\nimport ViewInspector\n#endif\n\n/// A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\n///\n/// ## Overview\n/// `CarouselStack` is built on top of `ZStack` to renders carousel sliding view which only allocates at most five content views and reuses them when index changes. In case the data passed into the stack view is empty, there will be empty view on the screen.\n///\n/// The following code snippet demonstrates the simple usage of `CarouselStack` which creates a slide view of color cards with default carousel style and animation.\n/// ```\n/// struct ContentView: View {\n///     let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n///     var body: some View {\n///         CarouselStack(\n///             colors,\n///             initialIndex: 0\n///         ) { color in\n///             color\n///                 .frame(height: 200)\n///                 .cornerRadius(16)\n///         }\n///     }\n/// }\n/// ```\n///\n/// ## Customizing default behaviours\n/// `CarouselStack` provides a wide range of modifiers to override default behaviour of the stack view so that it is easy to tailor to view with custom values such as animation, style, spacing, padding and scale factor.\n///\n/// The following table shows a list of available modifiers that customizes the view.\n///\n/// Modifier | Description\n/// --- | ---\n/// ``carouselAnimation(_:)`` | A modifier that overrides default carousel animation of the carousel stack view.\n/// ``carouselStyle(_:)`` | A modifer that overrides default carousel style of the carousel stack view.\n/// ``carouselPadding(_:)`` | A modifier that sets horizontal padding to the carousel stack view.\n/// ``carouselScale(_:)`` | A modifier that sets scale factor to shrink the size of the contents right next to the current content of the carousel stack view.\n/// ``carouselSpacing(_:)`` | A modifier that sets value which is used to add some spacing between carousel stack contents.\n/// ``carouselDisabled(_:)`` | A modifier that disables user interaction to carousel content views.\n///\n/// ## Observing sliding events and swiping translation\n/// `CarouselStack` comes with useful modifiers that listens sliding events and swiping translation to perform a particular action based on those values after sliding succeeds or while swiping the views.\n///\n/// The following modifiers helps to observe sliding events and translation changes.\n///\n/// Modifier | Description\n/// --- | ---\n/// ``onCarousel(_:)`` | A modifier that listens sliding events occurring on the carousel stack view.\n/// ``onCarouselTranslation(_:)`` | A modifier that listens translation changes while sliding content views.\n///\n/// ## Triggering the programmatic sliding\n/// `CarouselStack` also allows programmatic sliding by accepting a series of events from the upstream publisher. Whenever the publisher fires an event, it blocks user interaction on the view and performs sliding action.\n/// \n/// Modifier | Description\n/// --- | ---\n/// ``carouselTrigger(on:)`` | A modifier that accepts events of direction to perform programmatic sliding.\n///\n/// ## Topics\npublic struct CarouselStack<Data: RandomAccessCollection, Content: View>: View {\n    @Environment(\\.carouselStyle) internal var style\n    @Environment(\\.carouselAnimation) internal var animation\n    #if !os(tvOS)\n    @Environment(\\.carouselDisabled) internal var disabled\n    #endif\n    @Environment(\\.carouselTrigger) internal var carouselTrigger\n    @Environment(\\.carouselPadding) internal var padding\n    @Environment(\\.carouselSpacing) internal var spacing\n    @Environment(\\.carouselScale) internal var scale\n    @Environment(\\.carouselContext) internal var carouselContext\n    @Environment(\\.carouselTranslation) internal var carouselTranslation\n    \n    @State internal var index: Data.Index\n    @State internal var xPosition: CGFloat = .zero\n    @State internal var direction: CarouselDirection = .left\n    @State internal var size: CGSize = .zero\n    @State internal var autoSliding: Bool = false\n    \n    @GestureState internal var isActiveGesture: Bool = false\n    \n    internal let data: Data\n    internal let content: (Data.Element, CGFloat) -> Content\n    \n    #if canImport(UtilsForTest)\n    internal let inspection = Inspection<Self>()\n    #endif\n    \n    public var body: some View {\n        ZStack {\n            secondLeftContent\n            leftContent\n            contentView\n                .background {\n                    GeometryReader { proxy in\n                        Color.clear\n                            .preference(key: SizePreferenceKey.self, value: proxy.size)\n                    }\n                }\n            rightContent\n            secondRightContent\n        }\n        .frame(maxWidth: .infinity)\n        .padding(.horizontal, padding)\n        .frame(minHeight: size.height)\n        .onPreferenceChange(SizePreferenceKey.self) { size in\n            if size != .zero {\n                DispatchQueue.main.async {\n                    self.size = size\n                }\n            }\n        }\n        .onReceive(carouselTrigger) { direction in\n            switch style {\n            case .infiniteScroll:\n                guard data.distance(from: data.startIndex, to: data.endIndex) > 1 else { return }\n            case .finiteScroll:\n                switch direction {\n                case .left:\n                    guard data.startIndex != index else { return }\n                case .right:\n                    guard data.index(before: data.endIndex) != index else { return }\n                }\n            }\n            if !autoSliding && xPosition == 0 {\n                performSliding(direction)\n            }\n        }\n        .onChange(of: xPosition) { _ in\n            DispatchQueue.main.async {\n                carouselTranslation?(translation)\n            }\n        }\n        .disabled(autoSliding)\n        .onChange(of: isActiveGesture) { value in\n            if !isActiveGesture {\n                DispatchQueue.main.asyncAfter(deadline: .now() + 0.02) {\n                    performRestoring()\n                }\n            }\n        }\n        #if canImport(UtilsForTest)\n        .onReceive(inspection.notice) {\n            self.inspection.visit(self, $0)\n        }\n        #endif\n    }\n\n    @ViewBuilder\n    private var contentView: some View {\n        #if os(tvOS)\n        mainContent\n        #else\n        if disabled {\n            mainContent\n        } else {\n            mainContent.gesture(dragGesture)\n        }\n        #endif\n    }\n}\n\nextension CarouselStack {\n    /// An initializer that returns an instance of `CarouselStack`.\n    /// - Parameters:\n    ///   - data: A collection of data that will be provided to content views through closure.\n    ///   - initialIndex: An initiai index of data for which content view will be rendered first.\n    ///   - content: A view builder that dynamically renders content view based on current index and data provided.\n    public init(\n        _ data: Data,\n        initialIndex: Data.Index? = nil,\n        @ViewBuilder content: @escaping (Data.Element) -> Content\n    ) {\n        self.data = data\n        self.content = { element, _ in\n            content(element)\n        }\n        self._index = State(initialValue: initialIndex ?? data.startIndex)\n    }\n    \n    /// An initializer that returns an instance of `CarouselStack` and exposes translation value to child content through view builder.\n    /// - Parameters:\n    ///   - data: A collection of data that will be provided to content views through closure.\n    ///   - initialIndex: An initial index of data for which content view will be rendered first.\n    ///   - content: A view builder that dynamically renders content view based on current index and data provided. It also exposes the translation value of how much view is been dragging while sliding.\n    public init(\n        _ data: Data,\n        initialIndex: Data.Index? = nil,\n        @ViewBuilder content: @escaping (Data.Element, CGFloat) -> Content\n    ) {\n        self.data = data\n        self.content = content\n        self._index = State(initialValue: data.startIndex)\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleDeck/EnvironmentValues/ShuffleDeckAnimation.swift",
    "content": "import SwiftUI\n\n/// An enumeration of shuffle deck animation that maps to `SwiftUI` animation.\npublic enum ShuffleDeckAnimation {\n    /// A linear animation.\n    case linear\n    /// An ease-in animation.\n    case easeIn\n    /// An ease-out animation.\n    case easeOut\n    /// An ease-in-out animation.\n    case easeInOut\n\n    func timing(duration: Double) -> Animation {\n        switch self {\n        case .linear:\n            return .linear(duration: duration)\n        case .easeIn:\n            return .easeIn(duration: duration)\n        case .easeOut:\n            return .easeOut(duration: duration)\n        case .easeInOut:\n            return .easeInOut(duration: duration)\n        }\n    }\n}\n\n/// An environment key for shuffle deck animation.\nstruct ShuffleDeckAnimationKey: EnvironmentKey {\n    static var defaultValue: ShuffleDeckAnimation = .linear\n}\n\nextension EnvironmentValues {\n    var shuffleDeckAnimation: ShuffleDeckAnimation {\n        get { self[ShuffleDeckAnimationKey.self] }\n        set { self[ShuffleDeckAnimationKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleDeck/EnvironmentValues/ShuffleDeckContext.swift",
    "content": "import SwiftUI\n\n/// A structure that provides information about shuffling.\npublic struct ShuffleDeckContext {\n    /// A property of current index of shuffle deck view.\n    public let index: Int\n    /// A property of previous index of shuffle deck view.\n    public let previousIndex: Int\n    /// A property of shuffle deck direction to which content view was dragged.\n    public let direction: ShuffleDeckDirection\n}\n\n/// An environment key for shuffle deck context.\nstruct ShuffleDeckContextKey: EnvironmentKey {\n    static var defaultValue: ((ShuffleDeckContext) -> Void)? = nil\n}\n\nextension EnvironmentValues {\n    var shuffleDeckContext: ((ShuffleDeckContext) -> Void)? {\n        get { self[ShuffleDeckContextKey.self] }\n        set { self[ShuffleDeckContextKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleDeck/EnvironmentValues/ShuffleDeckDisabled.swift",
    "content": "import SwiftUI\n\n/// An environent key for a flag to decide on whether shuffling is disabled or not.\n@available(iOS 15.0, macOS 12.0, watchOS 8.0, *)\n@available(tvOS, unavailable)\nstruct ShuffleDeckDisabledKey: EnvironmentKey {\n    static var defaultValue: Bool = false\n}\n\nextension EnvironmentValues {\n    @available(iOS 15.0, macOS 12.0, watchOS 8.0, *)\n    @available(tvOS, unavailable)\n    var shuffleDeckDisabled: Bool {\n        get { self[ShuffleDeckDisabledKey.self] }\n        set { self[ShuffleDeckDisabledKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleDeck/EnvironmentValues/ShuffleDeckScale.swift",
    "content": "import SwiftUI\n\n/// An environment key for shuffle deck scale.\nstruct ShuffleDeckScaleKey: EnvironmentKey {\n    static var defaultValue: CGFloat = 0.07\n}\n\nextension EnvironmentValues {\n    var shuffleDeckScale: CGFloat {\n        get { self[ShuffleDeckScaleKey.self] }\n        set { self[ShuffleDeckScaleKey.self] = (min(1, max(0, newValue)) * 0.1) }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleDeck/EnvironmentValues/ShuffleDeckStyle.swift",
    "content": "import SwiftUI\n\n/// An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\npublic enum ShuffleDeckStyle {\n    /// A shuffle deck style which makes content views scroll in the loop without ending.\n    case infiniteShuffle\n    /// A shuffle deck style which ends content views at both ends so that it cannot be shuffled infinitely.\n    case finiteShuffle\n}\n\n/// An environment key for shuffle deck style.\nstruct ShuffleDeckStyleKey: EnvironmentKey {\n    static var defaultValue: ShuffleDeckStyle = .finiteShuffle\n}\n\nextension EnvironmentValues {\n    var shuffleDeckStyle: ShuffleDeckStyle {\n        get { self[ShuffleDeckStyleKey.self] }\n        set { self[ShuffleDeckStyleKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleDeck/EnvironmentValues/ShuffleDeckTranslation.swift",
    "content": "import SwiftUI\n\n/// An environment key for shuffle deck translation.\nstruct ShuffleDeckTranslationKey: EnvironmentKey {\n    static var defaultValue: ((CGFloat) -> Void)? = nil\n}\n\nextension EnvironmentValues {\n    var shuffleDeckTranslation: ((CGFloat) -> Void)? {\n        get { self[ShuffleDeckTranslationKey.self] }\n        set { self[ShuffleDeckTranslationKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleDeck/EnvironmentValues/ShuffleDeckTrigger.swift",
    "content": "import SwiftUI\nimport Combine\n\n/// An enumeration of shuffle deck direction.\npublic enum ShuffleDeckDirection {\n    /// A shuffle direction to the left.\n    case left\n    /// A shuffle direction to the right.\n    case right\n}\n\n/// An environment key for shuffle deck trigger.\nstruct ShuffleDeckTriggerKey: EnvironmentKey {\n    static var defaultValue: AnyPublisher<ShuffleDeckDirection, Never> = Empty<ShuffleDeckDirection, Never>().eraseToAnyPublisher()\n}\n\nextension EnvironmentValues {\n    var shuffleDeckTrigger: AnyPublisher<ShuffleDeckDirection, Never> {\n        get { self[ShuffleDeckTriggerKey.self] }\n        set { self[ShuffleDeckTriggerKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleDeck/Extensions/ShuffleDeck+View.swift",
    "content": "import SwiftUI\nimport Combine\n\npublic extension View {\n    /// A modifier that overrides default shuffle animation of the shuffle deck view.\n    ///\n    /// By default, `ShuffleDeck` uses `linear` animation to animate shuffling behaviour. With `shuffleDeckAnimation` modifier, it can be overridden with the given animation value.\n    ///\n    /// The following example shows the usage of tailoring default shuffle deck animation with `easeIn` animation that will be used while shuffling.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleDeck(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(width: 200, height: 300)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .shuffleDeckAnimation(.easeIn)\n    /// }\n    /// ```\n    /// - Parameter animation: A shuffle animation for shuffle deck view.\n    /// - Returns: A view with the given shuffle deck animation.\n    func shuffleDeckAnimation(_ animation: ShuffleDeckAnimation) -> some View {\n        environment(\\.shuffleDeckAnimation, animation)\n    }\n\n    /// A modifier that disables user interaction to shuffle deck content views.\n    ///\n    /// Based on the boolen passing into the modifier, the user interaction will be disabled accordingly, If the boolean is `true`, it will no longer turn on the interaction to UI. If the boolean is `false`, it allows to shuffle views.\n    ///\n    /// The following code snippet shows how to disable the user interaction on the shuffle deck view.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleDeck(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(width: 200, height: 300)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .shuffleDeckDisabled(false)\n    /// }\n    /// ```\n    /// - Parameter disabled: A boolean value to decide whether it should be disabled or not.\n    /// - Returns: A view with the given boolean.\n    @available(iOS 15.0, macOS 12.0, watchOS 8.0, *)\n    @available(tvOS, unavailable)\n    func shuffleDeckDisabled(_ disabled: Bool) -> some View {\n        environment(\\.shuffleDeckDisabled, disabled)\n    }\n\n    /// A modifier that sets scale factor to shrink the size of the left and right content views of shuffle deck view.\n    ///\n    /// Regarding scaling content views, `ShuffleDeck` only allows to set value between 0 and 1 inclusively. If the value is out of this range, it will be replaced with 0 and 1 based on the given value. The default scaling factor is 0.7.\n    ///\n    /// The following code snippet shows the usage of `shuffleDeckScale(_:)` modifier.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleDeck(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(width: 200, height: 300)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .shuffleDeckScale(0.5)\n    /// }\n    /// ```\n    /// - Parameter scale: A scaling factor to shrink the size of content views.\n    /// - Returns: A view with the given scaling factor.\n    func shuffleDeckScale(_ scale: CGFloat) -> some View {\n        environment(\\.shuffleDeckScale, scale)\n    }\n\n    /// A modifier that overrides default shuffle style of the shuffle deck view.\n    ///\n    /// `ShuffleDeck` comes with two different shuffling styles - `finiteShuffle` (default) and `infiniteShuffle`. To apply style as wanted, it can be overridden with `shuffleDeckStyle(_:)` modifier.\n    ///\n    /// The following code snippet demonstrates how to override the shuffle style to be able to shuffle infinitely.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleDeck(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(width: 200, height: 300)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .shuffleDeckStyle(.infiniteShuffle)\n    /// }\n    /// ```\n    /// - Parameter style: A shuffle style for shuffle deck view.\n    /// - Returns: A view with the given shuffle deck style.\n    func shuffleDeckStyle(_ style: ShuffleDeckStyle) -> some View {\n        environment(\\.shuffleDeckStyle, style)\n    }\n\n    /// A modifier that accepts events of direction to perform programmatic shuffling.\n    ///\n    /// In purpose of programmatic shuffling using timer or manually, `ShuffleDeck` fires events via `shuffleDeckTrigger(on:)` modifier which is needed to inject an instance of publisher with `ShuffleDeckDirection` output type and `Never` failure type.\n    ///\n    /// The following example provides the programmatic approach of triggering shuffle event by sending `ShuffleDeckDirection` value through the publisher.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// let shuffleDeckPublisher = PassthroughSubject<ShuffleDeckDirection, Never>()\n    /// var body: some View {\n    ///     ShuffleDeck(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(width: 200, height: 300)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .shuffleDeckTrigger(on: shuffleDeckPublisher)\n    /// }\n    /// shuffleDeckPublisher.send(.left)\n    /// shuffleDeckPublisher.send(.right)\n    /// ```\n    /// - Parameter publisher: A publisher object that fires `ShuffleDeckDirection` values.\n    /// - Returns: A view with the given publisher object.\n    func shuffleDeckTrigger<P: Publisher>(on publisher: P) -> some View where P.Output == ShuffleDeckDirection, P.Failure == Never {\n        environment(\\.shuffleDeckTrigger, publisher.eraseToAnyPublisher())\n    }\n\n    /// A modifier that listens shuffling events occurring on the shuffle deck view.\n    ///\n    /// Using `onShuffleDeck(_:)` modifier, it can inject a closure that exposes shuffling information - `ShuffleDeckContext` through its parameter to perform a particular task whenever the user shuffle content views or shuffling is triggered programmatically.\n    ///\n    /// The following piece of code provides the usage of `onShuffleDeck(_:)` modifier.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleDeck(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(width: 200, height: 300)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .onShuffleDeck { (context: ShuffleDeckContext) in\n    ///         /* some stuff */\n    ///     }\n    /// }\n    /// ```\n    /// - Parameter perform: A closure that exposes shuffle deck context to perform everytime shuffling occurs.\n    /// - Returns: A view with the given action for side effect of shuffling.\n    func onShuffleDeck(_ perform: @escaping (ShuffleDeckContext) -> Void) -> some View {\n        environment(\\.shuffleDeckContext, perform)\n    }\n\n    /// A modifier that listens translation changes while shuffling content views.\n    ///\n    /// To listen translation value of content views, `onShuffleDeckTranslation(_:)` modifier can be used by passing a closure in order to perform a specific task based on the translation value.\n    ///\n    /// The following example provides the usage of `onShuffleDeckTranslation(_:)` modifier.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleDeck(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(width: 200, height: 300)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .onShuffleDeckTranslation { (translation: CGFloat) in\n    ///         /* some stuff */\n    ///     }\n    /// }\n    /// ```\n    /// Besides, you can also directly listen translation value through the view builder instead.\n    /// - Parameter perform: A closure that exposes translation changes while shuffling.\n    /// - Returns: A view with the given action to listen translation changes.\n    func onShuffleDeckTranslation(_ perform: @escaping (CGFloat) -> Void) -> some View {\n        environment(\\.shuffleDeckTranslation, perform)\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleDeck/View/ShuffleDeck+Content.swift",
    "content": "import SwiftUI\n\nextension ShuffleDeck {\n    /// A view that renders the content view with the element of the current index from data provided.\n    @ViewBuilder\n    internal var mainContent: some View {\n        if let element = data[safe: index] {\n            let factor: CGFloat = factor * 4\n            let anchor: UnitPoint = direction == .left ? .bottomTrailing : .bottomLeading\n            let scale: CGFloat = isLockedLeft || isLockedRight ? 1 - scale : 1 - scale * (direction == .left ? 1 : -1) * factor\n            let degree: Double = isLockedLeft ? 2 : isLockedRight ? -2 : Double(factor) * 2\n            let xOffset: CGFloat = isLockedLeft ? 3 : isLockedRight ? -3 : xPosition * 0.8\n            let yOffset: CGFloat = isLockedLeft || isLockedRight ? -5 : -5 * abs(factor)\n            let index: Double = isLockedLeft || isLockedRight ? 2 : 10\n            content(element, translation)\n                .scaleEffect(scale, anchor: anchor)\n                .rotationEffect(.degrees(degree), anchor: anchor)\n                .offset(x: xOffset, y: yOffset)\n                .zIndex(index)\n        }\n    }\n\n    /// A view that renders the content view on the left side of the main content view.\n    @ViewBuilder\n    internal var leftContent: some View {\n        if let element = leftDataElement(1) {\n            let factor: CGFloat = direction == .left ? max(0, factor - 0.2) : min(0, factor + 0.2)\n            let scale: CGFloat = 1 - scale + factor * scale\n            let degree: Double = -2 + Double(factor) * 2\n            let xOffset: CGFloat = -3 + factor * 2\n            let yOffset: CGFloat = -5 + factor * 5\n            let index: Double = direction == .left ? 3 : 1\n            content(element, translation)\n                .scaleEffect(scale, anchor: .bottomLeading)\n                .rotationEffect(.degrees(degree), anchor: .bottomLeading)\n                .offset(x: xOffset, y: yOffset)\n                .zIndex(index)\n        }\n    }\n\n    /// A view that renders the content view on the right side of the main content view.\n    @ViewBuilder\n    internal var rightContent: some View {\n        if let element = rightDataElement(1) {\n            let factor: CGFloat = direction == .left ? max(0, factor - 0.2) : min(0, factor + 0.2)\n            let scale: CGFloat = 1 - scale + (-factor) * scale\n            let degree: Double = 2 + Double(factor) * 2\n            let xOffset: CGFloat = 3 + factor * 2\n            let yOffset: CGFloat = -5 - factor * 5\n            let index: Double = direction == .right ? 3 : 1\n            content(element, translation)\n                .scaleEffect(scale, anchor: .bottomTrailing)\n                .rotationEffect(.degrees(degree), anchor: .bottomTrailing)\n                .offset(x: xOffset, y: yOffset)\n                .zIndex(index)\n        }\n    }\n\n    /// A second view that renders the content view on the left side of the first left content view.\n    @ViewBuilder\n    internal var secondLeftContent: some View {\n        if let element = leftDataElement(2) {\n            let factor: CGFloat = direction == .left ? max(0, factor - 0.2) : min(0, factor + 0.2)\n            let scale: CGFloat = 1 - (scale * 2) + (factor * scale)\n            let degree: Double = -4 + Double(factor) * 2\n            let xOffset: CGFloat = -5 + factor * 2\n            let yOffset: CGFloat = -10 + factor * 5\n            content(element, translation)\n                .scaleEffect(scale, anchor: .bottomLeading)\n                .rotationEffect(.degrees(degree), anchor: .bottomLeading)\n                .offset(x: xOffset, y: yOffset)\n        }\n    }\n\n    /// A second view that renders the content view on the right side of the first right content view.\n    @ViewBuilder\n    internal var secondRightContent: some View {\n        if let element = rightDataElement(2) {\n            let factor: CGFloat = direction == .left ? max(0, factor - 0.2) : min(0, factor + 0.2)\n            let scale: CGFloat = 1 + (-scale * 2) - (factor * scale)\n            let degree: Double = 4 + Double(factor) * 2\n            let xOffset: CGFloat = 5 + factor * 2\n            let yOffset: CGFloat = -10 - factor * 5\n            content(element, translation)\n                .scaleEffect(scale, anchor: .bottomTrailing)\n                .rotationEffect(.degrees(degree), anchor: .bottomTrailing)\n                .offset(x: xOffset, y: yOffset)\n        }\n    }\n\n    /// A third view that renders the content view on the left side of the second left content view.\n    @ViewBuilder\n    internal var thirdLeftContent: some View {\n        if let element = leftDataElement(3) {\n            let factor: CGFloat = direction == .left ? max(0, factor - 0.2) : min(0, factor + 0.2)\n            let scale: CGFloat = 1 - (scale * 3) + (factor * scale)\n            let degree: Double = -6 + Double(factor) * 2\n            let xOffset: CGFloat = -7 + factor * 2\n            let yOffset: CGFloat = -15 + factor * 5\n            content(element, translation)\n                .scaleEffect(scale, anchor: .bottomLeading)\n                .rotationEffect(.degrees(degree), anchor: .bottomLeading)\n                .offset(x: xOffset, y: yOffset)\n        }\n    }\n\n    /// A third view that renders the content view on the right side of the second right content view.\n    @ViewBuilder\n    internal var thirdRightContent: some View {\n        if let element = rightDataElement(3) {\n            let factor: CGFloat = direction == .left ? max(0, factor - 0.2) : min(0, factor + 0.2)\n            let scale: CGFloat = 1 + (-scale * 3) - (factor * scale)\n            let degree: Double = 6 + Double(factor) * 2\n            let xOffset: CGFloat = 7 + factor * 2\n            let yOffset: CGFloat = -15 - factor * 5\n            content(element, translation)\n                .scaleEffect(scale, anchor: .bottomTrailing)\n                .rotationEffect(.degrees(degree), anchor: .bottomTrailing)\n                .offset(x: xOffset, y: yOffset)\n        }\n    }\n\n    /// A fourth view that renders the content view on the left side of the third left content view.\n    @ViewBuilder\n    internal var fourthLeftContent: some View {\n        if let element = leftDataElement(4) {\n            let factor: CGFloat = direction == .left ? max(0, factor - 0.2) : min(0, factor + 0.2)\n            let scale: CGFloat = isShiftedLeft ? 1 - (scale * 3) : 1 - (scale * 4)  + (factor * scale)\n            let degree: Double = isShiftedLeft ? -6 : -8 + Double(factor) * 2\n            let xOffset: CGFloat = isShiftedLeft ? -7 : -9 + factor * 2\n            let yOffset: CGFloat = isShiftedLeft ? -15 : -20 + factor * 5\n            content(element, translation)\n                .scaleEffect(scale, anchor: .bottomLeading)\n                .rotationEffect(.degrees(degree), anchor: .bottomLeading)\n                .offset(x: xOffset, y: yOffset)\n        }\n    }\n\n    /// A fourth view that renders the content view on the right side of the third right content view.\n    @ViewBuilder\n    internal var fourthRightContent: some View {\n        if let element = rightDataElement(4) {\n            let factor: CGFloat = direction == .left ? max(0, factor - 0.2) : min(0, factor + 0.2)\n            let scale: CGFloat = isShiftedRight ? 1 - (scale * 3) : 1 - (scale * 4) - (factor * scale)\n            let degree: Double = isShiftedRight ? 6 : 8 + Double(factor) * 2\n            let xOffset: CGFloat = isShiftedRight ? 7 : 9 + factor * 2\n            let yOffset: CGFloat = isShiftedRight ? -15 : -20 - factor * 5\n            content(element, translation)\n                .scaleEffect(scale, anchor: .bottomTrailing)\n                .rotationEffect(.degrees(degree), anchor: .bottomTrailing)\n                .offset(x: xOffset, y: yOffset)\n        }\n    }\n\n    /// A view that renders to illustrate the fifth content view with the upcoming element from left or right side if there is any elements left.\n    @ViewBuilder\n    internal var nextContent: some View {\n        if let element = leftDataElement(5), xPosition > 0 {\n            content(element, translation)\n                .scaleEffect(1 - scale * 4, anchor: .bottomLeading)\n                .rotationEffect(.degrees(-8), anchor: .bottomLeading)\n                .offset(x: isShiftedRight ? -9 : 0, y: -20)\n                .zIndex(-2)\n        }\n        if let element = rightDataElement(5), xPosition < 0 {\n            content(element, translation)\n                .scaleEffect(1 - scale * 4, anchor: .bottomTrailing)\n                .rotationEffect(.degrees(8), anchor: .bottomTrailing)\n                .offset(x: isShiftedLeft ? 9 : 0, y: -20)\n                .zIndex(-2)\n        }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleDeck/View/ShuffleDeck+Data.swift",
    "content": "import Utils\nimport SwiftUI\n\nextension ShuffleDeck {\n    /// A method that generates the upcoming element of left side.\n    internal func leftDataElement(_ offset: Int) -> Data.Element? {\n        switch style {\n        case .infiniteShuffle:\n            return data.previousElement(forLoop: index, offset: offset)\n        case .finiteShuffle:\n            return data.previousElement(forUnloop: index, offset: offset)\n        }\n    }\n\n    /// A method that generates the upcoming element of right side.\n    internal func rightDataElement(_ offset: Int) -> Data.Element? {\n        switch style {\n        case .infiniteShuffle:\n            return data.nextElement(forLoop: index, offset: offset)\n        case .finiteShuffle:\n            return data.nextElement(forUnloop: index, offset: offset)\n        }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleDeck/View/ShuffleDeck+Gesture.swift",
    "content": "import SwiftUI\n\nextension ShuffleDeck {\n    /// A drag gesture that listens gesture state on content views and calculates rotation and position for shuffling.\n    @available(iOS 15.0, macOS 12.0, watchOS 8.0, *)\n    @available(tvOS, unavailable)\n    internal var dragGesture: some Gesture {\n        DragGesture()\n            .updating($isActiveGesture) { _, state, _ in\n                state = true\n            }\n            .onChanged { value in\n                var position: CGFloat\n                switch style {\n                case .infiniteShuffle:\n                    position = value.translation.width / 1.2\n                case .finiteShuffle:\n                    position = value.translation.width / 1.2\n                    if position > 0, data.previousIndex(forUnloop: index, offset: 1) == nil {\n                        position /= 15\n                    }\n                    if position < 0, data.nextIndex(forUnloop: index, offset: 1) == nil {\n                        position /= 15\n                    }\n                }\n                let range = size.width * 0.5\n                xPosition = min(max(position, -range), range)\n                if xPosition > 0 {\n                    direction = .left\n                } else if xPosition < 0 {\n                    direction = .right\n                }\n            }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleDeck/View/ShuffleDeck+Shuffling.swift",
    "content": "import Utils\nimport SwiftUI\n\nextension ShuffleDeck {\n    /// A method that mimics shuffling behavoir for the purpose of programmatic shuffling.\n    internal func performShuffling(_ direction: ShuffleDeckDirection) {\n        self.autoShuffling = true\n        self.direction = direction\n        performSpreadingOut()\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {\n            self.performRestoring()\n        }\n    }\n\n    /// A method that mimics shuffling behaviour of dragging view to left or right for the purpose of programmatic shuffling.\n    internal func performSpreadingOut() {\n        let maxSwipeDistance = size.width * 0.25\n        withAnimation(animation.timing(duration: 0.08)) {\n            switch direction {\n            case .left:\n                xPosition = maxSwipeDistance\n            case .right:\n                xPosition = -maxSwipeDistance\n            }\n        }\n    }\n\n    /// A method that performs to restore content views, which have already spread out in the process of shuffling, to the original position.\n    internal func performRestoring() {\n        let midX = size.width * 0.5\n        let maxSwipeDistance = size.width * 0.25\n        if xPosition > 0 {\n            let newIndex: Data.Index?\n            switch style {\n            case .infiniteShuffle:\n                newIndex = data.previousIndex(forLoop: index, offset: 1)\n            case .finiteShuffle:\n                newIndex = data.previousIndex(forUnloop: index, offset: 1)\n            }\n            if xPosition >= maxSwipeDistance, let nextIndex = newIndex {\n                withAnimation(animation.timing(duration: 0.08)) {\n                    xPosition = midX + midX * 0.2\n                }\n                DispatchQueue.main.asyncAfter(deadline: .now() + 0.05) {\n                    withAnimation(animation.timing(duration: 0.03)) {\n                        isShiftedRight = true\n                    }\n                }\n                DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {\n                    withAnimation(animation.timing(duration: 0.08)) {\n                        isLockedLeft = true\n                    }\n                }\n                DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {\n                    let previousIndex = index\n                    index = nextIndex\n                    isShiftedRight = false\n                    isLockedLeft = false\n                    xPosition = 0\n                    autoShuffling = false\n                    let context = ShuffleDeckContext(\n                        index: data.distance(from: data.startIndex, to: index),\n                        previousIndex: data.distance(from: data.startIndex, to: previousIndex),\n                        direction: .left\n                    )\n                    notifyListener(context: context)\n                }\n            } else {\n                withAnimation(animation.timing(duration: 0.1)) {\n                    xPosition = 0\n                }\n            }\n        } else if xPosition < 0 {\n            let newIndex: Data.Index?\n            switch style {\n            case .infiniteShuffle:\n                newIndex = data.nextIndex(forLoop: index, offset: 1)\n            case .finiteShuffle:\n                newIndex = data.nextIndex(forUnloop: index, offset: 1)\n            }\n            if xPosition <= -maxSwipeDistance, let nextIndex = newIndex {\n                withAnimation(animation.timing(duration: 0.08)) {\n                    xPosition = -midX - midX * 0.2\n                }\n                DispatchQueue.main.asyncAfter(deadline: .now() + 0.05) {\n                    withAnimation(animation.timing(duration: 0.03)) {\n                        isShiftedLeft = true\n                    }\n                }\n                DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {\n                    withAnimation(animation.timing(duration: 0.08)) {\n                        isLockedRight = true\n                    }\n                }\n                DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {\n                    let previousIndex = index\n                    index = nextIndex\n                    isShiftedLeft = false\n                    isLockedRight = false\n                    xPosition = 0\n                    autoShuffling = false\n                    let context = ShuffleDeckContext(\n                        index: data.distance(from: data.startIndex, to: index),\n                        previousIndex: data.distance(from: data.startIndex, to: previousIndex),\n                        direction: .right\n                    )\n                    notifyListener(context: context)\n                }\n            } else {\n                withAnimation(animation.timing(duration: 0.1)) {\n                    xPosition = 0\n                }\n            }\n        }\n    }\n\n    /// A method that notifies an listener with context value after shuffling succeeds.\n    private func notifyListener(context: ShuffleDeckContext) {\n        shuffleDeckContext?(context)\n    }\n\n    /// A property that calculates translation value of dragging content views.\n    internal var translation: CGFloat {\n        return size.width > 0 ? min(abs(xPosition) / (size.width * 0.5), 1) : 0\n    }\n\n    /// A property that calculates drag amount of the content view.\n    internal var factor: CGFloat {\n        return size.width > 0 ? xPosition / (size.width * 0.5) : 0\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleDeck/View/ShuffleDeck.swift",
    "content": "import Utils\nimport SwiftUI\n#if canImport(UtilsForTest)\nimport UtilsForTest\nimport ViewInspector\n#endif\n\n/// A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\n///\n/// ## Overview\n/// `ShuffleDeck` is built on top of `ZStack` to mimic the shuffling behavior of a deck of cards. Like other stack views, it only renders the visible child views and switches data to display based on the current index. In case the data provided to the view is empty, there will be empty on the screen.\n///\n/// The following code snippet provides the usage of `ShuffleDeck` which creates a deck of cards with default shuffle style and animation.\n///\n/// ```swift\n/// struct ContentView: View {\n///     let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n///     var body: some View {\n///         ShuffleDeck(\n///             colors,\n///             initialIndex: 0\n///         ) { color in\n///             color\n///                 .frame(width: 200, height: 300)\n///                 .cornerRadius(16)\n///         }\n///     }\n/// }\n/// ```\n///\n/// ## Tailoring default behaviours\n/// `ShuffleDeck` comes with multiple modifiers to override default behaviour of the stack view so that it is easy to customize view with unique animation, style and scale factor.\n///\n/// The following table reveals a list of available modifiers that adjust the view as expected.\n///\n/// Modifier | Description\n/// --- | ---\n/// ``shuffleDeckAnimation(_:)`` | A modifier that overrides default shuffle animation of the shuffle deck view.\n/// ``shuffleDeckDisabled(_:)`` | A modifier that disables user interaction to shuffle deck content views.\n/// ``shuffleDeckScale(_:)`` | A modifier that sets scale factor to shrink the size of the left and right content views of shuffle deck view.\n/// ``shuffleDeckStyle(_:)`` | A modifier that overrides default shuffle style of the shuffle deck view.\n///\n/// ## Monitoring shuffle events and translation\n/// `ShuffleDeck` provides useful modifiers that listens shuffle events and shuffling translation to perform a particular action based on those values after shuffling succeeds or while shuffling deck view.\n///\n/// The following modifiers helps to observe shuffling events and translation changes.\n///\n/// Modifier | Decription\n/// --- | ---\n/// ``onShuffleDeck(_:)`` | A modifier that listens shuffling events occurring on the shuffle deck view.\n/// ``onShuffleDeckTranslation(_:)`` | A modifier that listens translation changes while shuffling content views.\n///\n/// ## Triggering shuffling programmatically\n/// `ShuffleDeck` also allows programmatic shuffling by accepting a series of events from the upstream publisher. Whenever the publisher fires an event, it blocks user interaction on the view and performs shuffling action.\n///\n/// Modifier | Description\n/// --- | ---\n/// ``shuffleDeckTrigger(on:)`` | A modifier that accepts events of direction to perform programmatic shuffling.\n///\n/// ## Topics\npublic struct ShuffleDeck<Data: RandomAccessCollection, Content: View>: View {\n    @Environment(\\.shuffleDeckStyle) internal var style\n    @Environment(\\.shuffleDeckScale) internal var scale\n    @Environment(\\.shuffleDeckAnimation) internal var animation\n    @Environment(\\.shuffleDeckTrigger) internal var shuffleDeckTrigger\n    #if !os(tvOS)\n    @Environment(\\.shuffleDeckDisabled) internal var disabled\n    #endif\n    @Environment(\\.shuffleDeckContext) internal var shuffleDeckContext\n    @Environment(\\.shuffleDeckTranslation) internal var shuffleDeckTranslation\n\n    @State internal var index: Data.Index\n    @State internal var xPosition: CGFloat = .zero\n    @State internal var size: CGSize = .zero\n    @State internal var direction: ShuffleDeckDirection = .left\n    @State internal var autoShuffling: Bool = false\n\n    @State internal var isLockedLeft = false\n    @State internal var isLockedRight = false\n    // MARK: - fourth content animation\n    @State internal var isShiftedLeft = false\n    @State internal var isShiftedRight = false\n\n    @GestureState internal var isActiveGesture: Bool = false\n\n    internal let data: Data\n    internal let content: (Data.Element, CGFloat) -> Content\n\n    #if canImport(UtilsForTest)\n    internal let inspection = Inspection<Self>()\n    #endif\n\n    public var body: some View {\n        ZStack {\n            // MARK: - Next Contents\n            nextContent\n            // MARK: - Left Contents\n            fourthLeftContent\n            thirdLeftContent\n            secondLeftContent\n            leftContent\n            // MARK: - Right Contents\n            fourthRightContent\n            thirdRightContent\n            secondRightContent\n            rightContent\n            // MARK: - Main Content\n            mainContentView\n                .background {\n                    GeometryReader { proxy in\n                        Color.clear\n                            .preference(key: SizePreferenceKey.self, value: proxy.size)\n                            .onAppear {\n                                self.size = proxy.size\n                            }\n                    }\n                }\n        }\n        .frame(maxWidth: .infinity, minHeight: size.height)\n        .onPreferenceChange(SizePreferenceKey.self) { size in\n            if size != .zero {\n                DispatchQueue.main.async {\n                    self.size = size\n                }\n            }\n        }\n        .onChange(of: isActiveGesture) { value in\n            if !isActiveGesture {\n                performRestoring()\n            }\n        }\n        .onReceive(shuffleDeckTrigger) { direction in\n            switch style {\n            case .infiniteShuffle:\n                guard data.distance(from: data.startIndex, to: data.endIndex) > 1 else { return }\n            case .finiteShuffle:\n                switch direction {\n                case .left:\n                    guard data.startIndex != index else { return }\n                case .right:\n                    guard data.index(before: data.endIndex) != index else { return }\n                }\n            }\n            if !autoShuffling && xPosition == 0 {\n                performShuffling(direction)\n            }\n        }\n        .disabled(autoShuffling)\n        .onChange(of: xPosition) { _ in\n            DispatchQueue.main.async {\n                shuffleDeckTranslation?(translation)\n            }\n        }\n        #if canImport(UtilsForTest)\n        .onReceive(inspection.notice) {\n            self.inspection.visit(self, $0)\n        }\n        #endif\n    }\n\n    @ViewBuilder\n    var mainContentView: some View {\n        #if os(tvOS)\n        mainContent\n        #else\n        if disabled {\n            mainContent\n        } else {\n            mainContent\n                .gesture(dragGesture)\n        }\n        #endif\n    }\n}\n\nextension ShuffleDeck {\n    /// An initializer that returns an instance of `ShuffleDeck`.\n    /// - Parameters:\n    ///   - data: A collection of data that will be provided to content views through closure.\n    ///   - initialIndex: An initial index of data for which content view will be rendered first.\n    ///   - content: A view builder that dynamically renders content view based on current index and data provided.\n    public init(\n        _ data: Data,\n        initialIndex: Data.Index? = nil,\n        @ViewBuilder content: @escaping (Data.Element) -> Content\n    ) {\n        self.data = data\n        self._index = State(initialValue: initialIndex ?? data.startIndex)\n        self.content = { element, _ in\n            content(element)\n        }\n    }\n\n    /// An initializer that returns an instance of `ShuffleDeck` and exposes translation value to child content through view builder.\n    /// - Parameters:\n    ///   - data: A collection of data that will be provided to content views through closure.\n    ///   - initialIndex: An initial index of data for which content view will be rendered first.\n    ///   - content: A view builder that dynamically renders content view based on current index and data provided. It also exposes the translation value of how much view is been dragging while shuffling.\n    public init(\n        _ data: Data,\n        initialIndex: Data.Index? = nil,\n        content: @escaping (Data.Element, CGFloat) -> Content\n    ) {\n        self.data = data\n        self._index = State(initialValue: initialIndex ?? data.startIndex)\n        self.content = content\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleIt/ShuffleIt.docc/ShuffleIt.md",
    "content": "# ``ShuffleIt``\n\nA UI element library for **SwiftUI**.\n\n## Overview\n\n**ShuffleIt** is a user interface library for **SwiftUI** which delivers a collection of customizable stack views with a wide range of elegant shuffling, sliding and swiping behaviours.\n\n![\"logo\"](ShuffleIt.png)\n\n## Topics\n\n### CarouselStack\n- ``CarouselStack``\n- ``CarouselAnimation``\n- ``CarouselContext``\n- ``CarouselDirection``\n- ``CarouselStyle``\n\n### ShuffleDeck\n- ``ShuffleDeck``\n- ``ShuffleDeckAnimation``\n- ``ShuffleDeckContext``\n- ``ShuffleDeckDirection``\n- ``ShuffleDeckStyle``\n\n### ShuffleStack\n- ``ShuffleStack``\n- ``ShuffleAnimation``\n- ``ShuffleContext``\n- ``ShuffleDirection``\n- ``ShuffleStyle``\n"
  },
  {
    "path": "Sources/ShuffleStack/EnvironmentValues/ShuffleAnimation.swift",
    "content": "import SwiftUI\n\n/// An enumeration of shuffle animation that maps to `SwiftUI` animation.\npublic enum ShuffleAnimation {\n    /// A linear animation.\n    case linear\n    /// An ease-in animation.\n    case easeIn\n    /// An ease-out animation.\n    case easeOut\n    /// An ease-in-out animation.\n    case easeInOut\n    \n    func timing(duration: Double) -> Animation {\n        switch self {\n        case .linear:\n            return .linear(duration: duration)\n        case .easeIn:\n            return .easeIn(duration: duration)\n        case .easeOut:\n            return .easeOut(duration: duration)\n        case .easeInOut:\n            return .easeInOut(duration: duration)\n        }\n    }\n}\n\n/// An environment key for shuffle animation.\nstruct ShuffleAnimationKey: EnvironmentKey {\n    static var defaultValue: ShuffleAnimation = .linear\n}\n\nextension EnvironmentValues {\n    var shuffleAnimation: ShuffleAnimation {\n        get { self[ShuffleAnimationKey.self] }\n        set { self[ShuffleAnimationKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/EnvironmentValues/ShuffleContext.swift",
    "content": "import SwiftUI\n\n/// A structure that provides information about shuffling.\npublic struct ShuffleContext {\n    /// A property of current index of shuffle stack view.\n    public let index: Int\n    /// A property of previous index of shuffle stack view.\n    public let previousIndex: Int\n    /// A property of shuffling direction to which content view was swiped.\n    public let direction: ShuffleDirection\n}\n\n/// An environment key for shuffle context.\nstruct ShuffleContextKey: EnvironmentKey {\n    static var defaultValue: ((ShuffleContext) -> Void)? = nil\n}\n\nextension EnvironmentValues {\n    var shuffleContext: ((ShuffleContext) -> Void)? {\n        get { self[ShuffleContextKey.self] }\n        set { self[ShuffleContextKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/EnvironmentValues/ShuffleDiabled.swift",
    "content": "import SwiftUI\n\n/// An environment key for a flag to decide on whether shuffling is disabled or not.\n@available(iOS 15.0, macOS 12.0, watchOS 8.0, *)\n@available(tvOS, unavailable)\nstruct ShuffleDisabledKey: EnvironmentKey {\n    static var defaultValue: Bool = false\n}\n\nextension EnvironmentValues {\n    @available(iOS 15.0, macOS 12.0, watchOS 8.0, *)\n    @available(tvOS, unavailable)\n    var shuffleDisabled: Bool {\n        get { self[ShuffleDisabledKey.self] }\n        set { self[ShuffleDisabledKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/EnvironmentValues/ShuffleOffset.swift",
    "content": "import Utils\nimport SwiftUI\n\n/// An environment key for shuffle stack offset.\nstruct ShuffleOffsetKey: EnvironmentKey {\n    static var defaultValue: CGFloat = 15\n}\n\nextension EnvironmentValues {\n    var shuffleOffset: CGFloat {\n        get { self[ShuffleOffsetKey.self] }\n        set { self[ShuffleOffsetKey.self] = max(newValue, 0) }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/EnvironmentValues/ShufflePadding.swift",
    "content": "import SwiftUI\n\n/// An environment key for shuffle stack padding.\nstruct ShufflePaddingKey: EnvironmentKey {\n    static var defaultValue: CGFloat = 15\n}\n\nextension EnvironmentValues {\n    var shufflePadding: CGFloat {\n        get { self[ShufflePaddingKey.self] }\n        set { self[ShufflePaddingKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/EnvironmentValues/ShuffleScale.swift",
    "content": "import SwiftUI\n\n/// An environment key for shuffle stack scale.\nstruct ShuffleScaleKey: EnvironmentKey {\n    static var defaultValue: CGFloat = 0.95\n}\n\nextension EnvironmentValues {\n    var shuffleScale: CGFloat {\n        get { self[ShuffleScaleKey.self] }\n        set { self[ShuffleScaleKey.self] = (min(1, max(0, newValue)) * 0.1) + 0.9 }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/EnvironmentValues/ShuffleStyle.swift",
    "content": "import SwiftUI\n\n/// An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\npublic enum ShuffleStyle {\n    /// A shuffle style which just slides content views without rotating.\n    case slide\n    /// A shuffle style which rotates and scales into center while shuffling.\n    case rotateIn\n    /// A shuffle style which rotates and scales to outside while shuffling.\n    case rotateOut\n}\n\n/// An environment key for shuffle style.\nstruct ShuffleStyleKey: EnvironmentKey {\n    static var defaultValue: ShuffleStyle = .slide\n}\n\nextension EnvironmentValues {\n    var shuffleStyle: ShuffleStyle {\n        get { self[ShuffleStyleKey.self] }\n        set { self[ShuffleStyleKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/EnvironmentValues/ShuffleTranslation.swift",
    "content": "import SwiftUI\n\n/// An environment key for suffle translation.\nstruct ShuffleTranslationKey: EnvironmentKey {\n    static var defaultValue: ((CGFloat) -> Void)? = nil\n}\n\nextension EnvironmentValues {\n    var shuffleTranslation: ((CGFloat) -> Void)? {\n        get { self[ShuffleTranslationKey.self] }\n        set { self[ShuffleTranslationKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/EnvironmentValues/ShuffleTrigger.swift",
    "content": "import SwiftUI\nimport Combine\n\n/// An enumeration of shuffle direction.\npublic enum ShuffleDirection {\n    /// A shuffle direction to the left.\n    case left\n    /// A shuffle direction to the right.\n    case right\n}\n\n/// An environment key for shuffle trigger.\nstruct ShuffleTriggerKey: EnvironmentKey {\n    static var defaultValue: AnyPublisher<ShuffleDirection, Never> = Empty<ShuffleDirection, Never>().eraseToAnyPublisher()\n}\n\nextension EnvironmentValues {\n    var shuffleTrigger: AnyPublisher<ShuffleDirection, Never> {\n        get { self[ShuffleTriggerKey.self] }\n        set { self[ShuffleTriggerKey.self] = newValue }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/Extensions/ShuffleStack+View.swift",
    "content": "import SwiftUI\nimport Combine\n\npublic extension View {\n    /// A modifer that overrides default shuffle style of the shuffle stack view.\n    ///\n    /// `ShuffleStack` comes with three different shuffle styles - `slide` (default), `rotateIn` and `rotateOut` and uses `slide` as a default style. To apply other style, it can be overridden by using `shuffleStyle(_:)` modifier.\n    ///\n    /// The following example shows the usage of overriding default shuffle style with `rotateOut` style to rotate and scale to the outside while shuffling.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .shuffleStyle(.rotateOut)\n    /// }\n    /// ```\n    /// - Parameter style: A shuffle style for shuffle stack view.\n    /// - Returns: A view with the given shuffle style.\n    func shuffleStyle(_ style: ShuffleStyle) -> some View {\n        environment(\\.shuffleStyle, style)\n    }\n    \n    /// A modifer that overrides default shuffle animation of the shuffle stack view.\n    ///\n    /// By default, `ShuffleStack` uses `linear` animation to animate shuffling behaviour. With `shuffleAnimation(_:)` modifier, it can be overridden with the given animation value.\n    ///\n    /// The following example shows the usage of overriding default shuffle animation with `easeInOut` animation that will be used while shuffling.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .shuffleAnimation(.easeInOut)\n    /// }\n    /// ```\n    /// - Parameter animation: A shuffle animation for shuffle stack view.\n    /// - Returns: A view with the given shuffle animation.\n    func shuffleAnimation(_ animation: ShuffleAnimation) -> some View {\n        environment(\\.shuffleAnimation, animation)\n    }\n    \n    /// A modifer that disables user interaction to shuffle content views.\n    ///\n    /// Based on the boolean passing into the modifier, the user interaction will be disabled accordingly. If the boolean is `true`,  it will no longer turn on the interaction to UI. If the boolean is `false`, it allows to shuffle content views.\n    ///\n    /// The following piece of code shows how to disable the user interaction on the shuffle stack view.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .shuffleDisabled(false)\n    /// }\n    /// ```\n    /// - Parameter disabled: A boolean value to decide whether it should be disabled or not.\n    /// - Returns: A view with the given boolean.\n    @available(iOS 15.0, macOS 12.0, watchOS 8.0, *)\n    @available(tvOS, unavailable)\n    func shuffleDisabled(_ disabled: Bool) -> some View {\n        environment(\\.shuffleDisabled, disabled)\n    }\n    \n    \n    /// A modifier that accpets events of direction to perform programmatic shuffling.\n    ///\n    /// In purpose of shuffling programmatically such as using timer, `ShuffleStack` accepts events via `shuffleTrigger(on:)` modifier which is needed to inject an instance of publisher with `ShuffleDirection` output type and `Never` failure type.\n    ///\n    /// The following example provides the programmatic way of triggering shuffle event by sending `ShuffleDirection` value through the publisher.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// let shufflePublisher = PassthroughSubject<ShuffleDirection, Never>()\n    /// var body: some View {\n    ///     ShuffleStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .shuffleTrigger(on: shufflePublisher)\n    /// }\n    /// shufflePublisher.send(.left)\n    /// shufflePublisher.send(.right)\n    /// ```\n    /// - Parameter publisher: A publisher object that fires `ShuffleDirection` values.\n    /// - Returns: A view with the given publisher object.\n    func shuffleTrigger<P: Publisher>(on publisher: P) -> some View where P.Output == ShuffleDirection, P.Failure == Never {\n        environment(\\.shuffleTrigger, publisher.eraseToAnyPublisher())\n    }\n    \n    /// A modifier that sets value that is used to shift the offset of the upcoming and previous content views behind the view of the current index.\n    ///\n    /// To shift the upcoming and previous content views of the shuffle stack view (not to overlay by the current view that display on the top of the stack), it can be adjust by setting offset value through `shuffleOffset(_:)` modifier. By default, it uses 15 pixels to shift the offset.\n    ///\n    /// The following code snippet shows the usage of `shuffleOffset(_:)` modifier. By using 25 pixels, it will be noticable that there is more horizontal gap between the upcoming and previous content views and the current view than using the default offset.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .shuffleOffset(25)\n    /// }\n    /// ```\n    /// - Parameter offset: A offset value for the content views behind the current content view.\n    /// - Returns: A view with the given offset.\n    func shuffleOffset(_ offset: CGFloat) -> some View {\n        environment(\\.shuffleOffset, offset)\n    }\n    \n    /// A modifier that sets horizontal padding to the shuffle stack view.\n    ///\n    /// By default, `ShuffleStack` uses 15 pixels to add extra space between its frame and its content views. To be overridden, it can be achieved by passing the desired padding value through `shufflePadding(_:)` modifier.\n    ///\n    /// The following code snippet shows the usage of `shufflePadding(_:)` modifier.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .shufflePadding(25)\n    /// }\n    /// ```\n    /// - Parameter padding: A padding value for a shuffle stack view.\n    /// - Returns: A view with the given padding.\n    func shufflePadding(_ padding: CGFloat) -> some View {\n        environment(\\.shufflePadding, padding)\n    }\n    \n    /// A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\n    ///\n    /// Regarding scaling content views, `ShuffleStack` only allows to set value between 0 and 1 inclusively. If the value is out of this range, it will be replaced with 0 or 1 based on the given value. The default scaling factor is 0.5.\n    ///\n    /// The following code snippet shows the usage of `shuffleScale(_:)` modifier.\n    /// ```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .shuffleScale(0.6)\n    /// }\n    /// ```\n    /// - Parameter scale: A scaling factor to shrink the size of content views.\n    /// - Returns: A view with the given scaling factor.\n    func shuffleScale(_ scale: CGFloat) -> some View {\n        environment(\\.shuffleScale, scale)\n    }\n    \n    /// A modifier that listens shuffling events occurring on the shuffle stack view.\n    ///\n    /// Using `onShuffle(_:)` modifier, it can be injected wtih a closure that exposes shuffling information - `ShuffleContext` through its parameter to perform a particular task whenever the user swipes content views or shuffling is triggered programmatically.\n    ///\n    /// The following example provides the usage of `onShuffle(_:)` modifier.\n    ///```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .onShuffle { (context: ShuffleContext) in\n    ///         /* some stuff */\n    ///     }\n    /// }\n    /// ```\n    /// - Parameter perform: A closure that exposes shuffle context to perform everytime shuffling happens.\n    /// - Returns: A view with the given action for side effect of shuffling.\n    func onShuffle(_ perform: @escaping (ShuffleContext) -> Void) -> some View {\n        environment(\\.shuffleContext, perform)\n    }\n    \n    /// A modifier that listens translation changes while swiping content views.\n    ///\n    /// To listen translation value of content views while shuffling, `onShuffleTranslation(_:)` modifier can be used by passing a closure in order to perform a specific task based on the translation value.\n    ///\n    /// The following example provides the usage of `onShuffleTranslation(_:)` modifier.\n    ///```swift\n    /// let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n    /// var body: some View {\n    ///     ShuffleStack(\n    ///         colors,\n    ///         initialIndex: 0\n    ///     ) { color in\n    ///         color\n    ///             .frame(height: 200)\n    ///             .cornerRadius(16)\n    ///     }\n    ///     .onShuffleTranslation { (translation: CGFloat) in\n    ///         /* some stuff */\n    ///     }\n    /// }\n    /// ```\n    /// Besides, you can also directly listen translation value through the initializer instead of using this modifier.\n    /// - Parameter perform: A closure that exposes translation changes while swiping.\n    /// - Returns: A view with the given action to listen translation changes.\n    func onShuffleTranslation(_ perform: @escaping (CGFloat) -> Void) -> some View {\n        environment(\\.shuffleTranslation, perform)\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/View/ShuffleStack+Content.swift",
    "content": "import SwiftUI\n\nextension ShuffleStack {\n    /// A view that renders the content view for the element of the previous index.\n    @ViewBuilder\n    internal var leftContent: some View {\n        if let element = leftDataElement {\n            switch style {\n            case .slide:\n                stackContent(element, translation)\n                    .offset(x: xPosition > 0 ? -offset - xPosition : -offset, y: 0)\n                    .scaleEffect(xPosition > 0 ? scale + (xPosition / size.width * 0.01) : scale, anchor: .leading)\n                    .zIndex(direction == .right ? 1 : 3)\n            case .rotateIn:\n                stackContent(element, translation)\n                    .offset(x: xPosition > 0 ? -offset - xPosition : -offset, y: 0)\n                    .scaleEffect(xPosition > 0 ? 1 : scale, anchor: .leading)\n                    .rotation3DEffect(\n                        xPosition > 0 ? .degrees(0 + Double(xPosition) / offset) : .zero,\n                        axis: (x: 0.0, y: 1.0, z: 0.0)\n                    )\n                    .zIndex(direction == .right ? 1 : 3)\n            case .rotateOut:\n                stackContent(element, translation)\n                    .offset(x: xPosition > 0 ? -offset - xPosition : -offset, y: 0)\n                    .scaleEffect(xPosition > 0 ? 1 : scale, anchor: .leading)\n                    .rotation3DEffect(\n                        xPosition > 0 ? .degrees(0 - Double(xPosition) / offset) : .zero,\n                        axis: (x: 0.0, y: 1.0, z: 0.0)\n                    )\n                    .zIndex(direction == .right ? 1 : 3)\n            }\n        }\n    }\n    \n    /// A view that renders the content view for the element of the next index.\n    @ViewBuilder\n    internal var rightContent: some View {\n        if let element = rightDataElement {\n            switch style {\n            case .slide:\n                stackContent(element, translation)\n                    .offset(x: xPosition < 0 ? offset - xPosition : offset, y: 0)\n                    .scaleEffect(xPosition < 0 ? scale + (-xPosition / size.width * 0.01) : scale, anchor: .trailing)\n                    .zIndex(direction == .left ? 1 : 3)\n            case .rotateIn:\n                stackContent(element, translation)\n                    .offset(x: xPosition < 0 ? offset - xPosition : offset, y: 0)\n                    .scaleEffect(xPosition < 0 ? 1 : scale, anchor: .trailing)\n                    .rotation3DEffect(\n                        xPosition < 0 ? .degrees(0 + Double(xPosition) / offset) : .zero,\n                        axis: (x: 0.0, y: 1.0, z: 0.0)\n                    )\n                    .zIndex(direction == .left ? 1 : 3)\n            case .rotateOut:\n                stackContent(element, translation)\n                    .offset(x: xPosition < 0 ? offset - xPosition : offset, y: 0)\n                    .scaleEffect(xPosition < 0 ? 1 : scale, anchor: .trailing)\n                    .rotation3DEffect(\n                        xPosition < 0 ? .degrees(0 - Double(xPosition) / offset) : .zero,\n                        axis: (x: 0.0, y: 1.0, z: 0.0)\n                    )\n                    .zIndex(direction == .left ? 1 : 3)\n            }\n        }\n    }\n    \n    /// A view that renders the content view for the element of the current index.\n    @ViewBuilder\n    internal var mainContent: some View {\n        if let element = data[safe: index] {\n            switch style {\n            case .slide:\n                stackContent(element, translation)\n                    .zIndex(4)\n                    .offset(x: xPosition, y: 0)\n            case .rotateIn:\n                stackContent(element, translation)\n                    .zIndex(4)\n                    .offset(x: xPosition, y: 0)\n                    .rotation3DEffect(\n                        .degrees(0 + Double(-xPosition) / offset),\n                        axis: (x: 0.0, y: 1.0, z: 0.0)\n                    )\n            case .rotateOut:\n                stackContent(element, translation)\n                    .zIndex(4)\n                    .offset(x: xPosition, y: 0)\n                    .rotation3DEffect(\n                        .degrees(0 - Double(-xPosition) / offset),\n                        axis: (x: 0.0, y: 1.0, z: 0.0)\n                    )\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/View/ShuffleStack+Data.swift",
    "content": "import SwiftUI\n\nextension ShuffleStack {\n    /// A property that provides the upcoming element of left side.\n    internal var leftDataElement: Data.Element? {\n        isLockedLeft ? data.nextElement(forLoop: index, offset: 2) : data.previousElement(forLoop: index, offset: 1)\n    }\n    \n    /// A property that provides the upcoming element of right side.\n    internal var rightDataElement: Data.Element? {\n        isLockedRight ? data.previousElement(forLoop: index, offset: 2) : data.nextElement(forLoop: index, offset: 1)\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/View/ShuffleStack+Gesture.swift",
    "content": "import SwiftUI\n\nextension ShuffleStack {\n    /// A drag gesture that listens gesture state on content views and calculates rotation and position for shuffling.\n    @available(iOS 15.0, macOS 12.0, watchOS 8.0, *)\n    @available(tvOS, unavailable)\n    internal var dragGesture: some Gesture {\n        DragGesture()\n            .updating($isActiveGesture, body: { _, state, _ in\n                state = true\n            })\n            .onChanged({ value in\n                xPosition = value.translation.width / 2.3 - (data.distance(from: data.startIndex, to: data.endIndex) == 1 ? value.translation.width * 0.2 : 0)\n                if xPosition > 0 {\n                    direction = .left\n                } else if xPosition < 0 {\n                    direction = .right\n                }\n            })\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/View/ShuffleStack+Shuffling.swift",
    "content": "import Utils\nimport SwiftUI\n\nextension ShuffleStack {\n    /// A method that mimics shuffling behaviour for the purpose of programmatic shuffling.\n    internal func performShuffling(_ direction: ShuffleDirection) {\n        self.autoShuffling = true\n        self.direction = direction\n        performSpreadingOut()\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {\n            self.performRestoring()\n        }\n    }\n    \n    /// A method that mimics shuffling behaviour of swiping view to left or right for the purpose of programmatic shuffling.\n    internal func performSpreadingOut() {\n        let maxSwipeDistance = size.width * 0.25\n        withAnimation(animation.timing(duration: 0.1)) {\n            switch direction {\n            case .left:\n                xPosition = maxSwipeDistance\n            case .right:\n                xPosition = -maxSwipeDistance\n            }\n        }\n    }\n    \n    /// A method that performs to restore content views, which have already spread out in the process of shuffling, to the original position.\n    internal func performRestoring() {\n        let midX = size.width * 0.5\n        let maxSwipeDistance = size.width * 0.25\n        if xPosition > 0 {\n            if xPosition >= maxSwipeDistance, let nextIndex = data.previousIndex(forLoop: index, offset: 1) {\n                withAnimation(animation.timing(duration: 0.15)) {\n                    xPosition = midX\n                }\n                DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {\n                    xPosition = -xPosition\n                    let previousIndex = index\n                    index = nextIndex\n                    direction = .right\n                    isLockedLeft = true\n                    let context = ShuffleContext(\n                        index: data.distance(from: data.startIndex, to: index),\n                        previousIndex: data.distance(from: data.startIndex, to: previousIndex),\n                        direction: .left\n                    )\n                    notifyListener(context: context)\n                    withAnimation(animation.timing(duration: 0.2)) {\n                        xPosition = 0\n                        isLockedLeft = false\n                        autoShuffling = false\n                    }\n                }\n            } else {\n                withAnimation(animation.timing(duration: 0.15)) {\n                    xPosition = 0\n                }\n            }\n        } else if xPosition < 0 {\n            if xPosition <= -maxSwipeDistance, let nextIndex = data.nextIndex(forLoop: index, offset: 1) {\n                withAnimation(animation.timing(duration: 0.15)) {\n                    xPosition = -midX\n                }\n                DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {\n                    xPosition = -xPosition\n                    let previousIndex = index\n                    index = nextIndex\n                    direction = .left\n                    isLockedRight = true\n                    let context = ShuffleContext(\n                        index: data.distance(from: data.startIndex, to: index),\n                        previousIndex: data.distance(from: data.startIndex, to: previousIndex),\n                        direction: .right\n                    )\n                    notifyListener(context: context)\n                    withAnimation(animation.timing(duration: 0.2)) {\n                        xPosition = 0\n                        isLockedRight = false\n                        autoShuffling = false\n                    }\n                }\n            } else {\n                withAnimation(animation.timing(duration: 0.15)) {\n                    xPosition = 0\n                }\n            }\n        }\n    }\n    \n    /// A method that notifies an listener with context value after shuffling succeeds.\n    private func notifyListener(context: ShuffleContext) {\n        shuffleContext?(context)\n    }\n    \n    /// A property that calculates translation value of swiping content views.\n    internal var translation: CGFloat {\n        size.width > 0 ? abs(xPosition) / size.width * 2 : 0\n    }\n}\n"
  },
  {
    "path": "Sources/ShuffleStack/View/ShuffleStack.swift",
    "content": "import Utils\nimport SwiftUI\n#if canImport(UtilsForTest)\nimport UtilsForTest\nimport ViewInspector\n#endif\n\n/// A stack view that provides shuffling behaviour to swipe contents to left and right.\n///\n/// ## Overview\n/// `ShuffleStack` is built on top of `ZStack` but it only renders three child views which are visible on the screen and switches data to display based on the current index. In case the data passed into the stack view is empty, there will be empty view on the screen.\n///\n/// The following example provides the simple usage of `ShuffleStack` which creates a stack of color cards with default shuffle style and animation.\n/// ```swift\n/// struct ContentView: View {\n///     let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\n///     var body: some View {\n///         ShuffleStack(\n///             colors,\n///             initialIndex: 0\n///         ) { color in\n///             color\n///                 .frame(height: 200)\n///                 .cornerRadius(16)\n///         }\n///     }\n/// }\n/// ```\n///\n/// ## Customizing default behaviours\n/// `ShuffleStack` comes with various types of modifiers to override default behaviour of the stack view so that it is easy to tailor to view with custom values such as animation, style, offset, padding and scale factor.\n///\n/// The following table shows a list of available modifiers that customizes the view.\n///\n/// Modifier | Description\n/// --- | ---\n/// ``shuffleAnimation(_:)`` | A modifer that overrides default shuffle animation of the shuffle stack view.\n/// ``shuffleStyle(_:)`` | A modifer that overrides default shuffle style of the shuffle stack view.\n/// ``shuffleOffset(_:)`` | A modifier that sets value that is used to shift the offset of the upcoming and previous content views behind the view of the current index.\n/// ``shufflePadding(_:)`` | A modifier that sets horizontal padding to the shuffle stack view.\n/// ``shuffleScale(_:)`` | A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\n/// ``shuffleDisabled(_:)`` | A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\n///\n/// ## Observing shuffle events and swiping translation\n/// `ShuffleStack` provides handy modifiers that listens shuffle events and swiping translation to perform a particular action based on those values after shuffling succeeds or while swiping stack views.\n///\n/// The following modifiers helps to observe shuffling events and translation changes.\n///\n/// Modifier | Description\n/// --- | ---\n/// ``onShuffle(_:)`` |  A modifier that listens shuffling events occurring on the shuffle stack view.\n/// ``onShuffleTranslation(_:)`` | A modifier that listens translation changes while swiping content views.\n///\n/// ## Triggering shuffling programmatically\n/// `ShuffleStack` also allows programmatic shuffling by accpecting a series of events from the upstream publisher. Whenever the publisher fires an event, it blocks user interaction on the view and performs shuffling action.\n/// \n/// Modifier | Description\n/// --- | ---\n/// ``shuffleTrigger(on:)`` | A modifier that accpets events of direction to perform programmatic shuffling.\n///\n/// ## Topics\npublic struct ShuffleStack<Data: RandomAccessCollection, StackContent: View>: View {\n    @Environment(\\.shuffleStyle) internal var style\n    @Environment(\\.shuffleAnimation) internal var animation\n    #if !os(tvOS)\n    @Environment(\\.shuffleDisabled) internal var disabled\n    #endif\n    @Environment(\\.shuffleTrigger) internal var shuffleTrigger\n    @Environment(\\.shuffleOffset) internal var offset\n    @Environment(\\.shufflePadding) internal var padding\n    @Environment(\\.shuffleScale) internal var scale\n    @Environment(\\.shuffleContext) internal var shuffleContext\n    @Environment(\\.shuffleTranslation) internal var shuffleTranslation\n    \n    @State internal var index: Data.Index\n    @State internal var xPosition: CGFloat = .zero\n    @State internal var direction: ShuffleDirection = .left\n    @State internal var isLockedLeft: Bool = false\n    @State internal var isLockedRight: Bool = false\n    @State internal var size: CGSize = .zero\n    @State internal var autoShuffling: Bool = false\n    \n    @GestureState internal var isActiveGesture: Bool = false\n    \n    internal let data: Data\n    internal let stackContent: (Data.Element, CGFloat) -> StackContent\n    \n    #if canImport(UtilsForTest)\n    internal let inspection = Inspection<Self>()\n    #endif\n    \n    public var body: some View {\n        ZStack {\n            leftContent\n            rightContent\n            contentView\n                .background {\n                    GeometryReader { proxy in\n                        Color.clear\n                            .preference(key: SizePreferenceKey.self, value: proxy.size)\n                            .onAppear {\n                                self.size = proxy.size\n                            }\n                    }\n                }\n        }\n        .frame(maxWidth: .infinity)\n        .padding(.horizontal, padding + offset)\n        .frame(minHeight: size.height)\n        .onPreferenceChange(SizePreferenceKey.self) { size in\n            if size != .zero {\n                DispatchQueue.main.async {\n                    self.size = size\n                }\n            }\n        }\n        .onReceive(shuffleTrigger) { direction in\n            guard data.distance(from: data.startIndex, to: data.endIndex) > 1 else { return }\n            if !autoShuffling && xPosition == 0 {\n                performShuffling(direction)\n            }\n        }\n        .onChange(of: xPosition) { position in\n            DispatchQueue.main.async {\n                shuffleTranslation?(abs(position) / size.width * 2)\n            }\n        }\n        .disabled(autoShuffling)\n        .onChange(of: isActiveGesture) { value in\n            if !isActiveGesture {\n                performRestoring()\n            }\n        }\n        #if canImport(UtilsForTest)\n        .onReceive(inspection.notice) {\n            self.inspection.visit(self, $0)\n        }\n        #endif\n    }\n\n    @ViewBuilder\n    var contentView: some View {\n        #if os(tvOS)\n        mainContent\n        #else\n        if disabled {\n            mainContent\n        } else {\n            mainContent\n                .gesture(dragGesture)\n        }\n        #endif\n    }\n}\n\nextension ShuffleStack {\n    /// An initializer that returns an instance of `ShuffleStack`.\n    /// - Parameters:\n    ///   - data: A collection of data that will be provided to content views through closure.\n    ///   - initialIndex: An initial index of data for which content view will be rendered first.\n    ///   - stackContent: A view builder that dynamically renders content view based on current index and data provided.\n    public init(\n        _ data: Data,\n        initialIndex: Data.Index? = nil,\n        @ViewBuilder stackContent: @escaping (Data.Element) -> StackContent\n    ) {\n        self.data = data\n        self._index = State(initialValue: initialIndex ?? data.startIndex)\n        self.stackContent = { element, _ in\n            stackContent(element)\n        }\n    }\n    \n    /// An initializer that returns an instance of `ShuffleStack` and exposes translation value to child content through view builder.\n    /// - Parameters:\n    ///   - data: A collection of data that will be provided to content views through closure.\n    ///   - initialIndex: An initial index of data for which content view will be rendered first.\n    ///   - stackContent: A view builder that dynamically renders content view based on current index and data provided. It also exposes the translation value of how much view is been dragging while shuffling.\n    public init(\n        _ data: Data,\n        initialIndex: Data.Index? =  nil,\n        @ViewBuilder stackContent: @escaping (Data.Element, CGFloat) -> StackContent\n    ) {\n        self.data = data\n        self._index = State(initialValue: initialIndex ?? data.startIndex)\n        self.stackContent = stackContent\n    }\n}\n"
  },
  {
    "path": "Sources/Utils/Extensions/RandomAccessCollection+Extension.swift",
    "content": "import Foundation\n\npublic extension RandomAccessCollection {\n    // MARK: - Loop\n    /// A method that returns the upcoming index based on the current index and offset.\n    func nextIndex(forLoop current: Index, offset: Int) -> Index? {\n        let newOffset = (distance(from: startIndex, to: current) + offset) % distance(from: startIndex, to: endIndex)\n        return  self.index(startIndex, offsetBy: newOffset, limitedBy: self.index(before: endIndex))\n    }\n    \n    /// A method that returns the previous index based on the current index and offset.\n    func previousIndex(forLoop current: Index, offset: Int) -> Index? {\n        let length = distance(from: startIndex, to: endIndex)\n        let newOffset = (length + distance(from: startIndex, to: current) - (offset % length)) % length\n        return  self.index(startIndex, offsetBy: newOffset, limitedBy: self.index(before: endIndex))\n    }\n    \n    /// A method that returns the upcoming element based on the current index and offset.\n    func nextElement(forLoop index: Index, offset: Int) -> Element? {\n        guard let index = nextIndex(forLoop: index, offset: offset) else { return nil }\n        return self[safe: index]\n    }\n    \n    /// A method that returns the previous element based on the current index and offset.\n    func previousElement(forLoop index: Index, offset: Int) -> Element? {\n        guard let index = previousIndex(forLoop: index, offset: offset) else { return nil }\n        return self[safe: index]\n    }\n    \n    // MARK: - Unloop\n    /// A method that returns the upcoming index based on the current index and offset.\n    func nextIndex(forUnloop index: Index, offset: Int) -> Index? {\n        self.index(index, offsetBy: offset, limitedBy: self.index(before: endIndex))\n    }\n    \n    /// A method that returns the previous index based on the current index and offset.\n    func previousIndex(forUnloop index: Index, offset: Int) -> Index? {\n        self.index(index, offsetBy: -offset, limitedBy: startIndex)\n    }\n    \n    /// A method that returns the upcoming element based on the current index and offset.\n    func nextElement(forUnloop index: Index, offset: Int) -> Element? {\n        guard let index = nextIndex(forUnloop: index, offset: offset) else { return nil }\n        return self[safe: index]\n    }\n    \n    /// A method that returns the previous element based on the current index and offset.\n    func previousElement(forUnloop index: Index, offset: Int) -> Element? {\n        guard let index = previousIndex(forUnloop: index, offset: offset) else { return nil }\n        return self[safe: index]\n    }\n    \n    /// A subscript that ensure safety when accessing index out of range.\n    subscript(safe index: Index) -> Element? {\n        indices.contains(index) ? self[index] : nil\n    }\n}\n"
  },
  {
    "path": "Sources/Utils/PreferenceKeys/SizePreferenceKey.swift",
    "content": "import SwiftUI\n\n/// A perference key to reveal the size of child view.\npublic struct SizePreferenceKey: PreferenceKey {\n    public typealias Value = CGSize\n\n    public static var defaultValue: Value = .zero\n\n    public static func reduce(value: inout Value, nextValue: () -> Value) { }\n}\n"
  },
  {
    "path": "Sources/UtilsForTest/Inspection.swift",
    "content": "#if canImport(ViewInspector)\nimport Combine\nimport SwiftUI\nimport ViewInspector\n\npublic final class Inspection<V> {\n    public let notice = PassthroughSubject<UInt, Never>()\n    public var callbacks: [UInt: (V) -> Void] = [:]\n    \n    public init() { }\n\n    public func visit(_ view: V, _ line: UInt) {\n        if let callback = callbacks.removeValue(forKey: line) {\n            callback(view)\n        }\n    }\n}\n\nextension Inspection: InspectionEmissary { }\n#endif\n"
  },
  {
    "path": "Tests/ShuffleItTests/CarouselStack/CarouselStackGestureTests.swift",
    "content": "import XCTest\nimport Combine\nimport SwiftUI\nimport ViewInspector\n@testable import ShuffleItForTest\n\n#if !os(tvOS)\nfinal class CarouselStackGestureTests: BaseTestCase {\n    func testCarouselStackDragGestureUpdating() throws {\n        let view = CarouselStack(colors, initialIndex: 4) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            let content = try sut.inspect().find(ViewType.ZStack.self).view(ColorView.self, 2)\n            let gesture = try content.gesture(DragGesture.self)\n            let value = DragGesture.Value(\n                time: .now,\n                location: .init(x: -sut.size.width * 0.5, y: 400),\n                startLocation: .init(x: 0, y: 400),\n                velocity: .init(dx: 0.2, dy: 0.2)\n            )\n            var state = false\n            var transaction = Transaction()\n            try gesture.callUpdating(value: value, state: &state, transaction: &transaction)\n            XCTAssertTrue(state)\n        }\n        ViewHosting.host(view: view)\n        self.wait(for: [exp], timeout: 0.2)\n    }\n    \n    func testCarouselStackDragGestureOnChangedWithRightDirection() throws {\n        let view = CarouselStack(colors, initialIndex: 4) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            let content = try sut.inspect().find(ViewType.ZStack.self).view(ColorView.self, 2)\n            let gesture = try content.gesture(DragGesture.self)\n            let value = DragGesture.Value(\n                time: .now,\n                location: .init(x: -sut.size.width, y: 400),\n                startLocation: .init(x: 0, y: 400),\n                velocity: .init(dx: 0.2, dy: 0.2)\n            )\n            try gesture.callOnChanged(value: value)\n        }\n        let exp2 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = (300 + sut.spacing * 2) / 2\n            let position = abs(sut.xPosition).truncatingRemainder(dividingBy: width)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.translation, position / width)\n        }\n        ViewHosting.host(view: view)\n        self.wait(for: [exp1, exp2], timeout: 0.3)\n    }\n    \n    func testCarouselStackDragGestureOnChangedWithLeftDirection() throws {\n        let view = CarouselStack(colors, initialIndex: 4) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            let content = try sut.inspect().find(ViewType.ZStack.self).view(ColorView.self, 2)\n            let gesture = try content.gesture(DragGesture.self)\n            let value = DragGesture.Value(\n                time: .now,\n                location: .init(x: sut.size.width * 0.5, y: 400),\n                startLocation: .init(x: 0, y: 400),\n                velocity: .init(dx: 0.2, dy: 0.2)\n            )\n            try gesture.callOnChanged(value: value)\n        }\n        let exp2 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = (300 + sut.spacing * 2) / 2\n            let position = abs(sut.xPosition).truncatingRemainder(dividingBy: width)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.translation, position / width)\n        }\n        ViewHosting.host(view: view)\n        self.wait(for: [exp1, exp2], timeout: 0.3)\n    }\n}\n#endif\n"
  },
  {
    "path": "Tests/ShuffleItTests/CarouselStack/CarouselStackShufflingTests.swift",
    "content": "import XCTest\nimport SwiftUI\nimport Combine\nimport ViewInspector\n@testable import ShuffleItForTest\n\nfinal class CarouselStackShufflingTests: BaseTestCase {\n    func testCarouselStackIncompleteLeftSliding() throws {\n        let view = CarouselStack(colors, initialIndex: 6) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2\n            XCTAssertEqual(sut.index, 6)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            XCTAssertNil(sut.rightDataElement(1))\n            sut.performMovingToMiddle()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2\n            let maxSlideDistance = sut.size.width * 0.75\n            XCTAssertEqual(sut.index, 6)\n            XCTAssertEqual(sut.xPosition, maxSlideDistance)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.xPosition = sut.size.width * 0.2\n            XCTAssertTrue(sut.xPosition < maxSlideDistance)\n            sut.performRestoring()\n        }\n        let exp3 = view.inspection.inspect(after: 0.6) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2\n            XCTAssertEqual(sut.index, 6)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(\n            view: view\n                .carouselAnimation(.easeIn),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2, exp3], timeout: 0.7)\n    }\n    \n    func testCarouselStackIncompleteRightSliding() throws {\n        let view = CarouselStack(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            sut.direction = .right\n            let width = 300 - sut.padding * 2\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            XCTAssertNil(sut.leftDataElement(1))\n            sut.performMovingToMiddle()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2\n            let maxSlideDistance = sut.size.width * 0.75\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, -maxSlideDistance)\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.xPosition = -sut.size.width * 0.2\n            XCTAssertTrue(sut.xPosition < maxSlideDistance)\n            sut.performRestoring()\n        }\n        let exp3 = view.inspection.inspect(after: 0.6) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(\n            view: view\n                .carouselAnimation(.easeInOut),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2, exp3], timeout: 0.7)\n    }\n    \n    func testCarouselStackCompleteLeftSliding() throws {\n        let view = CarouselStack(colors, initialIndex: 6) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2\n            XCTAssertEqual(sut.index, 6)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            XCTAssertNil(sut.rightDataElement(1))\n            sut.performMovingToMiddle()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2\n            let maxSlideDistance = sut.size.width * 0.75\n            XCTAssertEqual(sut.index, 6)\n            XCTAssertEqual(sut.xPosition, maxSlideDistance)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.performRestoring()\n        }\n        let exp3 = view.inspection.inspect(after: 0.7) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2\n            XCTAssertEqual(sut.index, 5)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(\n            view: view\n                .carouselAnimation(.easeIn),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2, exp3], timeout: 0.8)\n    }\n    \n    func testCarouselStackCompleteRightSliding() throws {\n        let view = CarouselStack(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2\n            sut.direction = .right\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            XCTAssertNil(sut.leftDataElement(1))\n            sut.performMovingToMiddle()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2\n            let maxSlideDistance = sut.size.width * 0.75\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, -maxSlideDistance)\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.performRestoring()\n        }\n        let exp3 = view.inspection.inspect(after: 0.7) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2\n            XCTAssertEqual(sut.index, 1)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(\n            view: view\n                .carouselAnimation(.linear),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2, exp3], timeout: 0.8)\n    }\n    \n    func testCarouselStackAutoSlidingToLeftWithContext() throws {\n        let slideTrigger = PassthroughSubject<CarouselDirection, Never>()\n        let collector = PassthroughSubject<CarouselContext, Never>()\n        let valueSpy = ValueSpy<CarouselContext>(collector.eraseToAnyPublisher())\n        let view = CarouselStack(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.15) { view in\n            let sut = try view.actualView()\n            XCTAssertTrue(sut.autoSliding)\n            XCTAssertTrue(valueSpy.values.isEmpty)\n        }\n        let exp2 = view.inspection.inspect(after: 0.7) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.index, 6)\n            let context = valueSpy.values[0]\n            XCTAssertEqual(context.direction, .left)\n            XCTAssertEqual(context.index, 6)\n            XCTAssertEqual(context.previousIndex, 0)\n        }\n        ViewHosting.host(\n            view: view\n                .carouselStyle(.infiniteScroll)\n                .carouselTrigger(on: slideTrigger)\n                .carouselAnimation(.easeOut)\n                .onCarousel({ [collector] context in\n                    collector.send(context)\n                }),\n            size: .init(width: 300, height: 800)\n        )\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.05) {\n            slideTrigger.send(.left)\n        }\n        self.wait(for: [exp1, exp2], timeout: 0.8)\n    }\n    \n    func testCarouselStackAutoSlidingToRightWithContext() throws {\n        let slideTrigger = PassthroughSubject<CarouselDirection, Never>()\n        let collector = PassthroughSubject<CarouselContext, Never>()\n        let valueSpy = ValueSpy<CarouselContext>(collector.eraseToAnyPublisher())\n        let view = CarouselStack(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.15) { view in\n            let sut = try view.actualView()\n            XCTAssertTrue(sut.autoSliding)\n            XCTAssertTrue(valueSpy.values.isEmpty)\n        }\n        let exp2 = view.inspection.inspect(after: 0.7) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.index, 1)\n            let context = valueSpy.values[0]\n            XCTAssertEqual(context.direction, .right)\n            XCTAssertEqual(context.index, 1)\n            XCTAssertEqual(context.previousIndex, 0)\n        }\n        ViewHosting.host(\n            view: view\n                .carouselStyle(.infiniteScroll)\n                .carouselTrigger(on: slideTrigger)\n                .carouselAnimation(.easeOut)\n                .onCarousel({ [collector] context in\n                    collector.send(context)\n                }),\n            size: .init(width: 300, height: 800)\n        )\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.05) {\n            slideTrigger.send(.right)\n        }\n        self.wait(for: [exp1, exp2], timeout: 0.8)\n    }\n    \n    func testInfiniteCarouselStackAutoSlidingCancelled() throws {\n        let slideTrigger = PassthroughSubject<CarouselDirection, Never>()\n        let collector = PassthroughSubject<CarouselContext, Never>()\n        let valueSpy = ValueSpy<CarouselContext>(collector.eraseToAnyPublisher())\n        let view = CarouselStack(colors.dropLast(6), initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect(after: 0.15) { view in\n            let sut = try view.actualView()\n            XCTAssertFalse(sut.autoSliding)\n            XCTAssertTrue(valueSpy.values.isEmpty)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.index, 0)\n        }\n        ViewHosting.host(\n            view: view\n                .carouselStyle(.infiniteScroll)\n                .carouselTrigger(on: slideTrigger)\n                .carouselAnimation(.easeOut)\n                .onCarousel({ [collector] context in\n                    collector.send(context)\n                }),\n            size: .init(width: 300, height: 800)\n        )\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.05) {\n            slideTrigger.send(.left)\n            slideTrigger.send(.left)\n        }\n        self.wait(for: [exp], timeout: 0.8)\n    }\n    \n    func testFiniteCarouselStackAutoSlidingCancelled() throws {\n        let slideTrigger = PassthroughSubject<CarouselDirection, Never>()\n        let collector = PassthroughSubject<CarouselContext, Never>()\n        let valueSpy = ValueSpy<CarouselContext>(collector.eraseToAnyPublisher())\n        let view = CarouselStack(colors.dropLast(6), initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect(after: 0.15) { view in\n            let sut = try view.actualView()\n            XCTAssertFalse(sut.autoSliding)\n            XCTAssertTrue(valueSpy.values.isEmpty)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.index, 0)\n        }\n        ViewHosting.host(\n            view: view\n                .carouselStyle(.finiteScroll)\n                .carouselTrigger(on: slideTrigger)\n                .carouselAnimation(.easeOut)\n                .onCarousel({ [collector] context in\n                    collector.send(context)\n                }),\n            size: .init(width: 300, height: 800)\n        )\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.05) {\n            slideTrigger.send(.left)\n            slideTrigger.send(.right)\n        }\n        self.wait(for: [exp], timeout: 0.8)\n    }\n}\n"
  },
  {
    "path": "Tests/ShuffleItTests/CarouselStack/CarouselStackTests.swift",
    "content": "import XCTest\nimport SwiftUI\nimport ViewInspector\n@testable import ShuffleItForTest\n\nfinal class CarouselStackTests: BaseTestCase {\n    func testCarouselStackEnvironmentValues() throws {\n        let view = CarouselStack(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.animation, .easeInOut)\n            XCTAssertEqual(sut.style, .infiniteScroll)\n            XCTAssertEqual(sut.spacing, 20)\n            XCTAssertEqual(sut.scale, 0.9)\n            XCTAssertEqual(sut.padding, 20)\n            #if !os(tvOS)\n            XCTAssertEqual(sut.disabled, true)\n            #endif\n            XCTAssertNotNil(sut.carouselContext)\n            XCTAssertNotNil(sut.translation)\n        }\n        ViewHosting.host(\n            view: view\n                .carouselScale(0.9)\n                .carouselSpacing(20)\n                .carouselPadding(20)\n                #if !os(tvOS)\n                .carouselDisabled(true)\n                #endif\n                .carouselStyle(.infiniteScroll)\n                .carouselAnimation(.easeInOut)\n                .onCarousel({ _ in })\n                .onCarouselTranslation({ _ in })\n        )\n        self.wait(for: [exp], timeout: 0.2)\n    }\n    \n    func testCarouselStackEnvironmentValuesByDefault() throws {\n        let view = CarouselStack(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.animation, .linear)\n            XCTAssertEqual(sut.style, .finiteScroll)\n            XCTAssertEqual(sut.spacing, 10)\n            XCTAssertEqual(sut.scale, 1)\n            XCTAssertEqual(sut.padding, 20)\n            #if !os(tvOS)\n            XCTAssertEqual(sut.disabled, false)\n            #endif\n            XCTAssertNil(sut.carouselContext)\n            XCTAssertNil(sut.carouselTranslation)\n        }\n        ViewHosting.host(view: view)\n        self.wait(for: [exp], timeout: 0.2)\n    }\n    \n    func testCarouselStackStates() throws {\n        let view = CarouselStack(colors) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(view: view, size: .init(width: 300, height: 800))\n        self.wait(for: [exp], timeout: 0.5)\n    }\n\n    func testCarouselStackStatesWithButton() throws {\n        let view = CarouselStack(colors) { color in\n            HStack {\n                Button(action: { }) {\n                    Text(\"Button\")\n                }\n            }\n            .frame(maxWidth: .infinity)\n            .frame(height: 200)\n            .background(color)\n        }\n        let exp = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoSliding, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(view: view, size: .init(width: 300, height: 800))\n        self.wait(for: [exp], timeout: 0.5)\n    }\n    \n    #if !os(tvOS)\n    func testCarouselStackDisabled() throws {\n        let view = CarouselStack(colors, initialIndex: 0) { color, _ in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.style, .finiteScroll)\n            let content = try sut.inspect().find(ViewType.ZStack.self)\n            XCTAssertThrowsError(try content.gesture(DragGesture.self))\n        }\n        ViewHosting.host(\n            view: view\n                .carouselDisabled(true)\n                .carouselStyle(.finiteScroll),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp], timeout: 0.3)\n    }\n    #endif\n}\n"
  },
  {
    "path": "Tests/ShuffleItTests/ShuffleDeck/ShuffleDeckGestureTests.swift",
    "content": "import XCTest\nimport Combine\nimport SwiftUI\nimport ViewInspector\n@testable import ShuffleItForTest\n\n#if !os(tvOS)\nfinal class ShuffleDeckGestureTests: BaseTestCase {\n    func testShuffleDeckDragGestureUpdating() throws {\n        let view = ShuffleDeck(colors, initialIndex: 4) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            let index = try sut.inspect().find(ViewType.ZStack.self).count - 1\n            let main = try sut.inspect().find(ViewType.ZStack.self).view(ColorView.self, index)\n            let gesture = try main.gesture(DragGesture.self)\n            let value = DragGesture.Value(\n                time: .now,\n                location: .init(x: -sut.size.width * 0.3, y: 400),\n                startLocation: .init(x: 0, y: 400),\n                velocity: .init(dx: 0.2, dy: 0.2)\n            )\n            var state = false\n            var transaction = Transaction()\n            try gesture.callUpdating(value: value, state: &state, transaction: &transaction)\n            XCTAssertTrue(state)\n        }\n        ViewHosting.host(\n            view: view\n            .shuffleDeckAnimation(.easeIn),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1], timeout: 0.2)\n    }\n\n    func testShuffleDeckDragGestureOnChangedWithRightDirection() throws {\n        let view = ShuffleDeck(colors, initialIndex: 4) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            let index = try sut.inspect().find(ViewType.ZStack.self).count - 1\n            let main = try sut.inspect().find(ViewType.ZStack.self).view(ColorView.self, index)\n            let gesture = try main.gesture(DragGesture.self)\n            let value = DragGesture.Value(\n                time: .now,\n                location: .init(x: -sut.size.width * 0.3, y: 400),\n                startLocation: .init(x: 0, y: 400),\n                velocity: .init(dx: 0.2, dy: 0.2)\n            )\n            try gesture.callOnChanged(value: value)\n        }\n        let exp2 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.translation, abs(sut.xPosition) / 300 * 2)\n        }\n        ViewHosting.host(\n            view: view\n            .shuffleAnimation(.easeIn),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2], timeout: 0.3)\n    }\n\n    func testShuffleDeckDragGestureOnChangedWithLeftDirection() throws {\n        let view = ShuffleDeck(colors, initialIndex: 4) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            let index = try sut.inspect().find(ViewType.ZStack.self).count - 1\n            let main = try sut.inspect().find(ViewType.ZStack.self).view(ColorView.self, index)\n            let gesture = try main.gesture(DragGesture.self)\n            let value = DragGesture.Value(\n                time: .now,\n                location: .init(x: sut.size.width * 0.3, y: 400),\n                startLocation: .init(x: 0, y: 400),\n                velocity: .init(dx: 0.2, dy: 0.2)\n            )\n            try gesture.callOnChanged(value: value)\n        }\n        let exp2 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.translation, abs(sut.xPosition) / 300 * 2)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleAnimation(.easeIn),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2], timeout: 0.3)\n    }\n}\n#endif\n"
  },
  {
    "path": "Tests/ShuffleItTests/ShuffleDeck/ShuffleDeckSlidingTests.swift",
    "content": "import XCTest\nimport SwiftUI\nimport Combine\nimport ViewInspector\n@testable import ShuffleItForTest\n\nfinal class ShuffleDeckSlidingTests: BaseTestCase {\n    func testShuffleDeckIncompleteLeftShuffling() throws {\n        let view = ShuffleDeck(colors, initialIndex: 6) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.index, 6)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: 300, height: 200))\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            XCTAssertNil(sut.rightDataElement(1))\n            sut.performSpreadingOut()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let maxSlideDistance = sut.size.width * 0.25\n            XCTAssertEqual(sut.index, 6)\n            XCTAssertEqual(sut.xPosition, maxSlideDistance)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.size, .init(width: 300, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.xPosition = sut.size.width * 0.2\n            XCTAssertTrue(sut.xPosition < maxSlideDistance)\n            sut.performRestoring()\n        }\n        let exp3 = view.inspection.inspect(after: 0.6) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.index, 6)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: 300, height: 200))\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleAnimation(.easeIn),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2, exp3], timeout: 0.7)\n    }\n\n    func testShuffleDeckIncompleteRightShuffling() throws {\n        let view = ShuffleDeck(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            sut.direction = .right\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: 300, height: 200))\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            XCTAssertNil(sut.leftDataElement(1))\n            sut.performSpreadingOut()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let maxSlideDistance = sut.size.width * 0.25\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, -maxSlideDistance)\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.size, .init(width: 300, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.xPosition = -sut.size.width * 0.2\n            XCTAssertTrue(sut.xPosition < maxSlideDistance)\n            sut.performRestoring()\n        }\n        let exp3 = view.inspection.inspect(after: 0.6) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: 300, height: 200))\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(\n            view: view\n                .carouselAnimation(.easeInOut),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2, exp3], timeout: 0.7)\n    }\n\n    func testShuffleDeckCompleteLeftShuffling() throws {\n        let view = ShuffleDeck(colors, initialIndex: 6) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.index, 6)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: 300, height: 200))\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            XCTAssertNil(sut.rightDataElement(1))\n            sut.performSpreadingOut()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let maxSlideDistance = sut.size.width * 0.25\n            XCTAssertEqual(sut.index, 6)\n            XCTAssertEqual(sut.xPosition, maxSlideDistance)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.size, .init(width: 300, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.performRestoring()\n        }\n        let exp3 = view.inspection.inspect(after: 0.7) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.index, 5)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: 300, height: 200))\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(\n            view: view\n                .carouselAnimation(.easeIn),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2, exp3], timeout: 0.8)\n    }\n\n    func testShuffleDeckCompleteRightShuffling() throws {\n        let view = ShuffleDeck(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            sut.direction = .right\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: 300, height: 200))\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            XCTAssertNil(sut.leftDataElement(1))\n            sut.performSpreadingOut()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let maxSlideDistance = sut.size.width * 0.25\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, -maxSlideDistance)\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.size, .init(width: 300, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.performRestoring()\n        }\n        let exp3 = view.inspection.inspect(after: 0.7) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.index, 1)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.size, .init(width: 300, height: 200))\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(\n            view: view\n                .carouselAnimation(.linear),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2, exp3], timeout: 0.8)\n    }\n\n    func testShuffleDeckAutoShufflingToLeftWithContext() throws {\n        let shuffleTrigger = PassthroughSubject<ShuffleDeckDirection, Never>()\n        let collector = PassthroughSubject<ShuffleDeckContext, Never>()\n        let valueSpy = ValueSpy<ShuffleDeckContext>(collector.eraseToAnyPublisher())\n        let view = ShuffleDeck(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.15) { view in\n            let sut = try view.actualView()\n            XCTAssertTrue(sut.autoShuffling)\n            XCTAssertTrue(valueSpy.values.isEmpty)\n        }\n        let exp2 = view.inspection.inspect(after: 0.7) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.index, 6)\n            let context = valueSpy.values[0]\n            XCTAssertEqual(context.direction, .left)\n            XCTAssertEqual(context.index, 6)\n            XCTAssertEqual(context.previousIndex, 0)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleDeckStyle(.infiniteShuffle)\n                .shuffleDeckTrigger(on: shuffleTrigger)\n                .shuffleDeckAnimation(.easeOut)\n                .onShuffleDeck { [collector] context in\n                    collector.send(context)\n                },\n            size: .init(width: 300, height: 800)\n        )\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.05) {\n            shuffleTrigger.send(.left)\n        }\n        self.wait(for: [exp1, exp2], timeout: 0.8)\n    }\n\n    func testShuffleDeckAutoShufflingToRightWithContext() throws {\n        let shuffleTrigger = PassthroughSubject<ShuffleDeckDirection, Never>()\n        let collector = PassthroughSubject<ShuffleDeckContext, Never>()\n        let valueSpy = ValueSpy<ShuffleDeckContext>(collector.eraseToAnyPublisher())\n        let view = ShuffleDeck(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.15) { view in\n            let sut = try view.actualView()\n            XCTAssertTrue(sut.autoShuffling)\n            XCTAssertTrue(valueSpy.values.isEmpty)\n        }\n        let exp2 = view.inspection.inspect(after: 0.7) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.index, 1)\n            let context = valueSpy.values[0]\n            XCTAssertEqual(context.direction, .right)\n            XCTAssertEqual(context.index, 1)\n            XCTAssertEqual(context.previousIndex, 0)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleDeckStyle(.infiniteShuffle)\n                .shuffleDeckTrigger(on: shuffleTrigger)\n                .shuffleDeckAnimation(.easeOut)\n                .onShuffleDeck { [collector] context in\n                    collector.send(context)\n                },\n            size: .init(width: 300, height: 800)\n        )\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.05) {\n            shuffleTrigger.send(.right)\n        }\n        self.wait(for: [exp1, exp2], timeout: 0.8)\n    }\n\n    func testInfiniteShuffleDeckAutoSlidingCancelled() throws {\n        let shuffleTrigger = PassthroughSubject<ShuffleDeckDirection, Never>()\n        let collector = PassthroughSubject<ShuffleDeckContext, Never>()\n        let valueSpy = ValueSpy<ShuffleDeckContext>(collector.eraseToAnyPublisher())\n        let view = ShuffleDeck(colors.dropLast(6), initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect(after: 0.15) { view in\n            let sut = try view.actualView()\n            XCTAssertFalse(sut.autoShuffling)\n            XCTAssertTrue(valueSpy.values.isEmpty)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.index, 0)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleDeckStyle(.infiniteShuffle)\n                .shuffleDeckTrigger(on: shuffleTrigger)\n                .shuffleDeckAnimation(.easeOut)\n                .onShuffleDeck { [collector] context in\n                    collector.send(context)\n                },\n            size: .init(width: 300, height: 800)\n        )\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.05) {\n            shuffleTrigger.send(.left)\n            shuffleTrigger.send(.left)\n        }\n        self.wait(for: [exp], timeout: 0.8)\n    }\n\n    func testFiniteShuffleDeckAutoSlidingCancelled() throws {\n        let shuffleTrigger = PassthroughSubject<ShuffleDeckDirection, Never>()\n        let collector = PassthroughSubject<ShuffleDeckContext, Never>()\n        let valueSpy = ValueSpy<ShuffleDeckContext>(collector.eraseToAnyPublisher())\n        let view = ShuffleDeck(colors.dropLast(6), initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect(after: 0.15) { view in\n            let sut = try view.actualView()\n            XCTAssertFalse(sut.autoShuffling)\n            XCTAssertTrue(valueSpy.values.isEmpty)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.index, 0)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleDeckStyle(.infiniteShuffle)\n                .shuffleDeckTrigger(on: shuffleTrigger)\n                .shuffleDeckAnimation(.easeOut)\n                .onShuffleDeck { [collector] context in\n                    collector.send(context)\n                },\n            size: .init(width: 300, height: 800)\n        )\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.05) {\n            shuffleTrigger.send(.left)\n            shuffleTrigger.send(.right)\n        }\n        self.wait(for: [exp], timeout: 0.8)\n    }\n}\n"
  },
  {
    "path": "Tests/ShuffleItTests/ShuffleDeck/ShuffleDeckTests.swift",
    "content": "import XCTest\nimport SwiftUI\nimport ViewInspector\n@testable import ShuffleItForTest\n\nfinal class ShuffleDeckTests: BaseTestCase {\n    func testShuffleDeckEnvironmentValues() throws {\n        let view = ShuffleDeck(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.animation, .easeInOut)\n            XCTAssertEqual(sut.style, .infiniteShuffle)\n            XCTAssertEqual(round(sut.scale * 100) / 100, 0.08)\n            #if !os(tvOS)\n            XCTAssertEqual(sut.disabled, true)\n            #endif\n            XCTAssertNotNil(sut.shuffleDeckContext)\n            XCTAssertNotNil(sut.translation)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleDeckScale(0.8)\n                .shuffleDeckStyle(.infiniteShuffle)\n                .shuffleDeckAnimation(.easeInOut)\n                #if !os(tvOS)\n                .shuffleDeckDisabled(true)\n                #endif\n                .onShuffleDeck { _ in }\n                .onShuffleDeckTranslation { _ in }\n        )\n        self.wait(for: [exp], timeout: 0.2)\n    }\n\n    func testShuffleDeckStates() throws {\n        let view = ShuffleDeck(colors) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(view: view, size: .init(width: 300, height: 800))\n        self.wait(for: [exp], timeout: 0.5)\n    }\n\n    #if !os(tvOS)\n    func testShuffleDeckDisabled() throws {\n        let view = ShuffleDeck(colors, initialIndex: 0) { color, _ in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.style, .finiteShuffle)\n            let index = try sut.inspect().find(ViewType.ZStack.self).count - 1\n            let content = try sut.inspect().find(ViewType.ZStack.self).view(ColorView.self, index)\n            XCTAssertThrowsError(try content.gesture(DragGesture.self))\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleDeckDisabled(true)\n                .shuffleDeckStyle(.finiteShuffle),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp], timeout: 0.3)\n    }\n    #endif\n}\n"
  },
  {
    "path": "Tests/ShuffleItTests/ShuffleStack/ShuffleStackGestureTests.swift",
    "content": "import XCTest\nimport Combine\nimport SwiftUI\nimport ViewInspector\n@testable import ShuffleItForTest\n\n#if !os(tvOS)\nfinal class ShuffleStackGestureTests: BaseTestCase {\n    \n    func testShuffleStackDragGestureUpdating() throws {\n        let view = ShuffleStack(colors, initialIndex: 4) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            let main = try sut.inspect().find(ViewType.ZStack.self).view(ColorView.self, 2)\n            let gesture = try main.gesture(DragGesture.self)\n            let value = DragGesture.Value(\n                time: .now,\n                location: .init(x: -sut.size.width * 0.3, y: 400),\n                startLocation: .init(x: 0, y: 400),\n                velocity: .init(dx: 0.2, dy: 0.2)\n            )\n            var state = false\n            var transaction = Transaction()\n            try gesture.callUpdating(value: value, state: &state, transaction: &transaction)\n            XCTAssertTrue(state)\n        }\n        ViewHosting.host(\n            view: view\n            .shuffleAnimation(.easeIn),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1], timeout: 0.2)\n    }\n    \n    func testShuffleStackDragGestureOnChangedWithRightDirection() throws {\n        let view = ShuffleStack(colors, initialIndex: 4) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            let main = try sut.inspect().find(ViewType.ZStack.self).view(ColorView.self, 2)\n            let gesture = try main.gesture(DragGesture.self)\n            let value = DragGesture.Value(\n                time: .now,\n                location: .init(x: -sut.size.width * 0.3, y: 400),\n                startLocation: .init(x: 0, y: 400),\n                velocity: .init(dx: 0.2, dy: 0.2)\n            )\n            try gesture.callOnChanged(value: value)\n        }\n        let exp2 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.translation, abs(sut.xPosition) / width * 2)\n        }\n        ViewHosting.host(\n            view: view\n            .shuffleAnimation(.easeIn),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2], timeout: 0.3)\n    }\n    \n    func testShuffleStackDragGestureOnChangedWithLeftDirection() throws {\n        let view = ShuffleStack(colors, initialIndex: 4) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            let main = try sut.inspect().find(ViewType.ZStack.self).view(ColorView.self, 2)\n            let gesture = try main.gesture(DragGesture.self)\n            let value = DragGesture.Value(\n                time: .now,\n                location: .init(x: sut.size.width * 0.3, y: 400),\n                startLocation: .init(x: 0, y: 400),\n                velocity: .init(dx: 0.2, dy: 0.2)\n            )\n            try gesture.callOnChanged(value: value)\n        }\n        let exp2 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.translation, abs(sut.xPosition) / width * 2)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleAnimation(.easeIn),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2], timeout: 0.3)\n    }\n}\n#endif\n"
  },
  {
    "path": "Tests/ShuffleItTests/ShuffleStack/ShuffleStackShufflingTests.swift",
    "content": "import XCTest\nimport Combine\nimport SwiftUI\nimport ViewInspector\n@testable import ShuffleItForTest\n\nfinal class ShuffleStackShufflingTests: BaseTestCase {\n    \n    func testShuffleStackSpreadingOut() throws {\n        let view = ShuffleStack(colors, initialIndex: 4) { color, _ in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            XCTAssertEqual(sut.index, 4)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.performSpreadingOut()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            let maxSwipeDistance = sut.size.width * 0.25\n            XCTAssertEqual(sut.index, 4)\n            XCTAssertEqual(sut.xPosition, maxSwipeDistance)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.direction = .right\n            sut.performSpreadingOut()\n        }\n        let exp3 = view.inspection.inspect(after: 0.55) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            let maxSwipeDistance = -sut.size.width * 0.25\n            XCTAssertEqual(sut.index, 4)\n            XCTAssertEqual(sut.xPosition, maxSwipeDistance)\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(view: view, size: .init(width: 300, height: 800))\n        self.wait(for: [exp1, exp2, exp3], timeout: 0.7)\n    }\n    \n    func testShuffleStackIncompleteLeftShuffling() throws {\n        let view = ShuffleStack(colors, initialIndex: 4) { color, _ in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            XCTAssertEqual(sut.index, 4)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.performSpreadingOut()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            let maxSwipeDistance = sut.size.width * 0.25\n            XCTAssertEqual(sut.index, 4)\n            XCTAssertEqual(sut.xPosition, maxSwipeDistance)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.xPosition = sut.size.width * 0.2\n            XCTAssertTrue(sut.xPosition < maxSwipeDistance)\n            sut.performRestoring()\n        }\n        let exp3 = view.inspection.inspect(after: 0.6) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            XCTAssertEqual(sut.index, 4)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleAnimation(.linear),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2, exp3], timeout: 0.7)\n    }\n    \n    func testShuffleStackIncompleteRightShuffling() throws {\n        let view = ShuffleStack(colors, initialIndex: 4) { color, _ in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            sut.direction = .right\n            XCTAssertEqual(sut.index, 4)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.performSpreadingOut()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            let maxSwipeDistance = -sut.size.width * 0.25\n            XCTAssertEqual(sut.index, 4)\n            XCTAssertEqual(sut.xPosition, maxSwipeDistance)\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.xPosition = -sut.size.width * 0.2\n            XCTAssertTrue(sut.xPosition > maxSwipeDistance)\n            sut.performRestoring()\n        }\n        let exp3 = view.inspection.inspect(after: 0.6) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            XCTAssertEqual(sut.index, 4)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(\n            view: view\n            .shuffleAnimation(.easeIn),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2, exp3], timeout: 0.7)\n    }\n    \n    func testShuffleStackCompleteLeftShuffling() throws {\n        let view = ShuffleStack(colors, initialIndex: 4) { color, _ in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            XCTAssertEqual(sut.index, 4)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.performSpreadingOut()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            let maxSwipeDistance = sut.size.width * 0.25\n            XCTAssertEqual(sut.index, 4)\n            XCTAssertEqual(sut.xPosition, maxSwipeDistance)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.performRestoring()\n        }\n        let exp3 = view.inspection.inspect(after: 0.8) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            XCTAssertEqual(sut.index, 3)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(\n            view: view.shuffleAnimation(.easeOut),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2, exp3], timeout: 1)\n    }\n    \n    func testShuffleStackCompleteRightShuffling() throws {\n        let view = ShuffleStack(colors, initialIndex: 5) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            sut.direction = .right\n            XCTAssertEqual(sut.index, 5)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.performSpreadingOut()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            let maxSwipeDistance = -sut.size.width * 0.25\n            XCTAssertEqual(sut.index, 5)\n            XCTAssertEqual(sut.xPosition, maxSwipeDistance)\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n            sut.performRestoring()\n        }\n        let exp3 = view.inspection.inspect(after: 0.8) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            XCTAssertEqual(sut.index, 6)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleAnimation(.easeIn),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2, exp3], timeout: 1)\n    }\n    \n    func testShuffleStackAutoShufflingToRightWithContext() throws {\n        let shuffleTrigger = PassthroughSubject<ShuffleDirection, Never>()\n        let collector = PassthroughSubject<ShuffleContext, Never>()\n        let valueSpy = ValueSpy<ShuffleContext>(collector.eraseToAnyPublisher())\n        let view = ShuffleStack(colors, initialIndex: 6) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.15) { view in\n            let sut = try view.actualView()\n            XCTAssertTrue(sut.autoShuffling)\n            XCTAssertTrue(valueSpy.values.isEmpty)\n        }\n        let exp2 = view.inspection.inspect(after: 0.7) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.index, 0)\n            let context = valueSpy.values[0]\n            XCTAssertEqual(context.direction, .right)\n            XCTAssertEqual(context.index, 0)\n            XCTAssertEqual(context.previousIndex, 6)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleAnimation(.easeInOut)\n                .shuffleTrigger(on: shuffleTrigger)\n                .onShuffle({ [collector] context in\n                    collector.send(context)\n                }),\n            size: .init(width: 300, height: 800)\n        )\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.05) {\n            shuffleTrigger.send(.right)\n        }\n        self.wait(for: [exp1, exp2], timeout: 0.8)\n    }\n    \n    func testShuffleStackAutoShufflingToLeftWithContext() throws {\n        let shuffleTrigger = PassthroughSubject<ShuffleDirection, Never>()\n        let collector = PassthroughSubject<ShuffleContext, Never>()\n        let valueSpy = ValueSpy<ShuffleContext>(collector.eraseToAnyPublisher())\n        let view = ShuffleStack(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.15) { view in\n            let sut = try view.actualView()\n            XCTAssertTrue(sut.autoShuffling)\n            XCTAssertTrue(valueSpy.values.isEmpty)\n        }\n        let exp2 = view.inspection.inspect(after: 0.7) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.direction, .right)\n            XCTAssertEqual(sut.index, 6)\n            let context = valueSpy.values[0]\n            XCTAssertEqual(context.direction, .left)\n            XCTAssertEqual(context.index, 6)\n            XCTAssertEqual(context.previousIndex, 0)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleTrigger(on: shuffleTrigger)\n                .onShuffle({ [collector] context in\n                    collector.send(context)\n                }),\n            size: .init(width: 300, height: 800)\n        )\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.05) {\n            shuffleTrigger.send(.left)\n        }\n        self.wait(for: [exp1, exp2], timeout: 0.8)\n    }\n}\n"
  },
  {
    "path": "Tests/ShuffleItTests/ShuffleStack/ShuffleStackTests.swift",
    "content": "import XCTest\nimport Combine\nimport SwiftUI\nimport ViewInspector\n@testable import ShuffleItForTest\n\nfinal class ShuffleStackTests: BaseTestCase {\n    \n    func testShuffleStackEnvironmentValues() throws {\n        let view = ShuffleStack(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.animation, .easeInOut)\n            XCTAssertEqual(sut.style, .rotateIn)\n            XCTAssertEqual(sut.offset, 20)\n            XCTAssertEqual(sut.scale, 0.92)\n            XCTAssertEqual(sut.padding, 20)\n            #if !os(tvOS)\n            XCTAssertEqual(sut.disabled, true)\n            #endif\n            XCTAssertNotNil(sut.shuffleContext)\n            XCTAssertNotNil(sut.translation)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleScale(0.2)\n                .shuffleOffset(20)\n                .shufflePadding(20)\n                #if !os(tvOS)\n                .shuffleDisabled(true)\n                #endif\n                .shuffleStyle(.rotateIn)\n                .shuffleAnimation(.easeInOut)\n                .onShuffle({ _ in })\n                .onShuffleTranslation({ _ in })\n        )\n        self.wait(for: [exp], timeout: 0.2)\n    }\n    \n    func testShuffleStackEnvironmentValuesByDefault() throws {\n        let view = ShuffleStack(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.animation, .linear)\n            XCTAssertEqual(sut.style, .slide)\n            XCTAssertEqual(sut.offset, 15)\n            XCTAssertEqual(sut.scale, 0.95)\n            XCTAssertEqual(sut.padding, 15)\n            #if !os(tvOS)\n            XCTAssertEqual(sut.disabled, false)\n            #endif\n            XCTAssertNil(sut.shuffleContext)\n            XCTAssertNil(sut.shuffleTranslation)\n        }\n        ViewHosting.host(view: view)\n        self.wait(for: [exp], timeout: 0.2)\n    }\n    \n    func testShuffleStackStates() throws {\n        let view = ShuffleStack(colors) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect(after: 0.2) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            XCTAssertEqual(sut.index, 0)\n            XCTAssertEqual(sut.xPosition, 0)\n            XCTAssertEqual(sut.direction, .left)\n            XCTAssertEqual(sut.isLockedLeft, false)\n            XCTAssertEqual(sut.isLockedRight, false)\n            XCTAssertEqual(sut.size, .init(width: width, height: 200))\n            XCTAssertEqual(sut.autoShuffling, false)\n            XCTAssertEqual(sut.isActiveGesture, false)\n        }\n        ViewHosting.host(view: view, size: .init(width: 300, height: 800))\n        self.wait(for: [exp], timeout: 0.5)\n    }\n    \n    func testShuffleStackSlideStyleLayout() throws {\n        let view = ShuffleStack(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.style, .slide)\n            let zStack = try sut.inspect().find(ViewType.ZStack.self)\n            XCTAssertEqual(try zStack.padding().leading, 30)\n            XCTAssertEqual(try zStack.padding().trailing, 30)\n            XCTAssertEqual(try zStack.padding().top, 0)\n            XCTAssertEqual(try zStack.padding().bottom, 0)\n            XCTAssertEqual(try zStack.flexFrame().minHeight, 200)\n            XCTAssertEqual(try zStack.flexFrame().maxWidth, .infinity)\n            \n            let leftContent = try zStack.view(ColorView.self, 0)\n            let rightContent = try zStack.view(ColorView.self, 1)\n            let mainContent = try zStack.view(ColorView.self, 2)\n\n            let geometryReader = try mainContent.background().find(ViewType.GeometryReader.self)\n            XCTAssertEqual(try geometryReader.find(ViewType.Color.self).value(), .clear)\n            \n            XCTAssertEqual(try leftContent.offset().width, -15)\n            XCTAssertEqual(try leftContent.scaleEffect().width, 0.95)\n            XCTAssertEqual(try leftContent.scaleEffectAnchor(), .leading)\n            XCTAssertEqual(try leftContent.zIndex(), 3)\n            \n            XCTAssertEqual(try rightContent.offset().width, 15)\n            XCTAssertEqual(try rightContent.scaleEffect().width, 0.95)\n            XCTAssertEqual(try rightContent.scaleEffectAnchor(), .trailing)\n            XCTAssertEqual(try rightContent.zIndex(), 1)\n            \n            XCTAssertEqual(try mainContent.offset().width, 0)\n            XCTAssertEqual(try mainContent.zIndex(), 4)\n            sut.performSpreadingOut()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            let maxSwipeDistance = width * 0.25\n            XCTAssertEqual(sut.style, .slide)\n            XCTAssertEqual(sut.xPosition, maxSwipeDistance)\n            let group = try sut.inspect().find(ViewType.ZStack.self)\n            let leftContent = try group.view(ColorView.self, 0)\n            let rightContent = try group.view(ColorView.self, 1)\n            let mainContent = try group.view(ColorView.self, 2)\n            \n            XCTAssertEqual(try leftContent.offset().width, -15 - maxSwipeDistance)\n            XCTAssertEqual(try leftContent.scaleEffect().width, 0.95 + (maxSwipeDistance / width * 0.01))\n            XCTAssertEqual(try leftContent.scaleEffectAnchor(), .leading)\n            XCTAssertEqual(try leftContent.zIndex(), 3)\n            \n            XCTAssertEqual(try rightContent.offset().width, 15)\n            XCTAssertEqual(try rightContent.scaleEffect().width, 0.95)\n            XCTAssertEqual(try rightContent.scaleEffectAnchor(), .trailing)\n            XCTAssertEqual(try rightContent.zIndex(), 1)\n            \n            XCTAssertEqual(try mainContent.offset().width, maxSwipeDistance)\n            XCTAssertEqual(try mainContent.zIndex(), 4)\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleStyle(.slide),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2], timeout: 0.8)\n    }\n    \n    func testShuffleStackRotateInStyleLayout() throws {\n        let view = ShuffleStack(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.style, .rotateIn)\n            let zStack = try sut.inspect().find(ViewType.ZStack.self)\n            XCTAssertEqual(try zStack.padding().leading, 30)\n            XCTAssertEqual(try zStack.padding().trailing, 30)\n            XCTAssertEqual(try zStack.padding().top, 0)\n            XCTAssertEqual(try zStack.padding().bottom, 0)\n            XCTAssertEqual(try zStack.flexFrame().minHeight, 200)\n            XCTAssertEqual(try zStack.flexFrame().maxWidth, .infinity)\n            \n            let leftContent = try zStack.view(ColorView.self, 0)\n            let rightContent = try zStack.view(ColorView.self, 1)\n            let mainContent = try zStack.view(ColorView.self, 2)\n\n            let geometryReader = try mainContent.background().find(ViewType.GeometryReader.self)\n            XCTAssertEqual(try geometryReader.find(ViewType.Color.self).value(), .clear)\n            \n            XCTAssertEqual(try leftContent.offset().width, -15)\n            XCTAssertEqual(try leftContent.scaleEffect().width, 0.95)\n            XCTAssertEqual(try leftContent.scaleEffectAnchor(), .leading)\n            XCTAssertEqual(try leftContent.rotation3D().axis.y, 1)\n            XCTAssertEqual(try leftContent.rotation3D().angle, .zero)\n            XCTAssertEqual(try leftContent.zIndex(), 3)\n            \n            XCTAssertEqual(try rightContent.offset().width, 15)\n            XCTAssertEqual(try rightContent.scaleEffect().width, 0.95)\n            XCTAssertEqual(try rightContent.scaleEffectAnchor(), .trailing)\n            XCTAssertEqual(try rightContent.rotation3D().axis.y, 1)\n            XCTAssertEqual(try rightContent.rotation3D().angle, .zero)\n            XCTAssertEqual(try rightContent.zIndex(), 1)\n            \n            XCTAssertEqual(try mainContent.offset().width, 0)\n            XCTAssertEqual(try mainContent.zIndex(), 4)\n            XCTAssertEqual(try mainContent.rotation3D().axis.y, 1)\n            XCTAssertEqual(try mainContent.rotation3D().angle, .zero)\n            sut.direction = .right\n            sut.performSpreadingOut()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            let maxSwipeDistance = -width * 0.25\n            XCTAssertEqual(sut.style, .rotateIn)\n            XCTAssertEqual(sut.xPosition, maxSwipeDistance)\n            let zStack = try sut.inspect().find(ViewType.ZStack.self)\n            let leftContent = try zStack.view(ColorView.self, 0)\n            let rightContent = try zStack.view(ColorView.self, 1)\n            let mainContent = try zStack.view(ColorView.self, 2)\n            \n            XCTAssertEqual(try leftContent.offset().width, -15)\n            XCTAssertEqual(try leftContent.scaleEffect().width, 0.95)\n            XCTAssertEqual(try leftContent.scaleEffectAnchor(), .leading)\n            XCTAssertEqual(try leftContent.rotation3D().axis.y, 1)\n            XCTAssertEqual(try leftContent.rotation3D().angle, .zero)\n            XCTAssertEqual(try leftContent.zIndex(), 1)\n            \n            XCTAssertEqual(try rightContent.offset().width, 15 - maxSwipeDistance)\n            XCTAssertEqual(try rightContent.scaleEffect().width, 1)\n            XCTAssertEqual(try rightContent.scaleEffectAnchor(), .trailing)\n            XCTAssertEqual(try rightContent.rotation3D().axis.y, 1)\n            XCTAssertEqual(try rightContent.rotation3D().angle, .degrees(Double(maxSwipeDistance) / 15))\n            XCTAssertEqual(try rightContent.zIndex(), 3)\n            \n            XCTAssertEqual(try mainContent.offset().width, maxSwipeDistance)\n            XCTAssertEqual(try mainContent.zIndex(), 4)\n            XCTAssertEqual(try mainContent.rotation3D().axis.y, 1)\n            XCTAssertEqual(try mainContent.rotation3D().angle, .degrees(Double(-maxSwipeDistance) / 15))\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleStyle(.rotateIn),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2], timeout: 0.8)\n    }\n    \n    func testShuffleStackRotateOutStyleLayout() throws {\n        let view = ShuffleStack(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp1 = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.style, .rotateOut)\n            let zStack = try sut.inspect().find(ViewType.ZStack.self)\n            XCTAssertEqual(try zStack.padding().leading, 30)\n            XCTAssertEqual(try zStack.padding().trailing, 30)\n            XCTAssertEqual(try zStack.padding().top, 0)\n            XCTAssertEqual(try zStack.padding().bottom, 0)\n            XCTAssertEqual(try zStack.flexFrame().minHeight, 200)\n            XCTAssertEqual(try zStack.flexFrame().maxWidth, .infinity)\n            \n            let leftContent = try zStack.view(ColorView.self, 0)\n            let rightContent = try zStack.view(ColorView.self, 1)\n            let mainContent = try zStack.view(ColorView.self, 2)\n\n            let geometryReader = try mainContent.background().find(ViewType.GeometryReader.self)\n            XCTAssertEqual(try geometryReader.find(ViewType.Color.self).value(), .clear)\n            \n            XCTAssertEqual(try leftContent.offset().width, -15)\n            XCTAssertEqual(try leftContent.scaleEffect().width, 0.95)\n            XCTAssertEqual(try leftContent.scaleEffectAnchor(), .leading)\n            XCTAssertEqual(try leftContent.rotation3D().axis.y, 1)\n            XCTAssertEqual(try leftContent.rotation3D().angle, .zero)\n            XCTAssertEqual(try leftContent.zIndex(), 3)\n            \n            XCTAssertEqual(try rightContent.offset().width, 15)\n            XCTAssertEqual(try rightContent.scaleEffect().width, 0.95)\n            XCTAssertEqual(try rightContent.scaleEffectAnchor(), .trailing)\n            XCTAssertEqual(try rightContent.rotation3D().axis.y, 1)\n            XCTAssertEqual(try rightContent.rotation3D().angle, .zero)\n            XCTAssertEqual(try rightContent.zIndex(), 1)\n            \n            XCTAssertEqual(try mainContent.offset().width, 0)\n            XCTAssertEqual(try mainContent.zIndex(), 4)\n            XCTAssertEqual(try mainContent.rotation3D().axis.y, 1)\n            XCTAssertEqual(try mainContent.rotation3D().angle, .zero)\n            sut.direction = .right\n            sut.performSpreadingOut()\n        }\n        let exp2 = view.inspection.inspect(after: 0.4) { view in\n            let sut = try view.actualView()\n            let width = 300 - sut.padding * 2 - sut.offset * 2\n            let maxSwipeDistance = -width * 0.25\n            XCTAssertEqual(sut.style, .rotateOut)\n            XCTAssertEqual(sut.xPosition, maxSwipeDistance)\n            let group = try sut.inspect().find(ViewType.ZStack.self)\n            let leftContent = try group.view(ColorView.self, 0)\n            let rightContent = try group.view(ColorView.self, 1)\n            let mainContent = try group.view(ColorView.self, 2)\n            \n            XCTAssertEqual(try leftContent.offset().width, -15)\n            XCTAssertEqual(try leftContent.scaleEffect().width, 0.95)\n            XCTAssertEqual(try leftContent.scaleEffectAnchor(), .leading)\n            XCTAssertEqual(try leftContent.rotation3D().axis.y, 1)\n            XCTAssertEqual(try leftContent.rotation3D().angle, .zero)\n            XCTAssertEqual(try leftContent.zIndex(), 1)\n            \n            XCTAssertEqual(try rightContent.offset().width, 15 - maxSwipeDistance)\n            XCTAssertEqual(try rightContent.scaleEffect().width, 1)\n            XCTAssertEqual(try rightContent.scaleEffectAnchor(), .trailing)\n            XCTAssertEqual(try rightContent.rotation3D().axis.y, 1)\n            XCTAssertEqual(try rightContent.rotation3D().angle, .degrees(-Double(maxSwipeDistance) / 15))\n            XCTAssertEqual(try rightContent.zIndex(), 3)\n            \n            XCTAssertEqual(try mainContent.offset().width, maxSwipeDistance)\n            XCTAssertEqual(try mainContent.zIndex(), 4)\n            XCTAssertEqual(try mainContent.rotation3D().axis.y, 1)\n            XCTAssertEqual(try mainContent.rotation3D().angle, .degrees(-Double(-maxSwipeDistance) / 15))\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleStyle(.rotateOut),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp1, exp2], timeout: 0.8)\n    }\n    \n    #if !os(tvOS)\n    func testShuffleStackDisabled() throws {\n        let view = ShuffleStack(colors, initialIndex: 0) { color in\n            ColorView(color: color)\n        }\n        let exp = view.inspection.inspect(after: 0.1) { view in\n            let sut = try view.actualView()\n            XCTAssertEqual(sut.style, .rotateOut)\n            let group = try sut.inspect().find(ViewType.ZStack.self)\n            let mainContent = try group.view(ColorView.self, 2)\n            XCTAssertThrowsError(try mainContent.gesture(DragGesture.self))\n        }\n        ViewHosting.host(\n            view: view\n                .shuffleDisabled(true)\n                .shuffleStyle(.rotateOut),\n            size: .init(width: 300, height: 800)\n        )\n        self.wait(for: [exp], timeout: 0.3)\n    }\n    #endif\n}\n"
  },
  {
    "path": "Tests/ShuffleItTests/Utils/BaseTestCase.swift",
    "content": "import SwiftUI\nimport XCTest\n\nclass BaseTestCase: XCTestCase {\n    let colors: [Color] = [.red, .orange, .yellow, .green, .teal, .blue, .purple]\n}\n"
  },
  {
    "path": "Tests/ShuffleItTests/Utils/ColorView.swift",
    "content": "import SwiftUI\nimport ViewInspector\n\nstruct ColorView: View {\n    let color: Color\n    var body: some View {\n        color\n            .frame(height: 200)\n            .cornerRadius(15)\n    }\n}\n"
  },
  {
    "path": "Tests/ShuffleItTests/Utils/ValueSpy.swift",
    "content": "import Foundation\nimport Combine\n\nclass ValueSpy<Value> {\n    private(set) var values: [Value] = []\n    private var cancellable: AnyCancellable?\n    init(_ publisher: AnyPublisher<Value, Never>) {\n        self.values = []\n        self.cancellable = publisher.sink { [weak self] value in\n            self?.values.append(value)\n        }\n    }\n}\n"
  },
  {
    "path": "codecov.yaml",
    "content": "codecov:\n  require_ci_to_pass: yes\n\ncoverage:\n  precision: 2\n  round: down\n  range: \"70...100\"\n  ignore:\n    - \"Tests\"\n\nparsers:\n  gcov:\n    branch_detection:\n      conditional: yes\n      loop: yes\n      method: no\n      macro: no\n\ncomment:\n  layout: \"reach,diff,flags,files,footer\"\n  behavior: default\n  require_changes: no\n"
  },
  {
    "path": "docs/css/documentation-topic.3bca6578.css",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */.betainfo[data-v-fe7602da]{font-size:.94118rem;padding:3rem 0;background-color:var(--color-fill-secondary)}.full-width-container .betainfo-container[data-v-fe7602da]{max-width:920px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media only screen and (min-width:1251px){.full-width-container .betainfo-container[data-v-fe7602da]{box-sizing:unset;padding-left:120px;padding-right:120px;margin-left:0}}@media only screen and (max-width:735px){.full-width-container .betainfo-container[data-v-fe7602da]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .betainfo-container[data-v-fe7602da]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .betainfo-container[data-v-fe7602da]{width:692px}}@media only screen and (max-width:735px){.static-width-container .betainfo-container[data-v-fe7602da]{width:87.5%}}.betainfo-label[data-v-fe7602da]{font-weight:600;font-size:.94118rem}.betainfo-content[data-v-fe7602da] p{margin-bottom:10px}.contenttable+.betainfo[data-v-fe7602da]{background-color:var(--color-fill)}.summary-section[data-v-3aa6f694]:last-of-type{margin-right:0}@media only screen and (max-width:735px){.summary-section[data-v-3aa6f694]{margin-right:0}}.title[data-v-6796f6ea]{color:#fff;font-size:.82353rem;margin-right:.5rem;text-rendering:optimizeLegibility}.documentation-hero--disabled .title[data-v-6796f6ea]{color:var(--colors-text,var(--color-text))}.language[data-v-0de98d61]{padding-bottom:10px;justify-content:flex-end}.language-list[data-v-0de98d61],.language[data-v-0de98d61]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-top:0;display:flex;align-items:center}.language-option.swift[data-v-0de98d61]{padding-right:10px;border-right:1px solid var(--color-fill-gray-tertiary)}.language-option.objc[data-v-0de98d61]{padding-left:10px}.language-option.active[data-v-0de98d61],.language-option.router-link-exact-active[data-v-0de98d61]{color:#ccc}.documentation-hero--disabled .language-option.active[data-v-0de98d61],.documentation-hero--disabled .language-option.router-link-exact-active[data-v-0de98d61]{color:var(--colors-secondary-label,var(--color-secondary-label))}.NavigatorLeafIcon[data-v-031bfabc]{width:1em;height:1em;margin-right:7px;flex:0 0 auto;color:var(--color-figure-gray-secondary)}.NavigatorLeafIcon svg[data-v-031bfabc]{width:100%;height:100%}.documentation-hero[data-v-14076498]{background:#000;color:#fff;overflow:hidden;text-align:left;position:relative}.documentation-hero[data-v-14076498]:before{content:\"\";background:#2a2a2a;position:absolute;width:100%;left:0;top:-50%;height:150%;right:0}.documentation-hero[data-v-14076498]:after{background:transparent;opacity:.7;width:100%;position:absolute;content:\"\";height:100%;left:0;top:0}.documentation-hero .icon[data-v-14076498]{position:absolute;margin-top:10px;margin-right:25px;right:0;width:250px;height:calc(100% - 20px);box-sizing:border-box}@media only screen and (max-width:735px){.documentation-hero .icon[data-v-14076498]{display:none}}.documentation-hero .background-icon[data-v-14076498]{color:#161616;display:block;width:250px;height:auto;opacity:1;position:absolute;top:50%;left:0;transform:translateY(-50%);max-height:100%}.documentation-hero .background-icon[data-v-14076498] svg{width:100%;height:100%}.documentation-hero__content[data-v-14076498]{padding-top:2.35294rem;padding-bottom:40px;position:relative;z-index:1}.full-width-container .documentation-hero__content[data-v-14076498]{max-width:920px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media only screen and (min-width:1251px){.full-width-container .documentation-hero__content[data-v-14076498]{box-sizing:unset;padding-left:120px;padding-right:120px;margin-left:0}}@media only screen and (max-width:735px){.full-width-container .documentation-hero__content[data-v-14076498]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .documentation-hero__content[data-v-14076498]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .documentation-hero__content[data-v-14076498]{width:692px}}@media only screen and (max-width:735px){.static-width-container .documentation-hero__content[data-v-14076498]{width:87.5%}}.documentation-hero__above-content[data-v-14076498]{position:relative;z-index:1}.documentation-hero--disabled[data-v-14076498]{background:none;color:var(--colors-text,var(--color-text))}.documentation-hero--disabled[data-v-14076498]:after,.documentation-hero--disabled[data-v-14076498]:before{content:none}.short-hero[data-v-14076498]{padding-top:3.52941rem;padding-bottom:3.52941rem}.extra-bottom-padding[data-v-14076498]{padding-bottom:3.82353rem}.theme-dark[data-v-14076498] a:not(.button-cta){color:#09f}[data-v-002affcc] .code-listing{background:var(--background,var(--color-code-background));color:var(--text,var(--color-code-plain));border-color:var(--colors-grid,var(--color-grid));border-width:1px;border-style:solid}[data-v-002affcc]+.code-listing,[data-v-002affcc] .code-listing+*{margin-top:1.6em}[data-v-002affcc] .code-listing pre{padding:8px 14px;padding-right:0}[data-v-002affcc] .code-listing pre>code{font-size:.88235rem;line-height:1.66667;font-weight:400;font-family:Menlo,monospace}[data-v-002affcc] *+aside,[data-v-002affcc] *+figure,[data-v-002affcc]+.endpoint-example,[data-v-002affcc] .endpoint-example+*,[data-v-002affcc] aside+*,[data-v-002affcc] figure+*{margin-top:1.6em}[data-v-002affcc] img{display:block;margin:1.6em auto;max-width:100%}[data-v-002affcc] ol,[data-v-002affcc] ul{margin-top:.8em;margin-left:2rem}[data-v-002affcc] ol li:not(:first-child),[data-v-002affcc] ul li:not(:first-child){margin-top:.8em}@media only screen and (max-width:735px){[data-v-002affcc] ol,[data-v-002affcc] ul{margin-left:1.25rem}}[data-v-002affcc]+dl,[data-v-002affcc] dl+*,[data-v-002affcc] dt:not(:first-child){margin-top:.8em}[data-v-002affcc] dd{margin-left:2em}.abstract[data-v-702ec04e]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:735px){.abstract[data-v-702ec04e]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-702ec04e] p:last-child{margin-bottom:0}.container[data-v-5a07ba83]{padding-bottom:40px}.full-width-container .container[data-v-5a07ba83]{max-width:920px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media only screen and (min-width:1251px){.full-width-container .container[data-v-5a07ba83]{box-sizing:unset;padding-left:120px;padding-right:120px;margin-left:0}}@media only screen and (max-width:735px){.full-width-container .container[data-v-5a07ba83]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .container[data-v-5a07ba83]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .container[data-v-5a07ba83]{width:692px}}@media only screen and (max-width:735px){.static-width-container .container[data-v-5a07ba83]{width:87.5%}}.title[data-v-5a07ba83]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding-top:40px;border-top-color:var(--color-grid);border-top-style:solid;border-top-width:1px}@media only screen and (max-width:1250px){.title[data-v-5a07ba83]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-5a07ba83]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.title+.contenttable-section[data-v-627ab5f4]{margin-top:0}.contenttable-section[data-v-627ab5f4]{align-items:baseline;padding-top:2.353rem}.contenttable-section[data-v-627ab5f4]:last-child{margin-bottom:0}[data-v-627ab5f4] .title{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1250px){[data-v-627ab5f4] .title{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.contenttable-section[data-v-627ab5f4]{align-items:unset;border-top:none;display:inherit;margin:0}.section-content[data-v-627ab5f4],.section-title[data-v-627ab5f4]{padding:0}[data-v-627ab5f4] .title{margin:0 0 2.353rem 0;padding-bottom:.5rem}}.badge[data-v-5a8ba4e0]{--badge-color:var(--color-badge-default);--badge-dark-color:var(--color-badge-dark-default);font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:inline-block;padding:2px 10px;white-space:nowrap;background:none;border-radius:3px;margin-left:10px;border:1px solid var(--badge-color);color:var(--badge-color)}.theme-dark .badge[data-v-5a8ba4e0]{--badge-color:var(--badge-dark-color)}.badge-deprecated[data-v-5a8ba4e0]{--badge-color:var(--color-badge-deprecated);--badge-dark-color:var(--color-badge-dark-deprecated)}.badge-beta[data-v-5a8ba4e0]{--badge-color:var(--color-badge-beta);--badge-dark-color:var(--color-badge-dark-beta)}.topic-icon-wrapper[data-v-4d1e7968]{display:flex;align-items:center;justify-content:center;height:1.47059rem;flex:0 0 1.294rem;width:1.294rem;margin-right:1rem}.topic-icon[data-v-4d1e7968]{height:.88235rem;transform:scale(1);-webkit-transform:scale(1);overflow:visible}.topic-icon.curly-brackets-icon[data-v-4d1e7968]{height:1rem}.token-method[data-v-5caf1b5b]{font-weight:700}.token-keyword[data-v-5caf1b5b]{color:var(--syntax-keyword,var(--color-syntax-keywords))}.token-number[data-v-5caf1b5b]{color:var(--syntax-number,var(--color-syntax-numbers))}.token-string[data-v-5caf1b5b]{color:var(--syntax-string,var(--color-syntax-strings))}.token-attribute[data-v-5caf1b5b]{color:var(--syntax-attribute,var(--color-syntax-keywords))}.token-internalParam[data-v-5caf1b5b]{color:var(--color-syntax-param-internal-name)}.type-identifier-link[data-v-5caf1b5b]{color:var(--syntax-type,var(--color-syntax-other-type-names))}.token-removed[data-v-5caf1b5b]{background-color:var(--color-highlight-red)}.token-added[data-v-5caf1b5b]{background-color:var(--color-highlight-green)}.decorator[data-v-06ec7395],.label[data-v-06ec7395]{color:var(--colors-secondary-label,var(--color-secondary-label))}.label[data-v-06ec7395]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.empty-token[data-v-06ec7395]{font-size:0}.empty-token[data-v-06ec7395]:after{content:\"\\00a0\";font-size:1rem}.conditional-constraints[data-v-1548fd90] code{color:var(--colors-secondary-label,var(--color-secondary-label))}.abstract[data-v-3152d122],.link-block[data-v-3152d122] .badge{margin-left:2.294rem}.link-block .badge+.badge[data-v-3152d122]{margin-left:1rem}.link[data-v-3152d122]{display:flex}.link-block .badge[data-v-3152d122]{margin-top:.5rem}.link-block.has-inline-element[data-v-3152d122]{display:flex;align-items:flex-start;flex-flow:row wrap}.link-block.has-inline-element .badge[data-v-3152d122]{margin-left:1rem;margin-top:0}.link-block .has-adjacent-elements[data-v-3152d122]{padding-top:5px;padding-bottom:5px;display:inline-flex}.link-block[data-v-3152d122],.link[data-v-3152d122]{box-sizing:inherit}.link-block.changed[data-v-3152d122],.link.changed[data-v-3152d122]{padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.link-block.changed.changed[data-v-3152d122],.link.changed.changed[data-v-3152d122]{padding-right:1rem}@media only screen and (max-width:735px){.link-block.changed[data-v-3152d122],.link.changed[data-v-3152d122]{padding-left:0;padding-right:0}.link-block.changed.changed[data-v-3152d122],.link.changed.changed[data-v-3152d122]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.link-block.changed[data-v-3152d122],.link.changed[data-v-3152d122]{padding-left:0;padding-right:0}}.abstract .topic-required[data-v-3152d122]:not(:first-child){margin-top:4px}.topic-required[data-v-3152d122]{font-size:.8em}.deprecated[data-v-3152d122]{text-decoration:line-through}.conditional-constraints[data-v-3152d122]{font-size:.82353rem;margin-top:4px}.section-content>.content[data-v-eb97add6],.topic[data-v-eb97add6]{margin-top:15px}.datalist dd{padding-left:2rem}.datalist dt{font-weight:600;padding-left:1rem;padding-top:1.64706rem}.datalist dt:first-of-type{padding-top:0}.source[data-v-e2e09a16]{background:var(--background,var(--color-code-background));border-color:var(--color-grid);color:var(--text,var(--color-code-plain));border-radius:4px;border-style:solid;border-width:1px;padding:8px 14px;speak:literal-punctuation;line-height:25px}.source.has-multiple-lines[data-v-e2e09a16]{border-radius:4px}.source>code[data-v-e2e09a16]{font-size:.88235rem;line-height:1.66667;font-weight:400;font-family:Menlo,monospace;display:block}.platforms[data-v-c5ecdd3e]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-bottom:.45rem;margin-top:1.6em}.changed .platforms[data-v-c5ecdd3e]{padding-left:.588rem}.platforms[data-v-c5ecdd3e]:first-of-type{margin-top:1rem}.source[data-v-c5ecdd3e]{margin:14px 0}.platforms+.source[data-v-c5ecdd3e]{margin:0}.changed.declaration-group[data-v-c5ecdd3e]{background:var(--background,var(--color-code-background))}.changed .source[data-v-c5ecdd3e]{background:none;border:none;margin-top:0;margin-bottom:0;margin-left:2.17647rem;padding-left:0}.declaration-diff[data-v-b3e21c4a]{background:var(--background,var(--color-code-background))}.declaration-diff-version[data-v-b3e21c4a]{padding-left:.588rem;padding-left:2.17647rem;font-size:1rem;line-height:1.52941;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-figure-gray-secondary);margin:0}.declaration-diff-current[data-v-b3e21c4a]{padding-top:8px;padding-bottom:5px}.declaration-diff-previous[data-v-b3e21c4a]{padding-top:5px;padding-bottom:8px;background-color:var(--color-changes-modified-previous-background);border-radius:0 0 4px 4px;position:relative}.conditional-constraints[data-v-e39c4ee4]{margin:1.17647rem 0 3rem 0}.type[data-v-791bac44]:first-letter{text-transform:capitalize}.detail-type[data-v-61ef551b]{font-weight:600;padding-left:1rem;padding-top:1.64706rem}.detail-type[data-v-61ef551b]:first-child{padding-top:0}@media only screen and (max-width:735px){.detail-type[data-v-61ef551b]{padding-left:0}}.detail-content[data-v-61ef551b]{padding-left:2rem}@media only screen and (max-width:735px){.detail-content[data-v-61ef551b]{padding-left:0}}.param-name[data-v-7bb7c035]{font-weight:600;padding-left:1rem;padding-top:1.64706rem}.param-name[data-v-7bb7c035]:first-child{padding-top:0}@media only screen and (max-width:735px){.param-name[data-v-7bb7c035]{padding-left:0}}.param-content[data-v-7bb7c035]{padding-left:2rem}@media only screen and (max-width:735px){.param-content[data-v-7bb7c035]{padding-left:0}}.param-content[data-v-7bb7c035] dt{font-weight:600}.param-content[data-v-7bb7c035] dd{margin-left:1em}.parameters-table[data-v-2d54624a] .change-added,.parameters-table[data-v-2d54624a] .change-removed{display:inline-block;max-width:100%}.parameters-table[data-v-2d54624a] .change-removed,.parameters-table[data-v-2d54624a] .token-removed{text-decoration:line-through}.param[data-v-2d54624a]{font-size:.88235rem;box-sizing:border-box}.param.changed[data-v-2d54624a]{display:flex;flex-flow:row wrap;padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.param.changed.changed[data-v-2d54624a]{padding-right:1rem}@media only screen and (max-width:735px){.param.changed[data-v-2d54624a]{padding-left:0;padding-right:0}.param.changed.changed[data-v-2d54624a]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.param.changed[data-v-2d54624a]{padding-left:0;padding-right:0}}.param.changed+.param.changed[data-v-2d54624a]{margin-top:.82353rem}.changed .param-content[data-v-2d54624a],.changed .param-symbol[data-v-2d54624a]{padding-top:2px;padding-bottom:2px}@media only screen and (max-width:735px){.changed .param-content[data-v-2d54624a]{padding-top:0}.changed .param-symbol[data-v-2d54624a]{padding-bottom:0}}.param-symbol[data-v-2d54624a]{text-align:right}@media only screen and (max-width:735px){.param-symbol[data-v-2d54624a]{text-align:left}}.param-symbol[data-v-2d54624a] .type-identifier-link{color:var(--color-link)}.param+.param[data-v-2d54624a]{margin-top:1.64706rem}.param+.param[data-v-2d54624a]:first-child{margin-top:0}.param-content[data-v-2d54624a]{padding-left:1rem;padding-left:2.17647rem}@media only screen and (max-width:735px){.param-content[data-v-2d54624a]{padding-left:0;padding-right:0}}.property-metadata[data-v-8590589e]{color:var(--color-figure-gray-secondary)}.property-text{font-weight:700}.property-metadata[data-v-0a648a1e]{color:var(--color-figure-gray-secondary)}.property-name[data-v-1b54be82]{font-weight:700}.property-name.deprecated[data-v-1b54be82]{text-decoration:line-through}.property-deprecated[data-v-1b54be82]{margin-left:0}.content[data-v-1b54be82],.content[data-v-1b54be82] p:first-child{display:inline}.response-mimetype[data-v-2faa6020]{color:var(--color-figure-gray-secondary)}.part-name[data-v-1b311f59]{font-weight:700}.content[data-v-1b311f59],.content[data-v-1b311f59] p:first-child{display:inline}.param-name[data-v-5accae2c]{font-weight:700}.param-name.deprecated[data-v-5accae2c]{text-decoration:line-through}.param-deprecated[data-v-5accae2c]{margin-left:0}.content[data-v-5accae2c],.content[data-v-5accae2c] p:first-child{display:inline}.response-name[data-v-57796e8c],.response-reason[data-v-57796e8c]{font-weight:700}@media only screen and (max-width:735px){.response-reason[data-v-57796e8c]{display:none}}.response-name>code>.reason[data-v-57796e8c]{display:none}@media only screen and (max-width:735px){.response-name>code>.reason[data-v-57796e8c]{display:initial}}[data-v-0e405a2d] h2{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1250px){[data-v-0e405a2d] h2{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){[data-v-0e405a2d] h2{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.primary-content.with-border[data-v-0e405a2d]:before{border-top-color:var(--colors-grid,var(--color-grid));border-top-style:solid;border-top-width:1px;content:\"\";display:block}.primary-content[data-v-0e405a2d]>*{margin-bottom:40px;margin-top:40px}.primary-content[data-v-0e405a2d]>:first-child{margin-top:2.353rem}.relationships-list[data-v-6497632e]{list-style:none}.relationships-list.column[data-v-6497632e]{margin-left:0;margin-top:15px}.relationships-list.inline[data-v-6497632e]{display:flex;flex-direction:row;flex-wrap:wrap;margin-top:15px;margin-left:0}.relationships-list.inline li[data-v-6497632e]:not(:last-child):after{content:\",\\00a0\"}.relationships-list.changed[data-v-6497632e]{padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.relationships-list.changed.changed[data-v-6497632e]{padding-right:1rem}@media only screen and (max-width:735px){.relationships-list.changed[data-v-6497632e]{padding-left:0;padding-right:0}.relationships-list.changed.changed[data-v-6497632e]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.relationships-list.changed[data-v-6497632e]{padding-left:0;padding-right:0}}.relationships-list.changed[data-v-6497632e]:after{margin-top:.61765rem}.relationships-list.changed.column[data-v-6497632e]{display:block;box-sizing:border-box}.relationships-item[data-v-6497632e],.relationships-list[data-v-6497632e]{box-sizing:inherit}.conditional-constraints[data-v-6497632e]{font-size:.82353rem;margin:.17647rem 0 .58824rem 1.17647rem}.availability[data-v-4df209be]{display:flex;flex-flow:row wrap;gap:10px;margin-top:20px}.badge[data-v-4df209be]{margin:0}.technology[data-v-4df209be]{display:inline-flex;align-items:center}.tech-icon[data-v-4df209be]{height:12px;padding-right:5px;fill:var(--badge-color)}.theme-dark .tech-icon[data-v-4df209be]{fill:var(--badge-color)}.beta[data-v-4df209be]{color:var(--color-badge-beta)}.theme-dark .beta[data-v-4df209be]{color:var(--color-badge-dark-beta)}.deprecated[data-v-4df209be]{color:var(--color-badge-deprecated)}.theme-dark .deprecated[data-v-4df209be]{color:var(--color-badge-dark-deprecated)}.changed[data-v-4df209be]{padding-left:26px}.changed[data-v-4df209be]:after{content:none}.changed[data-v-4df209be]:before{background-image:url(../img/modified-icon.f496e73d.svg);background-repeat:no-repeat;bottom:0;content:\" \";margin:auto;margin-right:8px;position:absolute;top:0;width:16px;height:16px;left:5px}@media screen{[data-color-scheme=dark] .changed[data-v-4df209be]:before{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed[data-v-4df209be]:before{background-image:url(../img/modified-icon.f496e73d.svg)}}.theme-dark .changed[data-v-4df209be]:before{background-image:url(../img/modified-icon.f496e73d.svg)}.changed-added[data-v-4df209be]{border-color:var(--color-changes-added)}.changed-added[data-v-4df209be]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .changed-added[data-v-4df209be]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-added[data-v-4df209be]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}}.theme-dark .changed-added[data-v-4df209be]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}.changed-deprecated[data-v-4df209be]{border-color:var(--color-changes-deprecated)}.changed-deprecated[data-v-4df209be]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .changed-deprecated[data-v-4df209be]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-deprecated[data-v-4df209be]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.theme-dark .changed-deprecated[data-v-4df209be]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}.changed-modified[data-v-4df209be]{border-color:var(--color-changes-modified)}.eyebrow[data-v-2e777455]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#ccc;display:block;margin-bottom:1.17647rem}@media only screen and (max-width:735px){.eyebrow[data-v-2e777455]{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.documentation-hero--disabled .eyebrow[data-v-2e777455]{color:var(--colors-secondary-label,var(--color-secondary-label))}.title[data-v-2e777455]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#fff;margin-bottom:.70588rem}@media only screen and (max-width:1250px){.title[data-v-2e777455]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-2e777455]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.documentation-hero--disabled .title[data-v-2e777455]{color:var(--colors-header-text,var(--color-header-text))}small[data-v-2e777455]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:10px}@media only screen and (max-width:1250px){small[data-v-2e777455]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}small[data-v-2e777455]:before{content:attr(data-tag-name)}small.Beta[data-v-2e777455]{color:var(--color-badge-beta)}.theme-dark small.Beta[data-v-2e777455]{color:var(--color-badge-dark-beta)}small.Deprecated[data-v-2e777455]{color:var(--color-badge-deprecated)}.theme-dark small.Deprecated[data-v-2e777455]{color:var(--color-badge-dark-deprecated)}.doc-topic[data-v-a877f03c]{display:flex;flex-direction:column;height:100%}#main[data-v-a877f03c]{outline-style:none;height:100%}@media only screen and (min-width:1920px){.full-width-container #main[data-v-a877f03c]{border-right:1px solid var(--color-grid)}}.container[data-v-a877f03c]{outline-style:none}.full-width-container .container[data-v-a877f03c]{max-width:920px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media only screen and (min-width:1251px){.full-width-container .container[data-v-a877f03c]{box-sizing:unset;padding-left:120px;padding-right:120px;margin-left:0}}@media only screen and (max-width:735px){.full-width-container .container[data-v-a877f03c]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .container[data-v-a877f03c]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .container[data-v-a877f03c]{width:692px}}@media only screen and (max-width:735px){.static-width-container .container[data-v-a877f03c]{width:87.5%}}.description[data-v-a877f03c]{margin-bottom:2.353rem}.description[data-v-a877f03c]:empty{display:none}.description.after-enhanced-hero[data-v-a877f03c]{margin-top:2.353rem}.description[data-v-a877f03c] .content+*{margin-top:.8em}[data-v-a877f03c] .documentation-hero+.contenttable .container>.title{border-top:none}.sample-download[data-v-a877f03c]{margin-top:20px}[data-v-a877f03c] h3{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1250px){[data-v-a877f03c] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){[data-v-a877f03c] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-a877f03c] h4{font-size:1.41176rem;line-height:1.16667;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1250px){[data-v-a877f03c] h4{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-a877f03c] h5{font-size:1.29412rem;line-height:1.18182;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1250px){[data-v-a877f03c] h5{font-size:1.17647rem;line-height:1.2;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){[data-v-a877f03c] h5{font-size:1.05882rem;line-height:1.44444;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-a877f03c] h6{font-size:1rem;line-height:1.47059;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.adjustable-sidebar-width[data-v-453b0e76]{display:flex}@media only screen and (max-width:1023px){.adjustable-sidebar-width[data-v-453b0e76]{display:block;position:relative}}.sidebar[data-v-453b0e76]{position:relative}@media only screen and (max-width:1023px){.sidebar[data-v-453b0e76]{position:static}}.aside[data-v-453b0e76]{width:250px;position:relative;height:100%;max-width:100vw}.aside.no-transition[data-v-453b0e76]{transition:none!important}@media only screen and (max-width:1023px){.aside[data-v-453b0e76]{width:100%!important;overflow:hidden;min-width:0;max-width:100%;height:calc(var(--app-height) - var(--top-offset-mobile));position:fixed;top:var(--top-offset-mobile);bottom:0;z-index:9997;transform:translateX(-100%);transition:transform .15s ease-in}.aside[data-v-453b0e76] .aside-animated-child{opacity:0}.aside.force-open[data-v-453b0e76]{transform:translateX(0)}.aside.force-open[data-v-453b0e76] .aside-animated-child{--index:0;opacity:1;transition:opacity .15s linear;transition-delay:calc(var(--index)*0.15s + .15s)}.aside.has-mobile-top-offset[data-v-453b0e76]{border-top:1px solid var(--color-fill-gray-tertiary)}}.content[data-v-453b0e76]{display:flex;flex-flow:column;min-width:0;flex:1 1 auto;height:100%}.resize-handle[data-v-453b0e76]{position:absolute;cursor:col-resize;top:0;bottom:0;right:0;width:5px;height:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:1;transition:background-color .15s;transform:translateX(50%)}@media only screen and (max-width:1023px){.resize-handle[data-v-453b0e76]{display:none}}.resize-handle[data-v-453b0e76]:hover{background:var(--color-fill-gray-tertiary)}.navigator-card-inner[data-v-7a09780d]{--nav-card-inner-vertical-offset:0px;position:sticky;top:var(--nav-height);height:calc(var(--app-height) - var(--nav-height) - var(--nav-card-inner-vertical-offset));display:flex;flex-flow:column}@media only screen and (max-width:1023px){.navigator-card-inner[data-v-7a09780d]{position:static;height:100%}}.highlight[data-v-d75876e2]{display:inline}.highlight[data-v-d75876e2] .match{font-weight:600;background:var(--color-fill-light-blue-secondary)}.navigator-card-item[data-v-6fb0778e]{height:32px;display:flex;align-items:center}.fromkeyboard .navigator-card-item[data-v-6fb0778e]:focus-within{margin:5px;height:22px;outline:4px solid var(--color-focus-color);outline-offset:1px}.fromkeyboard .navigator-card-item:focus-within .depth-spacer[data-v-6fb0778e]{margin-left:-5px}.depth-spacer[data-v-6fb0778e]{width:calc(var(--nesting-index)*15px + 25px);height:32px;position:relative;flex:0 0 auto}.fromkeyboard .depth-spacer[data-v-6fb0778e]:focus{margin:-5px}.head-wrapper[data-v-6fb0778e]{padding:0 20px 0 10px;position:relative;display:flex;align-items:center;flex:1;min-width:0;height:100%}@supports (padding:max(0px)){.head-wrapper[data-v-6fb0778e]{padding-left:max(10px,env(safe-area-inset-left));padding-right:max(20px,env(safe-area-inset-right))}}.head-wrapper.active[data-v-6fb0778e]{background:var(--color-fill-gray-quaternary)}.head-wrapper.is-group .leaf-link[data-v-6fb0778e]{color:var(--color-figure-gray-secondary);font-weight:600}.head-wrapper.is-group .leaf-link[data-v-6fb0778e]:after{display:none}.hover .head-wrapper[data-v-6fb0778e]:not(.is-group){background:var(--color-navigator-item-hover)}.head-wrapper .navigator-icon[data-v-6fb0778e]{display:flex;flex:0 0 auto}.head-wrapper .navigator-icon.changed[data-v-6fb0778e]{border:none;width:1em;height:1em;margin-right:7px;z-index:0}.head-wrapper .navigator-icon.changed[data-v-6fb0778e]:after{top:50%;left:50%;right:auto;bottom:auto;transform:translate(-50%,-50%);background-image:url(../img/modified-icon.f496e73d.svg);margin:0}@media screen{[data-color-scheme=dark] .head-wrapper .navigator-icon.changed[data-v-6fb0778e]:after{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .head-wrapper .navigator-icon.changed[data-v-6fb0778e]:after{background-image:url(../img/modified-icon.f496e73d.svg)}}.head-wrapper .navigator-icon.changed-added[data-v-6fb0778e]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .head-wrapper .navigator-icon.changed-added[data-v-6fb0778e]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .head-wrapper .navigator-icon.changed-added[data-v-6fb0778e]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}.head-wrapper .navigator-icon.changed-deprecated[data-v-6fb0778e]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .head-wrapper .navigator-icon.changed-deprecated[data-v-6fb0778e]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .head-wrapper .navigator-icon.changed-deprecated[data-v-6fb0778e]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.head-wrapper .leaf-link[data-v-6fb0778e]{color:var(--color-figure-gray);text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline;vertical-align:middle;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.fromkeyboard .head-wrapper .leaf-link[data-v-6fb0778e]:focus{outline:none}.head-wrapper .leaf-link[data-v-6fb0778e]:hover{text-decoration:none}.head-wrapper .leaf-link.bolded[data-v-6fb0778e]{font-weight:600}.head-wrapper .leaf-link[data-v-6fb0778e]:after{content:\"\";position:absolute;top:0;left:0;right:0;bottom:0}.extended-content[data-v-6fb0778e]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-figure-gray-secondary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tree-toggle[data-v-6fb0778e]{overflow:hidden;position:absolute;width:100%;height:100%;padding-right:5px;box-sizing:border-box;z-index:1;display:flex;align-items:center;justify-content:flex-end}.title-container[data-v-6fb0778e]{min-width:0;display:flex;align-items:center}.chevron[data-v-6fb0778e]{width:10px}.chevron.animating[data-v-6fb0778e]{transition:transform .15s ease-in}.chevron.rotate[data-v-6fb0778e]{transform:rotate(90deg)}.tag[data-v-3b809bfa]{display:inline-block;padding-right:.58824rem}.tag[data-v-3b809bfa]:focus{outline:none}.tag button[data-v-3b809bfa]{color:var(--color-figure-gray);background-color:var(--color-fill-tertiary);font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;border-radius:.82353rem;padding:.23529rem .58824rem;white-space:nowrap;border:1px solid transparent}@media (hover:hover){.tag button[data-v-3b809bfa]:hover{transition:background-color .2s,color .2s;background-color:var(--color-fill-blue);color:#fff}}.tag button[data-v-3b809bfa]:focus:active{background-color:var(--color-fill-blue);color:#fff}.fromkeyboard .tag button[data-v-3b809bfa]:focus,.tag button.focus[data-v-3b809bfa],.tag button[data-v-3b809bfa]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.tags[data-v-4b231516]{position:relative;margin:0;list-style:none;box-sizing:border-box;transition:padding-right .8s,padding-bottom .8s,max-height 1s,opacity 1s;padding:0}.tags .scroll-wrapper[data-v-4b231516]{overflow-x:auto;overflow-y:hidden;-ms-overflow-style:none;scrollbar-color:var(--color-figure-gray-tertiary) transparent;scrollbar-width:thin}.tags .scroll-wrapper[data-v-4b231516]::-webkit-scrollbar{height:0}@supports not ((-webkit-touch-callout:none) or (scrollbar-width:none) or (-ms-overflow-style:none)){.tags .scroll-wrapper.scrolling[data-v-4b231516]{--scrollbar-height:11px;padding-top:var(--scrollbar-height);height:calc(var(--scroll-target-height) - var(--scrollbar-height));display:flex;align-items:center}}.tags .scroll-wrapper.scrolling[data-v-4b231516]::-webkit-scrollbar{height:11px}.tags .scroll-wrapper.scrolling[data-v-4b231516]::-webkit-scrollbar-thumb{border-radius:10px;background-color:var(--color-figure-gray-tertiary);border:2px solid transparent;background-clip:padding-box}.tags .scroll-wrapper.scrolling[data-v-4b231516]::-webkit-scrollbar-track-piece:end{margin-right:8px}.tags .scroll-wrapper.scrolling[data-v-4b231516]::-webkit-scrollbar-track-piece:start{margin-left:8px}.tags ul[data-v-4b231516]{margin:0;padding:0;display:flex}.filter[data-v-3b91e60a]{--input-vertical-padding:.76471rem;--input-height:1.64706rem;--input-border-color:var(--color-fill-gray-secondary);--input-text:var(--color-fill-gray-secondary);position:relative;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0);border-radius:5px}.fromkeyboard .filter[data-v-3b91e60a]:focus{outline:none}.filter__top-wrapper[data-v-3b91e60a]{display:flex}.filter__filter-button[data-v-3b91e60a]{position:relative;margin-left:.58824rem;z-index:1;cursor:text;margin-right:.17647rem}@media only screen and (max-width:735px){.filter__filter-button[data-v-3b91e60a]{margin-right:.41176rem}}.filter__filter-button .svg-icon[data-v-3b91e60a]{fill:var(--input-text);display:block;height:21px}.filter__filter-button.blue[data-v-3b91e60a]>*{fill:var(--color-figure-blue);color:var(--color-figure-blue)}.filter.focus .filter__wrapper[data-v-3b91e60a]{box-shadow:0 0 0 3pt var(--color-focus-color);--input-border-color:var(--color-fill-blue)}.filter__wrapper[data-v-3b91e60a]{border:1px solid var(--input-border-color);background:var(--color-fill);border-radius:4px}.filter__wrapper--reversed[data-v-3b91e60a]{display:flex;flex-direction:column-reverse}.filter__suggested-tags[data-v-3b91e60a]{border-top:1px solid var(--color-fill-gray-tertiary);z-index:1;overflow:hidden}.filter__suggested-tags[data-v-3b91e60a] ul{padding:var(--input-vertical-padding) .52941rem;border:1px solid transparent;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.fromkeyboard .filter__suggested-tags[data-v-3b91e60a] ul:focus{outline:none;box-shadow:0 0 0 5px var(--color-focus-color)}.filter__wrapper--reversed .filter__suggested-tags[data-v-3b91e60a]{border-bottom:1px solid var(--color-fill-gray-tertiary);border-top:none}.filter__selected-tags[data-v-3b91e60a]{z-index:1;padding-left:4px;margin:-4px 0}@media only screen and (max-width:735px){.filter__selected-tags[data-v-3b91e60a]{padding-left:0}}.filter__selected-tags[data-v-3b91e60a] ul{padding:4px}@media only screen and (max-width:735px){.filter__selected-tags[data-v-3b91e60a] ul{padding-right:.41176rem}}.filter__selected-tags[data-v-3b91e60a] ul .tag:last-child{padding-right:0}.filter__delete-button[data-v-3b91e60a]{position:relative;margin:0;z-index:1;border-radius:100%}.fromkeyboard .filter__delete-button[data-v-3b91e60a]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.filter__delete-button .clear-rounded-icon[data-v-3b91e60a]{height:.94118rem;width:.94118rem;fill:var(--input-text);display:block}.filter__delete-button-wrapper[data-v-3b91e60a]{display:flex;align-items:center;padding:0 10px;border-top-right-radius:4px;border-bottom-right-radius:4px}.filter__input-label[data-v-3b91e60a]{position:relative;flex-grow:1;height:var(--input-height);padding:var(--input-vertical-padding) 0}.filter__input-label[data-v-3b91e60a]:after{content:attr(data-value);visibility:hidden;width:auto;white-space:nowrap;min-width:130px;display:block;text-indent:.41176rem}@media only screen and (max-width:735px){.filter__input-label[data-v-3b91e60a]:after{text-indent:.17647rem}}.filter__input-box-wrapper[data-v-3b91e60a]{overflow-y:hidden;-ms-overflow-style:none;scrollbar-color:var(--color-figure-gray-tertiary) transparent;scrollbar-width:thin;display:flex;overflow-x:auto;align-items:center;cursor:text;flex:1}.filter__input-box-wrapper[data-v-3b91e60a]::-webkit-scrollbar{height:0}@supports not ((-webkit-touch-callout:none) or (scrollbar-width:none) or (-ms-overflow-style:none)){.filter__input-box-wrapper.scrolling[data-v-3b91e60a]{--scrollbar-height:11px;padding-top:var(--scrollbar-height);height:calc(var(--scroll-target-height) - var(--scrollbar-height));display:flex;align-items:center}}.filter__input-box-wrapper.scrolling[data-v-3b91e60a]::-webkit-scrollbar{height:11px}.filter__input-box-wrapper.scrolling[data-v-3b91e60a]::-webkit-scrollbar-thumb{border-radius:10px;background-color:var(--color-figure-gray-tertiary);border:2px solid transparent;background-clip:padding-box}.filter__input-box-wrapper.scrolling[data-v-3b91e60a]::-webkit-scrollbar-track-piece:end{margin-right:8px}.filter__input-box-wrapper.scrolling[data-v-3b91e60a]::-webkit-scrollbar-track-piece:start{margin-left:8px}.filter__input[data-v-3b91e60a]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-text);height:var(--input-height);border:none;width:100%;position:absolute;background:transparent;z-index:1;text-indent:.41176rem}@media only screen and (max-width:735px){.filter__input[data-v-3b91e60a]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;text-indent:.17647rem}}.filter__input[data-v-3b91e60a]:focus{outline:none}.filter__input[placeholder][data-v-3b91e60a]::-moz-placeholder{color:var(--input-text);opacity:1}.filter__input[placeholder][data-v-3b91e60a]::placeholder{color:var(--input-text);opacity:1}.filter__input[placeholder][data-v-3b91e60a]:-ms-input-placeholder{color:var(--input-text)}.filter__input[placeholder][data-v-3b91e60a]::-ms-input-placeholder{color:var(--input-text)}.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:-webkit-box;display:-ms-flexbox;display:flex}.vue-recycle-scroller__slot{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-recycle-scroller__item-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.resize-observer[data-v-b329ee4c]{border:none;background-color:transparent;opacity:0}.resize-observer[data-v-b329ee4c],.resize-observer[data-v-b329ee4c] object{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;pointer-events:none;display:block;overflow:hidden}.navigator-card[data-v-d21551d4]{--card-vertical-spacing:8px;display:flex;flex-direction:column;flex:1 1 auto;min-height:0}.navigator-card .navigator-card-full-height[data-v-d21551d4]{height:100%}.navigator-card .navigator-card-inner[data-v-d21551d4]{--nav-card-inner-vertical-offset:71px}.navigator-card .head-wrapper[data-v-d21551d4]{position:relative}.navigator-card .navigator-head[data-v-d21551d4]{padding:10px 20px;background:var(--color-fill-secondary);border-bottom:1px solid var(--color-grid);display:flex;align-items:center;box-sizing:border-box}.navigator-card .navigator-head .badge[data-v-d21551d4]{margin-top:0}.navigator-card .navigator-head.router-link-exact-active[data-v-d21551d4]{background:var(--color-fill-tertiary)}.navigator-card .navigator-head.router-link-exact-active .card-link[data-v-d21551d4]{font-weight:700}.navigator-card .navigator-head[data-v-d21551d4]:hover{background:var(--color-navigator-item-hover);text-decoration:none}@media only screen and (max-width:1023px){.navigator-card .navigator-head[data-v-d21551d4]{justify-content:center;height:3.05882rem;padding:14px 20px}}@media only screen and (max-width:767px){.navigator-card .navigator-head[data-v-d21551d4]{height:2.82353rem;padding:12px 20px}}@supports (padding:max(0px)){.navigator-card .navigator-head[data-v-d21551d4]{padding-left:max(20px,env(safe-area-inset-left));padding-right:max(20px,env(safe-area-inset-right))}}.navigator-card .card-icon[data-v-d21551d4]{width:19px;height:19px}.no-items-wrapper[data-v-d21551d4]{color:var(--color-figure-gray-tertiary);font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:var(--card-vertical-spacing) 20px}.close-card-mobile[data-v-d21551d4]{display:none;position:absolute;z-index:1;color:var(--color-link);align-items:center;justify-content:center}@media only screen and (max-width:1023px){.close-card-mobile[data-v-d21551d4]{display:flex;left:0;height:100%;padding-left:1.29412rem;padding-right:1.29412rem}@supports (padding:max(0px)){.close-card-mobile[data-v-d21551d4]{padding-left:max(1.29412rem,env(safe-area-inset-left))}}}@media only screen and (max-width:767px){.close-card-mobile[data-v-d21551d4]{padding-left:.94118rem;padding-right:.94118rem}}.close-card-mobile .close-icon[data-v-d21551d4]{width:19px;height:19px}.card-body[data-v-d21551d4]{padding-right:0;flex:1 1 auto;min-height:0}@media only screen and (max-width:1023px){.card-body[data-v-d21551d4]{--card-vertical-spacing:0px;padding-top:71px}}.card-link[data-v-d21551d4]{color:var(--color-text);font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:600}.navigator-filter[data-v-d21551d4]{box-sizing:border-box;padding:15px 30px;border-top:1px solid var(--color-grid);height:71px;display:flex;align-items:flex-end}@supports (padding:max(0px)){.navigator-filter[data-v-d21551d4]{padding-left:max(30px,env(safe-area-inset-left));padding-right:max(30px,env(safe-area-inset-right))}}@media only screen and (max-width:1023px){.navigator-filter[data-v-d21551d4]{border:none;padding:10px 20px;align-items:flex-start;height:62px}@supports (padding:max(0px)){.navigator-filter[data-v-d21551d4]{padding-left:max(20px,env(safe-area-inset-left));padding-right:max(20px,env(safe-area-inset-right))}}}.navigator-filter .input-wrapper[data-v-d21551d4]{position:relative;flex:1;min-width:0}.navigator-filter .filter-component[data-v-d21551d4]{--input-vertical-padding:10px;--input-height:20px;--input-border-color:var(--color-grid);--input-text:var(--color-figure-gray-secondary)}.navigator-filter .filter-component[data-v-d21551d4] .filter__input{font-size:1rem;line-height:1.47059;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.scroller[data-v-d21551d4]{height:100%;box-sizing:border-box;padding:var(--card-vertical-spacing) 0;padding-bottom:calc(var(--top-offset, 0px) + var(--card-vertical-spacing));transition:padding-bottom .15s ease-in}@media only screen and (max-width:1023px){.scroller[data-v-d21551d4]{padding-bottom:10em}}.scroller[data-v-d21551d4] .vue-recycle-scroller__item-wrapper{transform:translateZ(0)}.filter-wrapper[data-v-d21551d4]{position:sticky;bottom:0;background:var(--color-fill)}@media only screen and (max-width:1023px){.filter-wrapper[data-v-d21551d4]{position:absolute;top:3.05882rem;bottom:auto;width:100%}}@media only screen and (max-width:767px){.filter-wrapper[data-v-d21551d4]{top:2.82353rem}}@-webkit-keyframes fadeout-data-v-60936b56{0%{opacity:1}to{opacity:0}}@keyframes fadeout-data-v-60936b56{0%{opacity:1}to{opacity:0}}path[data-v-60936b56]{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:fadeout-data-v-60936b56;animation-name:fadeout-data-v-60936b56;fill:currentColor}path[data-v-60936b56]:first-of-type{-webkit-animation-delay:0ms;animation-delay:0ms}path[data-v-60936b56]:nth-of-type(2){-webkit-animation-delay:-125ms;animation-delay:-125ms}path[data-v-60936b56]:nth-of-type(3){-webkit-animation-delay:-.25s;animation-delay:-.25s}path[data-v-60936b56]:nth-of-type(4){-webkit-animation-delay:-375ms;animation-delay:-375ms}path[data-v-60936b56]:nth-of-type(5){-webkit-animation-delay:-.5s;animation-delay:-.5s}path[data-v-60936b56]:nth-of-type(6){-webkit-animation-delay:-625ms;animation-delay:-625ms}path[data-v-60936b56]:nth-of-type(7){-webkit-animation-delay:-.75s;animation-delay:-.75s}path[data-v-60936b56]:nth-of-type(8){-webkit-animation-delay:-875ms;animation-delay:-875ms}.navigator[data-v-0ea7ca2b]{--nav-height:3.05882rem;height:100%;display:flex;flex-flow:column}@media only screen and (min-width:1920px){.navigator[data-v-0ea7ca2b]{border-left:1px solid var(--color-grid)}}@media only screen and (max-width:1023px){.navigator[data-v-0ea7ca2b]{position:static;transition:none}}.loading-placeholder[data-v-0ea7ca2b]{align-items:center;color:var(--color-figure-gray-secondary);justify-content:center}.loading-spinner[data-v-0ea7ca2b]{--spinner-size:40px;--spinner-delay:1s;height:var(--spinner-size);width:var(--spinner-size)}.loading-spinner.delay-visibility-enter-active[data-v-0ea7ca2b]{transition:visibility var(--spinner-delay);visibility:hidden}.hierarchy-collapsed-items[data-v-74906830]{position:relative;display:inline-flex;align-items:center;margin-left:.17647rem}.hierarchy-collapsed-items .hierarchy-item-icon[data-v-74906830]{width:9px;height:15px;margin-right:.17647rem;display:flex;justify-content:center;font-size:1em;align-self:baseline}.nav--in-breakpoint-range .hierarchy-collapsed-items[data-v-74906830]{display:none}.hierarchy-collapsed-items .toggle[data-v-74906830]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-nav-hierarchy-collapse-borders);border-radius:4px;border-style:solid;border-width:0;font-weight:600;height:1.11765rem;text-align:center;width:2.11765rem;display:flex;align-items:center;justify-content:center}.theme-dark .hierarchy-collapsed-items .toggle[data-v-74906830]{background:var(--color-nav-dark-hierarchy-collapse-background)}.hierarchy-collapsed-items .toggle.focused[data-v-74906830],.hierarchy-collapsed-items .toggle[data-v-74906830]:active,.hierarchy-collapsed-items .toggle[data-v-74906830]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.indicator[data-v-74906830]{width:1em;height:1em;display:flex;align-items:center}.indicator .toggle-icon[data-v-74906830]{width:100%}.dropdown[data-v-74906830]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-nav-hierarchy-collapse-borders);border-radius:4px;border-style:solid;box-shadow:0 1px 4px -1px var(--color-figure-gray-secondary);border-width:0;padding:0 .5rem;position:absolute;z-index:42;top:calc(100% + .41176rem)}.theme-dark .dropdown[data-v-74906830]{background:var(--color-nav-dark-hierarchy-collapse-background);border-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown.collapsed[data-v-74906830]{opacity:0;transform:translate3d(0,-.41176rem,0);transition:opacity .25s ease,transform .25s ease,visibility 0s linear .25s;visibility:hidden}.dropdown[data-v-74906830]:not(.collapsed){opacity:1;transform:none;transition:opacity .25s ease,transform .25s ease,visibility 0s linear 0s;visibility:visible}.nav--in-breakpoint-range .dropdown[data-v-74906830]:not(.collapsed){display:none}.dropdown[data-v-74906830]:before{border-bottom-color:var(--color-nav-hierarchy-collapse-background);border-bottom-style:solid;border-bottom-width:.5rem;border-left-color:transparent;border-left-style:solid;border-left-width:.5rem;border-right-color:transparent;border-right-style:solid;border-right-width:.5rem;content:\"\";left:1.26471rem;position:absolute;top:-.44118rem}.theme-dark .dropdown[data-v-74906830]:before{border-bottom-color:var(--color-nav-dark-hierarchy-collapse-background)}.dropdown-item[data-v-74906830]{border-top-color:var(--color-nav-hierarchy-collapse-borders);border-top-style:solid;border-top-width:1px}.theme-dark .dropdown-item[data-v-74906830]{border-top-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown-item[data-v-74906830]:first-child{border-top:none}.nav-menu-link[data-v-74906830]{max-width:57.64706rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;padding:.75rem 1rem}.hierarchy-item[data-v-382bf39e]{display:flex;align-items:center;margin-left:.17647rem}.hierarchy-item[data-v-382bf39e] .hierarchy-item-icon{width:9px;height:15px;margin-right:.17647rem;display:flex;justify-content:center;font-size:1em;align-self:baseline}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e] .hierarchy-item-icon{display:none}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]{border-top:1px solid var(--color-nav-hierarchy-item-borders);display:flex;align-items:center}.theme-dark.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]{border-top-color:var(--color-nav-dark-hierarchy-item-borders)}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]:first-of-type{border-top:none}.hierarchy-item.collapsed[data-v-382bf39e]{display:none}.nav--in-breakpoint-range .hierarchy-item.collapsed[data-v-382bf39e]{display:inline-block}.item[data-v-382bf39e]{display:inline-block;vertical-align:middle}.nav--in-breakpoint-range .item[data-v-382bf39e]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;height:100%;line-height:2.47059rem}@media only screen and (min-width:768px){.hierarchy-item:first-child:last-child .item[data-v-382bf39e],.hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-382bf39e]{max-width:45rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:last-child .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(2) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-382bf39e]{max-width:36rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(2) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-382bf39e]{max-width:28.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(3) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-382bf39e]{max-width:27rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(3) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-382bf39e]{max-width:21.6rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(4) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(4)~.hierarchy-item .item[data-v-382bf39e]{max-width:18rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(4) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(4)~.hierarchy-item .item[data-v-382bf39e]{max-width:14.4rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(5) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(5)~.hierarchy-item .item[data-v-382bf39e]{max-width:9rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(5) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(5)~.hierarchy-item .item[data-v-382bf39e]{max-width:7.2rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-collapsed-items~.hierarchy-item .item[data-v-382bf39e]{max-width:10.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-collapsed-items~.hierarchy-item:last-child .item[data-v-382bf39e]{max-width:none}.has-badge .hierarchy-collapsed-items~.hierarchy-item .item[data-v-382bf39e]{max-width:8.64rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.hierarchy[data-v-30132cb0]{justify-content:flex-start;min-width:0;margin-right:80px}.nav--in-breakpoint-range .hierarchy[data-v-30132cb0]{margin-right:0}.hierarchy .root-hierarchy .item[data-v-30132cb0]{max-width:10rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.nav-menu-setting-label[data-v-126c8e14]{margin-right:.35294rem;white-space:nowrap}.language-dropdown[data-v-126c8e14]{-webkit-text-size-adjust:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;background-color:transparent;box-sizing:inherit;padding:0 11px 0 4px;margin-left:-4px;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;cursor:pointer;position:relative;z-index:1}@media only screen and (max-width:1023px){.language-dropdown[data-v-126c8e14]{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.language-dropdown[data-v-126c8e14]:focus{outline:none}.fromkeyboard .language-dropdown[data-v-126c8e14]:focus{outline:4px solid var(--color-focus-color);outline-offset:1px}.language-sizer[data-v-126c8e14]{position:absolute;opacity:0;pointer-events:none;padding:0}.language-toggle-container[data-v-126c8e14]{display:flex;align-items:center;padding-right:.17647rem;position:relative}.nav--in-breakpoint-range .language-toggle-container[data-v-126c8e14]{display:none}.language-toggle-container .toggle-icon[data-v-126c8e14]{width:.6em;height:.6em;position:absolute;right:7px}.language-toggle-label[data-v-126c8e14]{margin-right:2px}.language-toggle.nav-menu-toggle-label[data-v-126c8e14]{margin-right:6px}.language-list[data-v-126c8e14]{display:inline-block;margin-top:0}.language-list-container[data-v-126c8e14]{display:none}.language-list-item[data-v-126c8e14],.nav--in-breakpoint-range .language-list-container[data-v-126c8e14]{display:inline-block}.language-list-item[data-v-126c8e14]:not(:first-child){border-left:1px solid #424242;margin-left:6px;padding-left:6px}[data-v-cbd98416] .nav-menu{line-height:1.5;padding-top:0}[data-v-cbd98416] .nav-menu,[data-v-cbd98416] .nav-menu-settings{font-size:.82353rem;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}[data-v-cbd98416] .nav-menu-settings{line-height:1.28571}@media only screen and (max-width:1023px){[data-v-cbd98416] .nav-menu-settings{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (min-width:1024px){[data-v-cbd98416] .nav-menu-settings{margin-left:.58824rem}}.nav--in-breakpoint-range[data-v-cbd98416] .nav-menu-settings:not([data-previous-menu-children-count=\"0\"]) .nav-menu-setting:first-child{border-top:1px solid #b0b0b0;display:flex;align-items:center}[data-v-cbd98416] .nav-menu-settings .nav-menu-setting{display:flex;align-items:center;color:var(--color-nav-current-link);margin-left:0}[data-v-cbd98416] .nav-menu-settings .nav-menu-setting:first-child:not(:only-child){margin-right:.58824rem}.nav--in-breakpoint-range[data-v-cbd98416] .nav-menu-settings .nav-menu-setting:first-child:not(:only-child){margin-right:0}.theme-dark[data-v-cbd98416] .nav-menu-settings .nav-menu-setting{color:var(--color-nav-dark-current-link)}.nav--in-breakpoint-range[data-v-cbd98416] .nav-menu-settings .nav-menu-setting:not(:first-child){border-top:1px solid #424242}.documentation-nav[data-v-cbd98416] .nav-title{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1023px){.documentation-nav[data-v-cbd98416] .nav-title{padding-top:0}}.documentation-nav[data-v-cbd98416] .nav-title .nav-title-link.inactive{height:auto;color:var(--color-figure-gray-secondary-alt)}.theme-dark.documentation-nav .nav-title .nav-title-link.inactive[data-v-cbd98416]{color:#b0b0b0}.sidenav-toggle[data-v-cbd98416]{margin-left:-14px;margin-right:-14px;padding-left:14px;padding-right:14px}.sidenav-toggle .sidenav-icon[data-v-cbd98416]{display:flex;width:19px;height:19px}.doc-topic-view[data-v-6c414c34]{--delay:1s;display:flex;flex-flow:column;background:var(--colors-text-background,var(--color-text-background))}.doc-topic-view .delay-hiding-leave-active[data-v-6c414c34]{transition:display var(--delay)}.doc-topic-aside[data-v-6c414c34]{height:100%;box-sizing:border-box;border-right:1px solid var(--color-grid)}@media only screen and (max-width:1023px){.doc-topic-aside[data-v-6c414c34]{background:var(--color-fill);border-right:none}.animating .doc-topic-aside[data-v-6c414c34]{border-right:1px solid var(--color-grid)}}.topic-wrapper[data-v-6c414c34]{flex:1 1 auto;width:100%}.full-width-container[data-v-6c414c34]{max-width:1920px;margin-left:auto;margin-right:auto}"
  },
  {
    "path": "docs/css/documentation-topic~topic~tutorials-overview.82acfe22.css",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */.svg-icon[data-v-0137d411]{fill:var(--colors-svg-icon-fill-light,var(--color-svg-icon));transform:scale(1);-webkit-transform:scale(1);overflow:visible}.theme-dark .svg-icon[data-v-0137d411]{fill:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.svg-icon.icon-inline[data-v-0137d411]{display:inline-block;vertical-align:middle;fill:currentColor}.svg-icon.icon-inline[data-v-0137d411] .svg-icon-stroke{stroke:currentColor}[data-v-0137d411] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-light,var(--color-svg-icon))}.theme-dark[data-v-0137d411] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.label[data-v-5117d474]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.label+[data-v-5117d474]{margin-top:.4em}.deprecated .label[data-v-5117d474]{color:var(--color-aside-deprecated)}.experiment .label[data-v-5117d474]{color:var(--color-aside-experiment)}.important .label[data-v-5117d474]{color:var(--color-aside-important)}.note .label[data-v-5117d474]{color:var(--color-aside-note)}.tip .label[data-v-5117d474]{color:var(--color-aside-tip)}.warning .label[data-v-5117d474]{color:var(--color-aside-warning)}.doc-topic aside[data-v-5117d474]{border-radius:4px;padding:.94118rem;border:0 solid;border-left-width:6px}.doc-topic aside.deprecated[data-v-5117d474]{background-color:var(--color-aside-deprecated-background);border-color:var(--color-aside-deprecated-border);box-shadow:0 0 0 0 var(--color-aside-deprecated-border) inset,0 0 0 0 var(--color-aside-deprecated-border)}.doc-topic aside.experiment[data-v-5117d474]{background-color:var(--color-aside-experiment-background);border-color:var(--color-aside-experiment-border);box-shadow:0 0 0 0 var(--color-aside-experiment-border) inset,0 0 0 0 var(--color-aside-experiment-border)}.doc-topic aside.important[data-v-5117d474]{background-color:var(--color-aside-important-background);border-color:var(--color-aside-important-border);box-shadow:0 0 0 0 var(--color-aside-important-border) inset,0 0 0 0 var(--color-aside-important-border)}.doc-topic aside.note[data-v-5117d474]{background-color:var(--color-aside-note-background);border-color:var(--color-aside-note-border);box-shadow:0 0 0 0 var(--color-aside-note-border) inset,0 0 0 0 var(--color-aside-note-border)}.doc-topic aside.tip[data-v-5117d474]{background-color:var(--color-aside-tip-background);border-color:var(--color-aside-tip-border);box-shadow:0 0 0 0 var(--color-aside-tip-border) inset,0 0 0 0 var(--color-aside-tip-border)}.doc-topic aside.warning[data-v-5117d474]{background-color:var(--color-aside-warning-background);border-color:var(--color-aside-warning-border);box-shadow:0 0 0 0 var(--color-aside-warning-border) inset,0 0 0 0 var(--color-aside-warning-border)}.doc-topic aside .label[data-v-5117d474]{font-size:1rem;line-height:1.52941;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.file-icon[data-v-7c381064]{position:relative;align-items:flex-end;height:24px;margin:0 .5rem 0 1rem}.filename[data-v-c8c40662]{color:var(--text,var(--colors-secondary-label,var(--color-secondary-label)));font-size:.94118rem;line-height:1.1875;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-top:1rem}@media only screen and (max-width:735px){.filename[data-v-c8c40662]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-top:0}}.filename>a[data-v-c8c40662],.filename>span[data-v-c8c40662]{display:flex;align-items:center;line-height:normal}a[data-v-c8c40662]{color:var(--url,var(--color-link))}.code-line-container[data-v-df963650]{display:flex}.code-number[data-v-df963650]{padding:0 1rem 0 8px;text-align:right;min-width:2em;color:#666;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-number[data-v-df963650]:before{content:attr(data-line-number)}.highlighted[data-v-df963650]{background:var(--line-highlight,var(--color-code-line-highlight));border-left:4px solid var(--color-code-line-highlight-border)}.highlighted .code-number[data-v-df963650]{padding-left:4px}pre[data-v-df963650]{padding:14px 0;display:flex;overflow:unset;-webkit-overflow-scrolling:touch;white-space:pre;word-wrap:normal;height:100%}@media only screen and (max-width:735px){pre[data-v-df963650]{padding-top:.82353rem}}code[data-v-df963650]{display:flex;flex-direction:column;white-space:pre;word-wrap:normal;flex-grow:9999}.code-line-container[data-v-df963650]{flex-shrink:0;padding-right:14px}.code-listing[data-v-df963650],.container-general[data-v-df963650]{display:flex}.code-listing[data-v-df963650]{flex-direction:column;min-height:100%;border-radius:4px;overflow:auto}.code-listing.single-line[data-v-df963650]{border-radius:4px}.container-general[data-v-df963650],pre[data-v-df963650]{flex-grow:1}code[data-v-05f4a5b7]{speak-punctuation:code}code[data-v-d68ae420]{width:100%}.container-general[data-v-d68ae420]{display:flex;flex-flow:row wrap}.container-general .code-line[data-v-d68ae420]{flex:1 0 auto}.code-line-container[data-v-d68ae420]{align-items:center;display:flex;border-left:4px solid transparent;counter-increment:linenumbers;padding-right:14px}.code-number[data-v-d68ae420]{font-size:.70588rem;line-height:1.5;font-weight:400;font-family:Menlo,monospace;padding:0 1rem 0 8px;text-align:right;min-width:2.01em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-number[data-v-d68ae420]:before{content:counter(linenumbers)}.code-line[data-v-d68ae420]{display:flex}pre[data-v-d68ae420]{padding:14px 0;display:flex;flex-flow:row wrap;overflow:auto;-webkit-overflow-scrolling:touch;white-space:pre;word-wrap:normal}@media only screen and (max-width:735px){pre[data-v-d68ae420]{padding-top:.82353rem}}.collapsible-code-listing[data-v-d68ae420]{background:var(--background,var(--color-code-background));border-color:var(--colors-grid,var(--color-grid));color:var(--text,var(--color-code-plain));border-radius:4px;border-style:solid;border-width:1px;counter-reset:linenumbers;font-size:15px}.collapsible-code-listing.single-line[data-v-d68ae420]{border-radius:4px}.collapsible[data-v-d68ae420]{background:var(--color-code-collapsible-background);color:var(--color-code-collapsible-text)}.collapsed[data-v-d68ae420]:before{content:\"⋯\";display:inline-block;font-family:monospace;font-weight:700;height:100%;line-height:1;text-align:right;width:2.3rem}.collapsed .code-line-container[data-v-d68ae420]{height:0;visibility:hidden}.row[data-v-be73599c]{box-sizing:border-box;display:flex;flex-flow:row wrap}.col[data-v-2ee3ad8b]{box-sizing:border-box;flex:none}.xlarge-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.xlarge-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.xlarge-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.xlarge-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.xlarge-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.xlarge-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.xlarge-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.xlarge-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.xlarge-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.xlarge-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.xlarge-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.xlarge-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.xlarge-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.xlarge-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}.large-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.large-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.large-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.large-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.large-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.large-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.large-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.large-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.large-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.large-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.large-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.large-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.large-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.large-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}@media only screen and (max-width:1250px){.medium-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.medium-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.medium-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.medium-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.medium-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.medium-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.medium-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.medium-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.medium-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.medium-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.medium-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.medium-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.medium-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.medium-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}@media only screen and (max-width:735px){.small-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.small-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.small-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.small-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.small-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.small-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.small-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.small-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.small-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.small-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.small-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.small-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.small-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.small-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}.tabnav[data-v-42371214]{margin:.88235rem 0 1.47059rem 0}.tabnav-items[data-v-42371214]{display:inline-block;margin:0;text-align:center}.tabnav-item[data-v-723a9588]{border-bottom:1px solid;border-color:var(--colors-tabnav-item-border-color,var(--color-tabnav-item-border-color));display:inline-block;list-style:none;padding-left:1.76471rem;margin:0;outline:none}.tabnav-item[data-v-723a9588]:first-child{padding-left:0}.tabnav-item[data-v-723a9588]:nth-child(n+1){margin:0}.tabnav-link[data-v-723a9588]{color:var(--colors-secondary-label,var(--color-secondary-label));font-size:1rem;line-height:1;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:9px 0 11px;margin-top:2px;margin-bottom:4px;text-align:left;text-decoration:none;display:block;position:relative;z-index:0}.tabnav-link[data-v-723a9588]:hover{text-decoration:none}.tabnav-link[data-v-723a9588]:focus{outline-offset:-1px}.tabnav-link[data-v-723a9588]:after{content:\"\";position:absolute;bottom:-5px;left:0;width:100%;border:1px solid transparent}.tabnav-link.active[data-v-723a9588]{color:var(--colors-text,var(--color-text));cursor:default;z-index:10}.tabnav-link.active[data-v-723a9588]:after{border-bottom-color:var(--colors-text,var(--color-text))}.controls[data-v-6197ce3f]{margin-top:5px;font-size:14px;display:flex;justify-content:flex-end}.controls a[data-v-6197ce3f]{color:var(--colors-text,var(--color-text));display:flex;align-items:center}.controls .control-icon[data-v-6197ce3f]{width:1.05em;margin-right:.3em}[data-v-7be42fb4] figcaption+*{margin-top:1rem}.caption[data-v-0bcb8b58]{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}[data-v-0bcb8b58] p{display:inline-block}[data-v-3a939631] img{max-width:100%}*+.table-wrapper,.table-wrapper+*{margin-top:1.6em}.nav-menu-items[data-v-67c1c0a5]{display:flex;justify-content:flex-end}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]{display:block;opacity:0;padding:1rem 1.88235rem 1.64706rem 1.88235rem;transform:translate3d(0,-50px,0);transition:transform 1s cubic-bezier(.07,1.06,.27,.95) .5s,opacity .7s cubic-bezier(.07,1.06,.27,.95) .2s}.nav--is-open.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]{opacity:1;transform:translateZ(0);transition-delay:.2s,.4s}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]:not(:only-child):not(:last-child){padding-bottom:0}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]:not(:only-child):last-child{padding-top:0}.table-wrapper[data-v-358dcd5e]{overflow:auto;-webkit-overflow-scrolling:touch}[data-v-358dcd5e] th{font-weight:600}[data-v-358dcd5e] td,[data-v-358dcd5e] th{border-color:var(--color-fill-gray-tertiary);border-style:solid;border-width:1px 0;padding:.58824rem}.nav[data-v-be9ec8e8]{position:sticky;top:0;width:100%;height:3.05882rem;z-index:9997;--nav-padding:1.29412rem;color:var(--color-nav-color)}@media only screen and (max-width:767px){.nav[data-v-be9ec8e8]{min-width:320px;height:2.82353rem}}.theme-dark.nav[data-v-be9ec8e8]{background:none;color:var(--color-nav-dark-color)}.nav__wrapper[data-v-be9ec8e8]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.nav__background[data-v-be9ec8e8]{position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;transition:background-color 0s ease-in}.nav__background[data-v-be9ec8e8]:after{background-color:var(--color-nav-keyline)}.nav--no-bg-transition .nav__background[data-v-be9ec8e8]{transition:none!important}.nav--solid-background .nav__background[data-v-be9ec8e8]{background-color:var(--color-nav-solid-background);-webkit-backdrop-filter:none;backdrop-filter:none}.nav--is-open.nav--solid-background .nav__background[data-v-be9ec8e8],.nav--is-sticking.nav--solid-background .nav__background[data-v-be9ec8e8]{background-color:var(--color-nav-solid-background)}.nav--is-open.theme-dark.nav--solid-background .nav__background[data-v-be9ec8e8],.nav--is-sticking.theme-dark.nav--solid-background .nav__background[data-v-be9ec8e8],.theme-dark.nav--solid-background .nav__background[data-v-be9ec8e8]{background-color:var(--color-nav-dark-solid-background)}.nav--in-breakpoint-range .nav__background[data-v-be9ec8e8]{min-height:2.82353rem;transition:background-color 0s ease .7s}.nav--is-sticking .nav__background[data-v-be9ec8e8]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color 0s ease;transition-property:background-color,-webkit-backdrop-filter;transition-property:background-color,backdrop-filter;transition-property:background-color,backdrop-filter,-webkit-backdrop-filter}.nav--is-sticking .nav__background[data-v-be9ec8e8]:after{background-color:var(--color-nav-sticking-expanded-keyline)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.nav--is-sticking .nav__background[data-v-be9ec8e8]{-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px);background-color:var(--color-nav-uiblur-stuck)}}.theme-dark.nav--is-sticking .nav__background[data-v-be9ec8e8]{background-color:var(--color-nav-dark-stuck)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.theme-dark.nav--is-sticking .nav__background[data-v-be9ec8e8]{background-color:var(--color-nav-dark-uiblur-stuck)}}.nav--is-open .nav__background[data-v-be9ec8e8]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color 0s ease;transition-property:background-color,-webkit-backdrop-filter;transition-property:background-color,backdrop-filter;transition-property:background-color,backdrop-filter,-webkit-backdrop-filter}.nav--is-open .nav__background[data-v-be9ec8e8]:after{background-color:var(--color-nav-sticking-expanded-keyline)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.nav--is-open .nav__background[data-v-be9ec8e8]{-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px);background-color:var(--color-nav-uiblur-expanded)}}.theme-dark.nav--is-open .nav__background[data-v-be9ec8e8]{background-color:var(--color-nav-dark-expanded)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.theme-dark.nav--is-open .nav__background[data-v-be9ec8e8]{background-color:var(--color-nav-dark-uiblur-expanded)}}.theme-dark .nav__background[data-v-be9ec8e8]:after{background-color:var(--color-nav-dark-keyline)}.nav--is-open.theme-dark .nav__background[data-v-be9ec8e8]:after,.nav--is-sticking.theme-dark .nav__background[data-v-be9ec8e8]:after{background-color:var(--color-nav-dark-sticking-expanded-keyline)}.nav__background[data-v-be9ec8e8]:after{content:\"\";display:block;position:absolute;top:100%;left:50%;transform:translateX(-50%);width:980px;height:1px;z-index:1}@media only screen and (max-width:1023px){.nav__background[data-v-be9ec8e8]:after{width:100%}}.nav--noborder .nav__background[data-v-be9ec8e8]:after{display:none}.nav--is-sticking.nav--noborder .nav__background[data-v-be9ec8e8]:after{display:block}.nav--fullwidth-border .nav__background[data-v-be9ec8e8]:after,.nav--is-open .nav__background[data-v-be9ec8e8]:after,.nav--is-sticking .nav__background[data-v-be9ec8e8]:after,.nav--solid-background .nav__background[data-v-be9ec8e8]:after{width:100%}.nav-overlay[data-v-be9ec8e8]{position:fixed;left:0;right:0;top:0;display:block;opacity:0}.nav--is-open .nav-overlay[data-v-be9ec8e8]{background-color:rgba(51,51,51,.4);transition:opacity .7s cubic-bezier(.07,1.06,.27,.95) .2s;bottom:0;opacity:1}.nav-wrapper[data-v-be9ec8e8]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.pre-title[data-v-be9ec8e8],.pre-title[data-v-be9ec8e8]:empty{display:none}.nav--in-breakpoint-range .pre-title[data-v-be9ec8e8]{display:flex;padding:0}.nav-content[data-v-be9ec8e8]{display:flex;padding:0 var(--nav-padding);max-width:980px;margin:0 auto;position:relative;z-index:2;justify-content:space-between}.nav--is-wide-format .nav-content[data-v-be9ec8e8]{box-sizing:border-box;max-width:1920px;margin-left:auto;margin-right:auto}@supports (padding:calc(max(0px))){.nav-content[data-v-be9ec8e8]{padding-left:calc(max(var(--nav-padding), env(safe-area-inset-left)));padding-right:calc(max(var(--nav-padding), env(safe-area-inset-right)))}}@media only screen and (max-width:767px){.nav-content[data-v-be9ec8e8]{padding:0 0 0 .94118rem}}.nav--in-breakpoint-range .nav-content[data-v-be9ec8e8]{display:grid;grid-template-columns:auto 1fr auto;grid-auto-rows:minmax(-webkit-min-content,-webkit-max-content);grid-auto-rows:minmax(min-content,max-content);grid-template-areas:\"pre-title title actions\" \"menu menu menu\"}.nav-menu[data-v-be9ec8e8]{font-size:.70588rem;line-height:1;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;flex:1 1 auto;display:flex;padding-top:10px;min-width:0}@media only screen and (max-width:767px){.nav-menu[data-v-be9ec8e8]{font-size:.82353rem;line-height:1;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.nav--in-breakpoint-range .nav-menu[data-v-be9ec8e8]{font-size:.82353rem;line-height:1;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding-top:0;grid-area:menu}.nav-menu-tray[data-v-be9ec8e8]{width:100%;max-width:100%;align-items:center;display:flex;justify-content:space-between}.nav--in-breakpoint-range .nav-menu-tray[data-v-be9ec8e8]{display:block;overflow:hidden;pointer-events:none;visibility:hidden;max-height:0;transition:max-height .4s ease-in 0s,visibility 0s linear 1s}.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-be9ec8e8]{max-height:calc(100vh - 5.64706rem);overflow-y:auto;-webkit-overflow-scrolling:touch;pointer-events:auto;visibility:visible;transition-delay:.2s,0s}.nav--is-transitioning.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-be9ec8e8]{overflow-y:hidden}.nav--is-sticking.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-be9ec8e8]{max-height:calc(100vh - 2.82353rem)}.nav-actions[data-v-be9ec8e8]{display:flex;align-items:center}.nav--in-breakpoint-range .nav-actions[data-v-be9ec8e8]{grid-area:actions;justify-content:flex-end}@media only screen and (max-width:767px){.nav-actions[data-v-be9ec8e8]{padding-right:.94118rem}}.nav-title[data-v-be9ec8e8]{height:3.05882rem;font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;cursor:default;display:flex;align-items:center;white-space:nowrap;box-sizing:border-box}@media only screen and (max-width:767px){.nav-title[data-v-be9ec8e8]{padding-top:0;height:2.82353rem;width:90%}}.nav--in-breakpoint-range .nav-title[data-v-be9ec8e8]{grid-area:title}.nav--is-wide-format.nav--in-breakpoint-range .nav-title[data-v-be9ec8e8]{width:100%;justify-content:center}.nav-title[data-v-be9ec8e8] span{height:100%;line-height:normal}.nav-title a[data-v-be9ec8e8]{display:inline-block;letter-spacing:inherit;line-height:normal;margin:0;text-decoration:none;white-space:nowrap}.nav-title a[data-v-be9ec8e8]:hover{text-decoration:none}@media only screen and (max-width:767px){.nav-title a[data-v-be9ec8e8]{display:flex}}.nav-title[data-v-be9ec8e8],.nav-title a[data-v-be9ec8e8]{color:var(--color-figure-gray);transition:color 0s ease-in}.nav--is-open.theme-dark .nav-title[data-v-be9ec8e8],.nav--is-open.theme-dark .nav-title a[data-v-be9ec8e8],.nav--is-sticking.theme-dark .nav-title[data-v-be9ec8e8],.nav--is-sticking.theme-dark .nav-title a[data-v-be9ec8e8],.theme-dark .nav-title[data-v-be9ec8e8],.theme-dark .nav-title a[data-v-be9ec8e8]{color:var(--color-nav-dark-link-color)}.nav-ax-toggle[data-v-be9ec8e8]{display:none;position:absolute;top:0;left:0;width:1px;height:1px;z-index:10}.nav-ax-toggle[data-v-be9ec8e8]:focus{outline-offset:-6px;width:100%;height:100%}.nav--in-breakpoint-range .nav-ax-toggle[data-v-be9ec8e8]{display:block}.nav-menucta[data-v-be9ec8e8]{cursor:pointer;display:none;align-items:center;overflow:hidden;width:1.17647rem;-webkit-tap-highlight-color:transparent;height:2.82353rem}.nav--in-breakpoint-range .nav-menucta[data-v-be9ec8e8]{display:flex}.nav-menucta-chevron[data-v-be9ec8e8]{display:block;position:relative;width:100%;height:.70588rem;transition:transform .3s linear}.nav-menucta-chevron[data-v-be9ec8e8]:after,.nav-menucta-chevron[data-v-be9ec8e8]:before{content:\"\";display:block;position:absolute;top:.58824rem;width:.70588rem;height:.05882rem;transition:transform .3s linear;background:var(--color-figure-gray)}.nav-menucta-chevron[data-v-be9ec8e8]:before{right:50%;border-radius:.5px 0 0 .5px}.nav-menucta-chevron[data-v-be9ec8e8]:after{left:50%;border-radius:0 .5px .5px 0}.nav-menucta-chevron[data-v-be9ec8e8]:before{transform-origin:100% 100%;transform:rotate(40deg) scaleY(1.5)}.nav-menucta-chevron[data-v-be9ec8e8]:after{transform-origin:0 100%;transform:rotate(-40deg) scaleY(1.5)}.nav--is-open .nav-menucta-chevron[data-v-be9ec8e8]{transform:scaleY(-1)}.theme-dark .nav-menucta-chevron[data-v-be9ec8e8]:after,.theme-dark .nav-menucta-chevron[data-v-be9ec8e8]:before{background:var(--color-nav-dark-link-color)}[data-v-be9ec8e8] .nav-menu-link{color:var(--color-nav-link-color)}[data-v-be9ec8e8] .nav-menu-link:hover{color:var(--color-nav-link-color-hover);text-decoration:none}.theme-dark[data-v-be9ec8e8] .nav-menu-link{color:var(--color-nav-dark-link-color)}.theme-dark[data-v-be9ec8e8] .nav-menu-link:hover{color:var(--color-nav-dark-link-color-hover)}[data-v-be9ec8e8] .nav-menu-link.current{color:var(--color-nav-current-link);cursor:default}[data-v-be9ec8e8] .nav-menu-link.current:hover{color:var(--color-nav-current-link)}.theme-dark[data-v-be9ec8e8] .nav-menu-link.current,.theme-dark[data-v-be9ec8e8] .nav-menu-link.current:hover{color:var(--color-nav-dark-current-link)}s[data-v-eb91ce54]:after,s[data-v-eb91ce54]:before{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}s[data-v-eb91ce54]:before{content:\" [start of stricken text] \"}s[data-v-eb91ce54]:after{content:\" [end of stricken text] \"}.nav-menu-item[data-v-66cbfe4c]{margin-left:1.41176rem;list-style:none;min-width:0}.nav--in-breakpoint-range .nav-menu-item[data-v-66cbfe4c]{margin-left:0;width:100%;min-height:2.47059rem}.nav--in-breakpoint-range .nav-menu-item[data-v-66cbfe4c]:first-child .nav-menu-link{border-top:0}.nav--in-breakpoint-range .nav-menu-item--animated[data-v-66cbfe4c]{opacity:0;transform:none;transition:.5s ease;transition-property:transform,opacity}.nav--is-open.nav--in-breakpoint-range .nav-menu-item--animated[data-v-66cbfe4c]{opacity:1;transform:translateZ(0);transition-delay:0s}.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"0\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"1\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"2\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"3\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"4\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"5\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"6\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count=\"7\"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7){transition-delay:0s}.button-cta[data-v-494ad9c8]{border-radius:var(--style-button-borderRadius,4px);background:var(--colors-button-light-background,var(--color-button-background));color:var(--colors-button-text,var(--color-button-text));cursor:pointer;min-width:1.76471rem;padding:.23529rem .88235rem;text-align:center;white-space:nowrap;display:inline-block;font-size:1rem;line-height:1.47059;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.button-cta[data-v-494ad9c8]:active{background:var(--colors-button-light-backgroundActive,var(--color-button-background-active));outline:none}.button-cta[data-v-494ad9c8]:hover:not([disabled]){background:var(--colors-button-light-backgroundHover,var(--color-button-background-hover));text-decoration:none}.button-cta[data-v-494ad9c8]:disabled{opacity:.32;cursor:default}.fromkeyboard .button-cta[data-v-494ad9c8]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.button-cta.is-dark[data-v-494ad9c8]{background:var(--colors-button-dark-background,#06f)}.button-cta.is-dark[data-v-494ad9c8]:active{background:var(--colors-button-dark-backgroundActive,var(--color-button-background-active))}.button-cta.is-dark[data-v-494ad9c8]:hover:not([disabled]){background:var(--colors-button-dark-backgroundHover,var(--color-button-background-hover))}"
  },
  {
    "path": "docs/css/index.12bb178a.css",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */.color-scheme-toggle[data-v-4472ec1e]{--toggle-color-fill:var(--color-button-background);--toggle-color-text:var(--color-fill-blue);font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;border:1px solid var(--toggle-color-fill);border-radius:var(--toggle-border-radius-outer,4px);display:inline-flex;padding:1px}@media screen{[data-color-scheme=dark] .color-scheme-toggle[data-v-4472ec1e]{--toggle-color-text:var(--color-figure-blue)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .color-scheme-toggle[data-v-4472ec1e]{--toggle-color-text:var(--color-figure-blue)}}input[data-v-4472ec1e]{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.text[data-v-4472ec1e]{border:1px solid transparent;border-radius:var(--toggle-border-radius-inner,2px);color:var(--toggle-color-text);display:inline-block;text-align:center;padding:1px 6px;min-width:42px;box-sizing:border-box}.text[data-v-4472ec1e]:hover{cursor:pointer}input:checked+.text[data-v-4472ec1e]{--toggle-color-text:var(--color-button-text);background:var(--toggle-color-fill);border-color:var(--toggle-color-fill)}.footer[data-v-72f2e2dc]{border-top:1px solid var(--color-grid)}.row[data-v-72f2e2dc]{margin-left:auto;margin-right:auto;width:980px;display:flex;flex-direction:row-reverse;padding:20px 0}@media only screen and (max-width:1250px){.row[data-v-72f2e2dc]{width:692px}}@media only screen and (max-width:735px){.row[data-v-72f2e2dc]{width:87.5%;width:100%;padding:20px .94118rem;box-sizing:border-box}}.InitialLoadingPlaceholder[data-v-35c356b6]{background:var(--colors-loading-placeholder-background,var(--color-loading-placeholder-background));height:100vh;width:100%}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;background-color:var(--colors-text-background,var(--color-text-background));height:100%}abbr,blockquote,body,button,dd,dl,dt,fieldset,figure,form,h1,h2,h3,h4,h5,h6,hgroup,input,legend,li,ol,p,pre,ul{margin:0;padding:0}address,caption,code,figcaption,pre,th{font-size:1em;font-weight:400;font-style:normal}fieldset,iframe,img{border:0}caption,th{text-align:left}table{border-collapse:collapse;border-spacing:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}button{background:none;border:0;box-sizing:content-box;color:inherit;cursor:pointer;font:inherit;line-height:inherit;overflow:visible;vertical-align:inherit}button:disabled{cursor:default}:focus{outline:4px solid var(--color-focus-color);outline-offset:1px}::-moz-focus-inner{border:0;padding:0}@media print{#content,#main,body{color:#000}a,a:link,a:visited{color:#000;text-decoration:none}.hide,.noprint{display:none}}body{height:100%;min-width:320px}html{font:var(--typography-html-font,17px \"Helvetica Neue\",\"Helvetica\",\"Arial\",sans-serif);quotes:\"“\" \"”\"}body{font-size:1rem;line-height:1.47059;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;background-color:var(--color-text-background);color:var(--colors-text,var(--color-text));font-style:normal;word-wrap:break-word}body,button,input,select,textarea{font-synthesis:none;-moz-font-feature-settings:\"kern\";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}h1,h2,h3,h4,h5,h6{color:var(--colors-header-text,var(--color-header-text))}h1+*,h2+*,h3+*,h4+*,h5+*,h6+*{margin-top:.8em}h1+h1,h1+h2,h1+h3,h1+h4,h1+h5,h1+h6,h2+h1,h2+h2,h2+h3,h2+h4,h2+h5,h2+h6,h3+h1,h3+h2,h3+h3,h3+h4,h3+h5,h3+h6,h4+h1,h4+h2,h4+h3,h4+h4,h4+h5,h4+h6,h5+h1,h5+h2,h5+h3,h5+h4,h5+h5,h5+h6,h6+h1,h6+h2,h6+h3,h6+h4,h6+h5,h6+h6{margin-top:.4em}ol+h1,ol+h2,ol+h3,ol+h4,ol+h5,ol+h6,p+h1,p+h2,p+h3,p+h4,p+h5,p+h6,ul+h1,ul+h2,ul+h3,ul+h4,ul+h5,ul+h6{margin-top:1.6em}ol+*,p+*,ul+*{margin-top:.8em}ol,ul{margin-left:1.17647em}ol ol,ol ul,ul ol,ul ul{margin-top:0;margin-bottom:0}nav ol,nav ul{margin:0;list-style:none}li li{font-size:1em}a{color:var(--colors-link,var(--color-link))}a:link,a:visited{text-decoration:none}a:hover{text-decoration:underline}a:active{text-decoration:none}p+a{display:inline-block}b,strong{font-weight:600}cite,dfn,em,i{font-style:italic}sup{font-size:.6em;vertical-align:top;position:relative;bottom:-.2em}h1 sup,h2 sup,h3 sup{font-size:.4em}sup a{vertical-align:inherit;color:inherit}sup a:hover{color:var(--figure-blue);text-decoration:none}sub{line-height:1}abbr{border:0}pre{overflow:auto;-webkit-overflow-scrolling:auto;white-space:pre;word-wrap:normal}code{font-family:Menlo,monospace;font-weight:inherit;letter-spacing:0}.syntax-comment{color:var(--syntax-comment,var(--color-syntax-comments))}.syntax-quote{color:var(--syntax-quote,var(--color-syntax-comments))}.syntax-keyword{color:var(--syntax-keyword,var(--color-syntax-keywords))}.syntax-literal{color:var(--syntax-literal,var(--color-syntax-keywords))}.syntax-selector-tag{color:var(--syntax-selector-tag,var(--color-syntax-keywords))}.syntax-string{color:var(--syntax-string,var(--color-syntax-strings))}.syntax-bullet{color:var(--syntax-bullet,var(--color-syntax-characters))}.syntax-meta{color:var(--syntax-meta,var(--color-syntax-characters))}.syntax-number{color:var(--syntax-number,var(--color-syntax-characters))}.syntax-symbol{color:var(--syntax-symbol,var(--color-syntax-characters))}.syntax-tag{color:var(--syntax-tag,var(--color-syntax-characters))}.syntax-attr{color:var(--syntax-attr,var(--color-syntax-other-type-names))}.syntax-built_in{color:var(--syntax-built_in,var(--color-syntax-other-type-names))}.syntax-builtin-name{color:var(--syntax-builtin-name,var(--color-syntax-other-type-names))}.syntax-class{color:var(--syntax-class,var(--color-syntax-other-type-names))}.syntax-params{color:var(--syntax-params,var(--color-syntax-other-type-names))}.syntax-section{color:var(--syntax-section,var(--color-syntax-other-type-names))}.syntax-title{color:var(--syntax-title,var(--color-syntax-other-type-names))}.syntax-type{color:var(--syntax-type,var(--color-syntax-other-type-names))}.syntax-attribute{color:var(--syntax-attribute,var(--color-syntax-plain-text))}.syntax-identifier{color:var(--syntax-identifier,var(--color-syntax-plain-text))}.syntax-subst{color:var(--syntax-subst,var(--color-syntax-plain-text))}.syntax-doctag,.syntax-strong{font-weight:700}.syntax-emphasis,.syntax-link{font-style:italic}[data-syntax=swift] .syntax-meta{color:var(--syntax-meta,var(--color-syntax-keywords))}[data-syntax=swift] .syntax-class,[data-syntax=swift] .syntax-keyword+.syntax-params,[data-syntax=swift] .syntax-params+.syntax-params{color:unset}[data-syntax=json] .syntax-attr{color:var(--syntax-attr,var(--color-syntax-strings))}#skip-nav{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}#skip-nav:active,#skip-nav:focus{position:relative;float:left;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;color:var(--color-figure-blue);font-size:1em;padding:0 10px;z-index:100000;top:0;left:0;height:44px;line-height:44px;-webkit-clip-path:unset;clip-path:unset}.nav--in-breakpoint-range #skip-nav{display:none}.visuallyhidden{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}.changed{border:1px solid var(--color-changes-modified);border-radius:4px;position:relative}.changed.has-multiple-lines,.has-multiple-lines .changed{border-radius:4px}.changed:after{left:8px;background-image:url(../img/modified-icon.f496e73d.svg);background-repeat:no-repeat;bottom:0;content:\" \";margin:auto;margin-right:8px;position:absolute;top:0;width:1.17647rem;height:1.17647rem;margin-top:.61765rem;z-index:2}@media screen{[data-color-scheme=dark] .changed:after{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed:after{background-image:url(../img/modified-icon.f496e73d.svg)}}.changed-added{border-color:var(--color-changes-added)}.changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}.changed-deprecated{border-color:var(--color-changes-deprecated)}.changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.changed.link-block:after,.changed.relationships-item:after,.link-block .changed:after{margin-top:10px}.change-added,.change-removed{padding:2px 0}.change-removed{background-color:var(--color-highlight-red)}.change-added{background-color:var(--color-highlight-green)}body{color-scheme:light dark}body[data-color-scheme=light]{color-scheme:light}body[data-color-scheme=dark]{color-scheme:dark}body{--color-fill:#fff;--color-fill-secondary:#f7f7f7;--color-fill-tertiary:#f0f0f0;--color-fill-quaternary:#282828;--color-fill-blue:#00f;--color-fill-light-blue-secondary:#d1d1ff;--color-fill-gray:#ccc;--color-fill-gray-secondary:#f5f5f5;--color-fill-gray-tertiary:#f0f0f0;--color-fill-gray-quaternary:#f0f0f0;--color-fill-green-secondary:#f0fff0;--color-fill-orange-secondary:#fffaf6;--color-fill-red-secondary:#fff0f5;--color-figure-blue:#36f;--color-figure-gray:#000;--color-figure-gray-secondary:#666;--color-figure-gray-secondary-alt:#666;--color-figure-gray-tertiary:#666;--color-figure-green:green;--color-figure-light-gray:#666;--color-figure-orange:#c30;--color-figure-red:red;--color-tutorials-teal:#000;--color-article-background:var(--color-fill-tertiary);--color-article-body-background:var(--color-fill);--color-aside-deprecated:var(--color-figure-gray);--color-aside-deprecated-background:var(--color-fill-orange-secondary);--color-aside-deprecated-border:var(--color-figure-orange);--color-aside-experiment:var(--color-figure-gray);--color-aside-experiment-background:var(--color-fill-gray-secondary);--color-aside-experiment-border:var(--color-figure-light-gray);--color-aside-important:var(--color-figure-gray);--color-aside-important-background:var(--color-fill-gray-secondary);--color-aside-important-border:var(--color-figure-light-gray);--color-aside-note:var(--color-figure-gray);--color-aside-note-background:var(--color-fill-gray-secondary);--color-aside-note-border:var(--color-figure-light-gray);--color-aside-tip:var(--color-figure-gray);--color-aside-tip-background:var(--color-fill-gray-secondary);--color-aside-tip-border:var(--color-figure-light-gray);--color-aside-warning:var(--color-figure-gray);--color-aside-warning-background:var(--color-fill-red-secondary);--color-aside-warning-border:var(--color-figure-red);--color-badge-default:var(--color-figure-light-gray);--color-badge-beta:var(--color-figure-gray-tertiary);--color-badge-deprecated:var(--color-figure-orange);--color-badge-dark-default:#fff;--color-badge-dark-beta:#b0b0b0;--color-badge-dark-deprecated:#f60;--color-button-background:var(--color-fill-blue);--color-button-background-active:#36f;--color-button-background-hover:var(--color-figure-blue);--color-button-text:#fff;--color-call-to-action-background:var(--color-fill-secondary);--color-changes-added:var(--color-figure-light-gray);--color-changes-added-hover:var(--color-figure-light-gray);--color-changes-deprecated:var(--color-figure-light-gray);--color-changes-deprecated-hover:var(--color-figure-light-gray);--color-changes-modified:var(--color-figure-light-gray);--color-changes-modified-hover:var(--color-figure-light-gray);--color-changes-modified-previous-background:var(--color-fill);--color-code-background:var(--color-fill-secondary);--color-code-collapsible-background:var(--color-fill-tertiary);--color-code-collapsible-text:var(--color-figure-gray-secondary-alt);--color-code-line-highlight:rgba(51,102,255,0.08);--color-code-line-highlight-border:var(--color-figure-blue);--color-code-plain:var(--color-figure-gray);--color-dropdown-background:hsla(0,0%,100%,0.8);--color-dropdown-border:#ccc;--color-dropdown-option-text:#666;--color-dropdown-text:#000;--color-dropdown-dark-background:hsla(0,0%,100%,0.1);--color-dropdown-dark-border:hsla(0,0%,94.1%,0.2);--color-dropdown-dark-option-text:#ccc;--color-dropdown-dark-text:#fff;--color-eyebrow:var(--color-figure-gray-secondary);--color-focus-border-color:var(--color-fill-blue);--color-focus-color:rgba(0,125,250,0.6);--color-form-error:var(--color-figure-red);--color-form-error-background:var(--color-fill-red-secondary);--color-form-valid:var(--color-figure-green);--color-form-valid-background:var(--color-fill-green-secondary);--color-generic-modal-background:var(--color-fill);--color-grid:var(--color-fill-gray);--color-header-text:var(--color-figure-gray);--color-hero-eyebrow:#ccc;--color-link:var(--color-figure-blue);--color-loading-placeholder-background:var(--color-fill);--color-nav-color:#666;--color-nav-current-link:rgba(0,0,0,0.6);--color-nav-expanded:#fff;--color-nav-hierarchy-collapse-background:#f0f0f0;--color-nav-hierarchy-collapse-borders:#ccc;--color-nav-hierarchy-item-borders:#ccc;--color-nav-keyline:rgba(0,0,0,0.2);--color-nav-link-color:#000;--color-nav-link-color-hover:#36f;--color-nav-outlines:#ccc;--color-nav-rule:hsla(0,0%,94.1%,0.5);--color-nav-solid-background:#fff;--color-nav-sticking-expanded-keyline:rgba(0,0,0,0.1);--color-nav-stuck:hsla(0,0%,100%,0.9);--color-nav-uiblur-expanded:hsla(0,0%,100%,0.9);--color-nav-uiblur-stuck:hsla(0,0%,100%,0.7);--color-nav-root-subhead:var(--color-tutorials-teal);--color-nav-dark-border-top-color:hsla(0,0%,100%,0.4);--color-nav-dark-color:#b0b0b0;--color-nav-dark-current-link:hsla(0,0%,100%,0.6);--color-nav-dark-expanded:#2a2a2a;--color-nav-dark-hierarchy-collapse-background:#424242;--color-nav-dark-hierarchy-collapse-borders:#666;--color-nav-dark-hierarchy-item-borders:#424242;--color-nav-dark-keyline:rgba(66,66,66,0.95);--color-nav-dark-link-color:#fff;--color-nav-dark-link-color-hover:#09f;--color-nav-dark-outlines:#575757;--color-nav-dark-rule:#575757;--color-nav-dark-solid-background:#000;--color-nav-dark-sticking-expanded-keyline:rgba(66,66,66,0.7);--color-nav-dark-stuck:rgba(42,42,42,0.9);--color-nav-dark-uiblur-expanded:rgba(42,42,42,0.9);--color-nav-dark-uiblur-stuck:rgba(42,42,42,0.7);--color-nav-dark-root-subhead:#fff;--color-runtime-preview-background:var(--color-fill-tertiary);--color-runtime-preview-disabled-text:hsla(0,0%,40%,0.6);--color-runtime-preview-text:var(--color-figure-gray-secondary);--color-secondary-label:var(--color-figure-gray-secondary);--color-step-background:var(--color-fill-secondary);--color-step-caption:var(--color-figure-gray-secondary);--color-step-focused:var(--color-figure-light-gray);--color-step-text:var(--color-figure-gray-secondary);--color-svg-icon:#666;--color-syntax-attributes:#947100;--color-syntax-characters:#272ad8;--color-syntax-comments:#707f8c;--color-syntax-documentation-markup:#506375;--color-syntax-documentation-markup-keywords:#506375;--color-syntax-heading:#ba2da2;--color-syntax-keywords:#ad3da4;--color-syntax-marks:#000;--color-syntax-numbers:#272ad8;--color-syntax-other-class-names:#703daa;--color-syntax-other-constants:#4b21b0;--color-syntax-other-declarations:#047cb0;--color-syntax-other-function-and-method-names:#4b21b0;--color-syntax-other-instance-variables-and-globals:#703daa;--color-syntax-other-preprocessor-macros:#78492a;--color-syntax-other-type-names:#703daa;--color-syntax-param-internal-name:#404040;--color-syntax-plain-text:#000;--color-syntax-preprocessor-statements:#78492a;--color-syntax-project-class-names:#3e8087;--color-syntax-project-constants:#2d6469;--color-syntax-project-function-and-method-names:#2d6469;--color-syntax-project-instance-variables-and-globals:#3e8087;--color-syntax-project-preprocessor-macros:#78492a;--color-syntax-project-type-names:#3e8087;--color-syntax-strings:#d12f1b;--color-syntax-type-declarations:#03638c;--color-syntax-urls:#1337ff;--color-tabnav-item-border-color:var(--color-fill-gray);--color-text:var(--color-figure-gray);--color-text-background:var(--color-fill);--color-tutorial-assessments-background:var(--color-fill-secondary);--color-tutorial-background:var(--color-fill);--color-tutorial-navbar-dropdown-background:var(--color-fill);--color-tutorial-navbar-dropdown-border:var(--color-fill-gray);--color-tutorial-quiz-border-active:var(--color-figure-blue);--color-tutorials-overview-background:#161616;--color-tutorials-overview-content:#fff;--color-tutorials-overview-content-alt:#fff;--color-tutorials-overview-eyebrow:#ccc;--color-tutorials-overview-icon:#b0b0b0;--color-tutorials-overview-link:#09f;--color-tutorials-overview-navigation-link:#ccc;--color-tutorials-overview-navigation-link-active:#fff;--color-tutorials-overview-navigation-link-hover:#fff;--color-tutorial-hero-text:#fff;--color-tutorial-hero-background:#000;--color-navigator-item-hover:rgba(0,0,255,0.05)}@media screen{body[data-color-scheme=dark]{--color-fill:#000;--color-fill-secondary:#161616;--color-fill-tertiary:#2a2a2a;--color-fill-blue:#06f;--color-fill-light-blue-secondary:#004ec4;--color-fill-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#424242;--color-fill-gray-quaternary:#424242;--color-fill-green-secondary:#030;--color-fill-orange-secondary:#472400;--color-fill-red-secondary:#300;--color-figure-blue:#09f;--color-figure-gray:#fff;--color-figure-gray-secondary:#ccc;--color-figure-gray-secondary-alt:#b0b0b0;--color-figure-gray-tertiary:#b0b0b0;--color-figure-green:#090;--color-figure-light-gray:#b0b0b0;--color-figure-orange:#f60;--color-figure-red:#f33;--color-tutorials-teal:#fff;--color-article-body-background:#111;--color-badge-default:var(--color-badge-dark-default);--color-button-background-active:#06f;--color-code-line-highlight:rgba(0,153,255,0.08);--color-dropdown-background:var(--color-dropdown-dark-background);--color-dropdown-border:var(--color-dropdown-dark-border);--color-dropdown-option-text:var(--color-dropdown-dark-option-text);--color-dropdown-text:var(--color-dropdown-dark-text);--color-nav-color:var(--color-nav-dark-color);--color-nav-current-link:var(--color-nav-dark-current-link);--color-nav-expanded:var(--color-nav-dark-expanded);--color-nav-hierarchy-collapse-background:var(--color-nav-dark-hierarchy-collapse-background);--color-nav-hierarchy-collapse-borders:var(--color-nav-dark-hierarchy-collapse-borders);--color-nav-hierarchy-item-borders:var(--color-nav-dark-hierarchy-item-borders);--color-nav-keyline:var(--color-nav-dark-keyline);--color-nav-link-color:var(--color-nav-dark-link-color);--color-nav-link-color-hover:var(--color-nav-dark-link-color-hover);--color-nav-outlines:var(--color-nav-dark-outlines);--color-nav-rule:var(--color-nav-dark-rule);--color-nav-solid-background:var(--color-nav-dark-solid-background);--color-nav-sticking-expanded-keyline:var(--color-nav-dark-sticking-expanded-keyline);--color-nav-stuck:var(--color-nav-dark-stuck);--color-nav-uiblur-expanded:var(--color-nav-dark-uiblur-expanded);--color-nav-uiblur-stuck:var(--color-nav-dark-uiblur-stuck);--color-runtime-preview-disabled-text:hsla(0,0%,80%,0.6);--color-syntax-attributes:#cc9768;--color-syntax-characters:#d9c97c;--color-syntax-comments:#7f8c98;--color-syntax-documentation-markup:#7f8c98;--color-syntax-documentation-markup-keywords:#a3b1bf;--color-syntax-keywords:#ff7ab2;--color-syntax-marks:#fff;--color-syntax-numbers:#d9c97c;--color-syntax-other-class-names:#dabaff;--color-syntax-other-constants:#a7ebdd;--color-syntax-other-declarations:#4eb0cc;--color-syntax-other-function-and-method-names:#b281eb;--color-syntax-other-instance-variables-and-globals:#b281eb;--color-syntax-other-preprocessor-macros:#ffa14f;--color-syntax-other-type-names:#dabaff;--color-syntax-param-internal-name:#bfbfbf;--color-syntax-plain-text:#fff;--color-syntax-preprocessor-statements:#ffa14f;--color-syntax-project-class-names:#acf2e4;--color-syntax-project-constants:#78c2b3;--color-syntax-project-function-and-method-names:#78c2b3;--color-syntax-project-instance-variables-and-globals:#78c2b3;--color-syntax-project-preprocessor-macros:#ffa14f;--color-syntax-project-type-names:#acf2e4;--color-syntax-strings:#ff8170;--color-syntax-type-declarations:#6bdfff;--color-syntax-urls:#69f;--color-tutorial-background:var(--color-fill-tertiary);--color-navigator-item-hover:rgba(0,102,255,0.5)}}@media screen and (prefers-color-scheme:dark){body[data-color-scheme=auto]{--color-fill:#000;--color-fill-secondary:#161616;--color-fill-tertiary:#2a2a2a;--color-fill-blue:#06f;--color-fill-light-blue-secondary:#004ec4;--color-fill-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#424242;--color-fill-gray-quaternary:#424242;--color-fill-green-secondary:#030;--color-fill-orange-secondary:#472400;--color-fill-red-secondary:#300;--color-figure-blue:#09f;--color-figure-gray:#fff;--color-figure-gray-secondary:#ccc;--color-figure-gray-secondary-alt:#b0b0b0;--color-figure-gray-tertiary:#b0b0b0;--color-figure-green:#090;--color-figure-light-gray:#b0b0b0;--color-figure-orange:#f60;--color-figure-red:#f33;--color-tutorials-teal:#fff;--color-article-body-background:#111;--color-badge-default:var(--color-badge-dark-default);--color-button-background-active:#06f;--color-code-line-highlight:rgba(0,153,255,0.08);--color-dropdown-background:var(--color-dropdown-dark-background);--color-dropdown-border:var(--color-dropdown-dark-border);--color-dropdown-option-text:var(--color-dropdown-dark-option-text);--color-dropdown-text:var(--color-dropdown-dark-text);--color-nav-color:var(--color-nav-dark-color);--color-nav-current-link:var(--color-nav-dark-current-link);--color-nav-expanded:var(--color-nav-dark-expanded);--color-nav-hierarchy-collapse-background:var(--color-nav-dark-hierarchy-collapse-background);--color-nav-hierarchy-collapse-borders:var(--color-nav-dark-hierarchy-collapse-borders);--color-nav-hierarchy-item-borders:var(--color-nav-dark-hierarchy-item-borders);--color-nav-keyline:var(--color-nav-dark-keyline);--color-nav-link-color:var(--color-nav-dark-link-color);--color-nav-link-color-hover:var(--color-nav-dark-link-color-hover);--color-nav-outlines:var(--color-nav-dark-outlines);--color-nav-rule:var(--color-nav-dark-rule);--color-nav-solid-background:var(--color-nav-dark-solid-background);--color-nav-sticking-expanded-keyline:var(--color-nav-dark-sticking-expanded-keyline);--color-nav-stuck:var(--color-nav-dark-stuck);--color-nav-uiblur-expanded:var(--color-nav-dark-uiblur-expanded);--color-nav-uiblur-stuck:var(--color-nav-dark-uiblur-stuck);--color-runtime-preview-disabled-text:hsla(0,0%,80%,0.6);--color-syntax-attributes:#cc9768;--color-syntax-characters:#d9c97c;--color-syntax-comments:#7f8c98;--color-syntax-documentation-markup:#7f8c98;--color-syntax-documentation-markup-keywords:#a3b1bf;--color-syntax-keywords:#ff7ab2;--color-syntax-marks:#fff;--color-syntax-numbers:#d9c97c;--color-syntax-other-class-names:#dabaff;--color-syntax-other-constants:#a7ebdd;--color-syntax-other-declarations:#4eb0cc;--color-syntax-other-function-and-method-names:#b281eb;--color-syntax-other-instance-variables-and-globals:#b281eb;--color-syntax-other-preprocessor-macros:#ffa14f;--color-syntax-other-type-names:#dabaff;--color-syntax-param-internal-name:#bfbfbf;--color-syntax-plain-text:#fff;--color-syntax-preprocessor-statements:#ffa14f;--color-syntax-project-class-names:#acf2e4;--color-syntax-project-constants:#78c2b3;--color-syntax-project-function-and-method-names:#78c2b3;--color-syntax-project-instance-variables-and-globals:#78c2b3;--color-syntax-project-preprocessor-macros:#ffa14f;--color-syntax-project-type-names:#acf2e4;--color-syntax-strings:#ff8170;--color-syntax-type-declarations:#6bdfff;--color-syntax-urls:#69f;--color-tutorial-background:var(--color-fill-tertiary);--color-navigator-item-hover:rgba(0,102,255,0.5)}}#main{outline-style:none}:root{--app-height:100vh}[data-v-6f639c59] :focus:not(input):not(textarea):not(select){outline:none}.fromkeyboard[data-v-6f639c59] :focus:not(input):not(textarea):not(select){outline:4px solid var(--color-focus-color);outline-offset:1px}#app[data-v-6f639c59]{display:grid;grid-template-rows:auto 1fr auto;min-height:100%}#app[data-v-6f639c59]>*{min-width:0}#app.hascustomheader[data-v-6f639c59]{grid-template-rows:auto auto 1fr auto}.container[data-v-790053de]{margin-left:auto;margin-right:auto;width:980px;outline-style:none;margin-top:92px;margin-bottom:140px}@media only screen and (max-width:1250px){.container[data-v-790053de]{width:692px}}@media only screen and (max-width:735px){.container[data-v-790053de]{width:87.5%}}.error-content[data-v-790053de]{box-sizing:border-box;width:502px;margin-left:auto;margin-right:auto;margin-bottom:54px}@media only screen and (max-width:1250px){.error-content[data-v-790053de]{width:420px;margin-bottom:45px}}@media only screen and (max-width:735px){.error-content[data-v-790053de]{max-width:330px;width:auto;margin-bottom:35px}}.title[data-v-790053de]{text-align:center;font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1250px){.title[data-v-790053de]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-790053de]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}"
  },
  {
    "path": "docs/css/topic.ee15af52.css",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */.nav-title-content[data-v-60ea3af8]{max-width:100%}.title[data-v-60ea3af8]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block;vertical-align:top;max-width:296px}@media only screen and (max-width:1023px){.title[data-v-60ea3af8]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-60ea3af8]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-60ea3af8]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-60ea3af8]{color:var(--color-nav-dark-root-subhead)}.mobile-dropdown[data-v-154acfbd]{box-sizing:border-box}.nav--in-breakpoint-range .mobile-dropdown[data-v-154acfbd]{padding-left:.23529rem;padding-right:.23529rem}.mobile-dropdown ul[data-v-154acfbd]{list-style:none}.mobile-dropdown .option[data-v-154acfbd]{cursor:pointer;font-size:.70588rem;padding:.5rem 0;display:block;text-decoration:none;color:inherit}.mobile-dropdown .option[data-v-154acfbd]:focus{outline-offset:0}.mobile-dropdown .option.depth1[data-v-154acfbd]{padding-left:.47059rem}.active[data-v-154acfbd],.tutorial.router-link-active[data-v-154acfbd]{font-weight:600}.active[data-v-154acfbd]:focus,.tutorial.router-link-active[data-v-154acfbd]:focus{outline:none}.chapter-list[data-v-154acfbd]:not(:first-child){margin-top:1rem}.chapter-name[data-v-154acfbd],.tutorial[data-v-154acfbd]{padding:.5rem 0;font-size:1rem;line-height:1.47059;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.section-list[data-v-154acfbd],.tutorial-list[data-v-154acfbd]{padding:0 .58824rem}.chapter-list:last-child .tutorial-list[data-v-154acfbd]:last-child{padding-bottom:10em}.chapter-list[data-v-154acfbd]{display:inline-block}.form-element[data-v-998803d8]{position:relative}.form-dropdown[data-v-998803d8]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:block;box-sizing:border-box;width:100%;height:3.3em;color:var(--color-dropdown-text);padding:1.11765rem 2.35294rem 0 .94118rem;text-align:left;border:1px solid var(--color-dropdown-border);border-radius:4px;background-clip:padding-box;margin-bottom:.82353rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;min-height:32px}.form-dropdown[data-v-998803d8]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.form-dropdown.no-eyebrow[data-v-998803d8]{padding-top:0}.form-dropdown[data-v-998803d8]:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--color-dropdown-text)}.form-dropdown[data-v-998803d8]::-ms-expand{opacity:0}.form-dropdown~.form-icon[data-v-998803d8]{position:absolute;display:block;pointer-events:none;fill:var(--color-figure-gray-tertiary);right:14px;width:13px;height:auto;top:50%;transform:translateY(-50%)}.is-open .form-dropdown~.form-icon[data-v-998803d8]{transform:translateY(-50%) scale(-1)}@media only screen and (max-width:735px){.form-dropdown~.form-icon[data-v-998803d8]{right:14px}}.form-dropdown~.form-label[data-v-998803d8]{font-size:.70588rem;line-height:1.75;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;position:absolute;top:.47059rem;left:17px;color:var(--color-figure-gray-secondary);pointer-events:none;padding:0;z-index:1}.form-dropdown[data-v-998803d8] option{color:var(--color-dropdown-text)}.form-dropdown-selectnone[data-v-998803d8]{color:transparent}.form-dropdown-selectnone~.form-label[data-v-998803d8]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;top:19px;left:17px;color:var(--color-figure-gray-tertiary)}.form-dropdown-selectnone[data-v-998803d8]:-moz-focusring{text-shadow:none}.form-dropdown-selectnone[data-v-998803d8]::-ms-value{display:none}.theme-dark .form-dropdown[data-v-998803d8]{color:var(--color-dropdown-dark-text);background-color:var(--color-dropdown-dark-background);border-color:var(--color-dropdown-dark-border)}.theme-dark .form-dropdown~.form-label[data-v-998803d8]{color:#ccc}.theme-dark .form-dropdown[data-v-998803d8]:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--color-dropdown-dark-text)}.theme-dark .form-dropdown.form-dropdown-selectnone[data-v-998803d8]{color:transparent}.theme-dark .form-dropdown.form-dropdown-selectnone[data-v-998803d8]:-moz-focusring{text-shadow:none}.theme-dark .form-dropdown-selectnone~.form-label[data-v-998803d8]{color:#b0b0b0}.dropdown-small[data-v-12dd746a]{height:30px;display:flex;align-items:center;position:relative;background:var(--color-fill)}.dropdown-small .form-dropdown-toggle[data-v-12dd746a]{line-height:1.5;font-size:12px;padding-top:0;padding-bottom:0;padding-left:20px;min-height:unset;height:30px;display:flex;align-items:center}.dropdown-small .form-dropdown-toggle[data-v-12dd746a]:focus{box-shadow:none;border-color:var(--color-dropdown-border)}.fromkeyboard .dropdown-small .form-dropdown-toggle[data-v-12dd746a]:focus{box-shadow:0 0 0 2px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.form-dropdown-toggle[data-v-12dd746a]{margin:0}.is-open .form-dropdown-toggle[data-v-12dd746a]{border-radius:4px 4px 0 0;border-bottom:none;padding-bottom:1px}.fromkeyboard .is-open .form-dropdown-toggle[data-v-12dd746a]{box-shadow:1px -1px 0 1px var(--color-focus-color),-1px -1px 0 1px var(--color-focus-color);border-color:var(--color-focus-border-color)}.form-dropdown-title[data-v-12dd746a]{margin:0;padding:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.dropdown-custom[data-v-12dd746a]{border-radius:4px}.dropdown-custom.is-open[data-v-12dd746a]{border-radius:4px 4px 0 0}.dropdown-custom[data-v-12dd746a] .form-dropdown-content{background:var(--color-fill);position:absolute;right:0;left:0;top:100%;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border:1px solid var(--color-dropdown-border);border-top:none;display:none;overflow-y:auto}.dropdown-custom[data-v-12dd746a] .form-dropdown-content.is-open{display:block}.fromkeyboard .dropdown-custom[data-v-12dd746a] .form-dropdown-content.is-open{box-shadow:1px 1px 0 1px var(--color-focus-color),-1px 1px 0 1px var(--color-focus-color);border-color:var(--color-focus-border-color);border-top-color:transparent}.nav .dropdown-custom[data-v-12dd746a] .form-dropdown-content{max-height:calc(100vh - 116px - 3.05882rem)}.nav--is-sticking.nav .dropdown-custom[data-v-12dd746a] .form-dropdown-content{max-height:calc(100vh - 3.05882rem - 72px)}.dropdown-custom[data-v-12dd746a] .options{list-style:none;margin:0;padding:0 0 20px}.dropdown-custom[data-v-12dd746a] .option{cursor:pointer;padding:5px 20px;font-size:12px;line-height:20px;outline:none}.dropdown-custom[data-v-12dd746a] .option:hover{background-color:var(--color-fill-tertiary)}.dropdown-custom[data-v-12dd746a] .option.option-active{font-weight:600}.fromkeyboard .dropdown-custom[data-v-12dd746a] .option:hover{background-color:transparent}.fromkeyboard .dropdown-custom[data-v-12dd746a] .option:focus{background-color:var(--color-fill-tertiary);outline:none}.tutorial-dropdown[data-v-4a151342]{grid-column:3}.section-tracker[data-v-4a151342]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-figure-gray-secondary);margin-left:15px}.tutorial-dropdown[data-v-78dc103f]{grid-column:1/2}.tutorial-dropdown .options[data-v-78dc103f]{padding-top:1rem;padding-bottom:0}.tutorial-dropdown .option[data-v-78dc103f]{padding:5px 20px 5px 30px}.chapter-list[data-v-78dc103f]{padding-bottom:20px}.chapter-name[data-v-78dc103f]{margin:0 20px 5px 20px;line-height:normal;color:var(--color-figure-gray-secondary)}.chevron-icon[data-v-26e19f17]{padding:0;color:var(--color-nav-outlines);grid-column:2;height:20px;width:20px;margin:0 4px}@media only screen and (min-width:768px){.nav[data-v-26e19f17] .nav-content{display:grid;grid-template-columns:auto auto 3fr;align-items:center}.nav[data-v-26e19f17] .nav-menu{padding:0;grid-column:3/5}.nav[data-v-26e19f17] .nav-menu-item{margin:0}}.dropdown-container[data-v-26e19f17]{height:3.05882rem;display:grid;grid-template-columns:minmax(230px,285px) auto minmax(230px,1fr);align-items:center}@media only screen and (max-width:1023px){.dropdown-container[data-v-26e19f17]{grid-template-columns:minmax(173px,216px) auto minmax(173px,1fr)}}.separator[data-v-26e19f17]{height:20px;border-right:1px solid;border-color:var(--color-nav-outlines);margin:0 20px;grid-column:2}.mobile-dropdown-container[data-v-26e19f17],.nav--in-breakpoint-range.nav .dropdown-container[data-v-26e19f17],.nav--in-breakpoint-range.nav .separator[data-v-26e19f17]{display:none}.nav--in-breakpoint-range.nav .mobile-dropdown-container[data-v-26e19f17]{display:block}.nav--in-breakpoint-range.nav[data-v-26e19f17] .nav-title{grid-area:title}.nav--in-breakpoint-range.nav[data-v-26e19f17] .pre-title{display:none}.nav[data-v-26e19f17] .nav-title{grid-column:1;width:90%;padding-top:0}.primary-dropdown[data-v-26e19f17],.secondary-dropdown[data-v-26e19f17]{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-26e19f17] .form-dropdown,.primary-dropdown[data-v-26e19f17] .form-dropdown:focus,.secondary-dropdown[data-v-26e19f17] .form-dropdown,.secondary-dropdown[data-v-26e19f17] .form-dropdown:focus{border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-26e19f17] .options,.secondary-dropdown[data-v-26e19f17] .options{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}.replay-button[data-v-59608016]{display:flex;align-items:center;justify-content:center;cursor:pointer;visibility:hidden;margin-top:.5rem;-webkit-tap-highlight-color:transparent}.replay-button.visible[data-v-59608016]{visibility:visible}.replay-button svg.replay-icon[data-v-59608016]{height:12px;width:12px;margin-left:.3em}[data-v-1b5cc854] img,[data-v-1b5cc854] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}[data-v-3cfe1c35] .code-listing+*,[data-v-3cfe1c35] aside+*,[data-v-3cfe1c35] h2+*,[data-v-3cfe1c35] h3+*,[data-v-3cfe1c35] ol+*,[data-v-3cfe1c35] p+*,[data-v-3cfe1c35] ul+*{margin-top:20px}[data-v-3cfe1c35] ol ol,[data-v-3cfe1c35] ol ul,[data-v-3cfe1c35] ul ol,[data-v-3cfe1c35] ul ul{margin-top:0}[data-v-3cfe1c35] h2{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1250px){[data-v-3cfe1c35] h2{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){[data-v-3cfe1c35] h2{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-3cfe1c35] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1250px){[data-v-3cfe1c35] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-3cfe1c35] .code-listing{background:var(--color-code-background);border-color:var(--colors-grid,var(--color-grid));border-style:solid;border-width:1px}[data-v-3cfe1c35] .code-listing pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:Menlo,monospace;padding:20px 0}.columns[data-v-30edf911]{display:grid;grid-template-rows:repeat(2,auto)}.columns.cols-2[data-v-30edf911]{gap:20px 8.33333%;grid-template-columns:repeat(2,1fr)}.columns.cols-3[data-v-30edf911]{gap:20px 4.16667%;grid-template-columns:repeat(3,1fr)}.asset[data-v-30edf911]{align-self:end;grid-row:1}.content[data-v-30edf911]{grid-row:2}@media only screen and (max-width:735px){.columns.cols-2[data-v-30edf911],.columns.cols-3[data-v-30edf911]{grid-template-columns:unset}.asset[data-v-30edf911],.content[data-v-30edf911]{grid-row:auto}}.content-and-media[data-v-3fa44f9e]{display:flex}.content-and-media.media-leading[data-v-3fa44f9e]{flex-direction:row-reverse}.content-and-media.media-trailing[data-v-3fa44f9e]{flex-direction:row}@media only screen and (min-width:736px){.content-and-media[data-v-3fa44f9e]{align-items:center;justify-content:center}}.content[data-v-3fa44f9e]{width:62.5%}.asset[data-v-3fa44f9e]{width:29.16667%}.media-leading .asset[data-v-3fa44f9e]{margin-right:8.33333%}.media-trailing .asset[data-v-3fa44f9e]{margin-left:8.33333%}@media only screen and (max-width:735px){.content-and-media.media-leading[data-v-3fa44f9e],.content-and-media.media-trailing[data-v-3fa44f9e]{flex-direction:column}.asset[data-v-3fa44f9e],.content[data-v-3fa44f9e]{width:100%}.media-leading .asset[data-v-3fa44f9e],.media-trailing .asset[data-v-3fa44f9e]{margin:20px 0 0 0}}.group[id][data-v-1f2be54b]{margin-top:20px;padding-top:20px}[data-v-1f2be54b] img,[data-v-1f2be54b] video{display:block;margin:0 auto;max-width:100%}.layout+[data-v-4d5a806e]{margin-top:40px}@media only screen and (max-width:735px){.layout[data-v-4d5a806e]:first-child>:not(.group[id]){margin-top:40px}}.body[data-v-6499e2f2]{background:var(--colors-text-background,var(--color-article-body-background));margin-left:auto;margin-right:auto;width:980px;border-radius:10px;transform:translateY(-120px)}@media only screen and (max-width:1250px){.body[data-v-6499e2f2]{width:692px}}@media only screen and (max-width:735px){.body[data-v-6499e2f2]{width:87.5%;border-radius:0;transform:none}}.body[data-v-6499e2f2]~*{margin-top:-40px}.body-content[data-v-6499e2f2]{padding:40px 8.33333% 80px 8.33333%}@media only screen and (max-width:735px){.body-content[data-v-6499e2f2]{padding:0 0 40px 0}}.call-to-action[data-v-2016b288]{padding:65px 0;background:var(--color-call-to-action-background)}.theme-dark .call-to-action[data-v-2016b288]{--color-call-to-action-background:#424242}.row[data-v-2016b288]{margin-left:auto;margin-right:auto;width:980px;display:flex;align-items:center}@media only screen and (max-width:1250px){.row[data-v-2016b288]{width:692px}}@media only screen and (max-width:735px){.row[data-v-2016b288]{width:87.5%}}[data-v-2016b288] img,[data-v-2016b288] video{max-height:560px}h2[data-v-2016b288]{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1250px){h2[data-v-2016b288]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){h2[data-v-2016b288]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.label[data-v-2016b288]{display:block;font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-bottom:.4em;color:var(--color-eyebrow)}@media only screen and (max-width:735px){.label[data-v-2016b288]{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content[data-v-2016b288]{margin-bottom:1.5rem}.right-column[data-v-2016b288]{margin-left:auto}@media only screen and (max-width:735px){.row[data-v-2016b288]{display:block}.col+.col[data-v-2016b288]{margin-top:40px}}@media only screen and (max-width:735px){.call-to-action[data-v-426a965c]{margin-top:0}}.headline[data-v-1898f592]{margin-bottom:.8em}.heading[data-v-1898f592]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-header-text)}@media only screen and (max-width:1250px){.heading[data-v-1898f592]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.heading[data-v-1898f592]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.dark .heading[data-v-1898f592]{color:#fff}.eyebrow[data-v-1898f592]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:block;margin-bottom:.4em;color:var(--color-eyebrow)}@media only screen and (max-width:1250px){.eyebrow[data-v-1898f592]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.generic-modal[data-v-ea628b36]{position:fixed;top:0;left:0;right:0;bottom:0;margin:0;z-index:11000;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;background:none;overflow:auto}.modal-fullscreen[data-v-ea628b36]{align-items:stretch}.modal-fullscreen .container[data-v-ea628b36]{margin:0;flex:1;width:100%;height:100%;padding-top:env(safe-area-inset-top);padding-right:env(safe-area-inset-right);padding-bottom:env(safe-area-inset-bottom);padding-left:env(safe-area-inset-left)}.modal-standard[data-v-ea628b36]{padding:20px}.modal-standard .container[data-v-ea628b36]{padding:60px;border-radius:4px}@media screen{[data-color-scheme=dark] .modal-standard .container[data-v-ea628b36]{background:#1d1d1f}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .modal-standard .container[data-v-ea628b36]{background:#1d1d1f}}@media only screen and (max-width:735px){.modal-standard[data-v-ea628b36]{padding:0;align-items:stretch}.modal-standard .container[data-v-ea628b36]{margin:20px 0 0;padding:50px 30px;flex:1;width:100%;border-bottom-left-radius:0;border-bottom-right-radius:0}}.backdrop[data-v-ea628b36]{overflow:auto;background:rgba(0,0,0,.4);-webkit-overflow-scrolling:touch;width:100%;height:100%;position:fixed}.container[data-v-ea628b36]{margin-left:auto;margin-right:auto;width:980px;background:var(--colors-generic-modal-background,var(--color-generic-modal-background));z-index:1;position:relative;overflow:auto;max-width:100%}@media only screen and (max-width:1250px){.container[data-v-ea628b36]{width:692px}}@media only screen and (max-width:735px){.container[data-v-ea628b36]{width:87.5%}}.close[data-v-ea628b36]{position:absolute;z-index:9999;top:22px;left:22px;width:30px;height:30px;color:#666;cursor:pointer;background:none;border:0;display:flex;align-items:center}.close .close-icon[data-v-ea628b36]{fill:currentColor;width:100%;height:100%}.theme-dark .container[data-v-ea628b36]{background:#000}.theme-dark .container .close[data-v-ea628b36]{color:#b0b0b0}.theme-code .container[data-v-ea628b36]{background-color:var(--background,var(--color-code-background))}.metadata[data-v-2fa6f125]{display:flex}.item[data-v-2fa6f125]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:flex;flex-direction:column;justify-content:flex-end;align-items:center;border-right:1px solid #fff;padding:0 27.5px}@media only screen and (max-width:735px){.item[data-v-2fa6f125]{font-size:.64706rem;line-height:1.63636;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:0 8px}}.item[data-v-2fa6f125]:first-of-type{padding-left:0}.item[data-v-2fa6f125]:last-of-type{border:none}@media only screen and (max-width:735px){.item[data-v-2fa6f125]:last-of-type{padding-right:0}}.content[data-v-2fa6f125]{color:#fff}.icon[data-v-2fa6f125]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1250px){.icon[data-v-2fa6f125]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.icon[data-v-2fa6f125]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.small-icon[data-v-2fa6f125]{width:1em;height:1em;margin-left:.2rem}.small-icon.xcode-icon[data-v-2fa6f125]{width:.8em;height:.8em}.content-link[data-v-2fa6f125]{display:flex;align-items:center}a[data-v-2fa6f125]{color:var(--colors-link,var(--color-tutorials-overview-link))}.duration[data-v-2fa6f125]{display:flex;align-items:baseline;font-size:2.35294rem;line-height:1;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;line-height:1.8rem}@media only screen and (max-width:735px){.duration[data-v-2fa6f125]{font-size:1.64706rem;line-height:1;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;line-height:1.3rem}}.minutes[data-v-2fa6f125]{display:inline-block;font-size:1.64706rem;line-height:1;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;line-height:1.3rem}@media only screen and (max-width:735px){.minutes[data-v-2fa6f125]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;line-height:.8rem}}.item-large-icon[data-v-2fa6f125]{height:2.3rem;max-width:100%}@media only screen and (max-width:735px){.item-large-icon[data-v-2fa6f125]{height:1.5rem;max-width:100%}}.bottom[data-v-2fa6f125]{margin-top:13px}@media only screen and (max-width:735px){.bottom[data-v-2fa6f125]{margin-top:8px}}.hero[data-v-cb87b2d0]{color:var(--color-tutorial-hero-text);position:relative}.bg[data-v-cb87b2d0],.hero[data-v-cb87b2d0]{background-color:var(--color-tutorial-hero-background)}.bg[data-v-cb87b2d0]{background-position:top;background-repeat:no-repeat;background-size:cover;content:\"\";height:100%;left:0;opacity:.3;position:absolute;top:0;width:100%}.row[data-v-cb87b2d0]{margin-left:auto;margin-right:auto;width:980px;padding:80px 0}@media only screen and (max-width:1250px){.row[data-v-cb87b2d0]{width:692px}}@media only screen and (max-width:735px){.row[data-v-cb87b2d0]{width:87.5%}}.col[data-v-cb87b2d0]{z-index:1}[data-v-cb87b2d0] .eyebrow{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-hero-eyebrow)}@media only screen and (max-width:1250px){[data-v-cb87b2d0] .eyebrow{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.headline[data-v-cb87b2d0]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-bottom:2rem}@media only screen and (max-width:1250px){.headline[data-v-cb87b2d0]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.headline[data-v-cb87b2d0]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.intro[data-v-cb87b2d0]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:735px){.intro[data-v-cb87b2d0]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content+p[data-v-cb87b2d0]{margin-top:.8em}@media only screen and (max-width:735px){.content+p[data-v-cb87b2d0]{margin-top:8px}}.call-to-action[data-v-cb87b2d0]{display:flex;align-items:center}.call-to-action .cta-icon[data-v-cb87b2d0]{margin-left:.4rem;width:1em;height:1em}.metadata[data-v-cb87b2d0]{margin-top:2rem}.video-asset[data-v-cb87b2d0]{display:grid;height:100vh;margin:0;place-items:center center}.video-asset[data-v-cb87b2d0] video{max-width:1280px;min-width:320px;width:100%}@media only screen and (max-width:735px){.headline[data-v-cb87b2d0]{margin-bottom:19px}}.tutorial-hero[data-v-35a9482f]{margin-bottom:80px}@media only screen and (max-width:735px){.tutorial-hero[data-v-35a9482f]{margin-bottom:0}}.title[data-v-8ec95972]{font-size:.70588rem;line-height:1.33333;color:var(--colors-secondary-label,var(--color-secondary-label))}.title[data-v-8ec95972],.title[data-v-455ff2a6]{font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.title[data-v-455ff2a6]{font-size:1.11765rem;line-height:1.21053;color:var(--colors-header-text,var(--color-header-text));margin:25px 0}.question-content[data-v-455ff2a6] code{font-size:.76471rem;line-height:1.84615;font-weight:400;font-family:Menlo,monospace}.choices[data-v-455ff2a6]{display:flex;flex-direction:column;padding:0;list-style:none;margin:25px 0}.choice[data-v-455ff2a6]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;flex:1;border-radius:4px;margin:8px 0;padding:1.5rem 40px;cursor:pointer;background:var(--colors-text-background,var(--color-text-background));display:flex;flex-direction:column;justify-content:center;border-width:1px;border-style:solid;border-color:var(--colors-grid,var(--color-grid));position:relative}.choice[data-v-455ff2a6] img{max-height:23.52941rem}.choice[data-v-455ff2a6]:first-of-type{margin-top:0}.choice[data-v-455ff2a6] code{font-size:.76471rem;line-height:1.84615;font-weight:400;font-family:Menlo,monospace}.controls[data-v-455ff2a6]{text-align:center;margin-bottom:40px}.controls .button-cta[data-v-455ff2a6]{margin:.5rem;margin-top:0;padding:.3rem 3rem;min-width:8rem}input[type=radio][data-v-455ff2a6]{position:absolute;width:100%;left:0;height:100%;opacity:0;z-index:-1}.active[data-v-455ff2a6]{border-color:var(--color-tutorial-quiz-border-active);box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.active [data-v-455ff2a6]{color:var(--colors-text,var(--color-text))}.correct[data-v-455ff2a6]{background:var(--color-form-valid-background);border-color:var(--color-form-valid)}.correct .choice-icon[data-v-455ff2a6]{fill:var(--color-form-valid)}.incorrect[data-v-455ff2a6]{background:var(--color-form-error-background);border-color:var(--color-form-error)}.incorrect .choice-icon[data-v-455ff2a6]{fill:var(--color-form-error)}.correct[data-v-455ff2a6],.incorrect[data-v-455ff2a6]{position:relative}.correct .choice-icon[data-v-455ff2a6],.incorrect .choice-icon[data-v-455ff2a6]{position:absolute;top:11px;left:10px;font-size:20px;width:1.05em}.disabled[data-v-455ff2a6]{pointer-events:none}.answer[data-v-455ff2a6]{margin:.5rem 1.5rem .5rem 0;font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.answer[data-v-455ff2a6]:last-of-type{margin-bottom:0}[data-v-455ff2a6] .question>.code-listing{padding:unset;border-radius:0}[data-v-455ff2a6] pre{padding:0}[data-v-455ff2a6] img{display:block;margin-left:auto;margin-right:auto;max-width:100%}.title[data-v-c1de71de]{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--colors-header-text,var(--color-header-text))}@media only screen and (max-width:1250px){.title[data-v-c1de71de]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-c1de71de]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.title p[data-v-c1de71de]{color:var(--colors-text,var(--color-text))}.assessments[data-v-c1de71de]{box-sizing:content-box;padding:0 1rem;background:var(--color-tutorial-assessments-background);margin-left:auto;margin-right:auto;width:980px;margin-bottom:80px}@media only screen and (max-width:1250px){.assessments[data-v-c1de71de]{width:692px}}@media only screen and (max-width:735px){.assessments[data-v-c1de71de]{width:87.5%}}.banner[data-v-c1de71de]{padding:40px 0;border-bottom:1px solid;margin-bottom:40px;border-color:var(--colors-grid,var(--color-grid));text-align:center}.success[data-v-c1de71de]{text-align:center;padding-bottom:40px;font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--colors-text,var(--color-text))}@media only screen and (max-width:1250px){.success[data-v-c1de71de]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.success[data-v-c1de71de]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.assessments-wrapper[data-v-c1de71de]{padding-top:80px}.assessments-wrapper[data-v-3c94366b]{padding-bottom:40px;padding-top:0}@media only screen and (max-width:735px){.assessments-wrapper[data-v-3c94366b]{padding-top:80px}}.article[data-v-d9f204d0]{background:var(--colors-article-background,var(--color-article-background))}@media only screen and (max-width:735px){.article[data-v-d9f204d0]{background:var(--colors-text-background,var(--color-article-body-background))}}.intro-container[data-v-54daa228]{margin-bottom:80px}.intro[data-v-54daa228]{display:flex;align-items:center}@media only screen and (max-width:735px){.intro[data-v-54daa228]{padding-bottom:0;flex-direction:column}}.intro.ide .media[data-v-54daa228] img{background-color:var(--colors-text-background,var(--color-text-background))}.col.left[data-v-54daa228]{padding-right:40px}@media only screen and (max-width:1250px){.col.left[data-v-54daa228]{padding-right:28px}}@media only screen and (max-width:735px){.col.left[data-v-54daa228]{margin-left:auto;margin-right:auto;width:980px;padding-right:0}}@media only screen and (max-width:735px) and (max-width:1250px){.col.left[data-v-54daa228]{width:692px}}@media only screen and (max-width:735px) and (max-width:735px){.col.left[data-v-54daa228]{width:87.5%}}.col.right[data-v-54daa228]{padding-left:40px}@media only screen and (max-width:1250px){.col.right[data-v-54daa228]{padding-left:28px}}@media only screen and (max-width:735px){.col.right[data-v-54daa228]{padding-left:0}}.content[data-v-54daa228]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.media[data-v-54daa228] img{width:auto;max-height:560px;min-height:18.82353rem;-o-object-fit:scale-down;object-fit:scale-down}@media only screen and (max-width:735px){.media[data-v-54daa228]{margin:0;margin-top:40px}.media[data-v-54daa228] img,.media[data-v-54daa228] video{max-height:80vh}}.media[data-v-54daa228] .asset{padding:0 20px}.headline[data-v-54daa228]{color:var(--colors-header-text,var(--color-header-text))}[data-v-54daa228] .eyebrow{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:735px){[data-v-54daa228] .eyebrow{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}[data-v-54daa228] .eyebrow a{color:inherit}[data-v-54daa228] .heading{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:1250px){[data-v-54daa228] .heading{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){[data-v-54daa228] .heading{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.expanded-intro[data-v-54daa228]{margin-left:auto;margin-right:auto;width:980px;margin-top:40px}@media only screen and (max-width:1250px){.expanded-intro[data-v-54daa228]{width:692px}}@media only screen and (max-width:735px){.expanded-intro[data-v-54daa228]{width:87.5%}}[data-v-54daa228] .cols-2{gap:20px 16.66667%}[data-v-54daa228] .cols-3 .column{gap:20px 12.5%}.code-preview[data-v-9acc0234]{position:sticky;overflow-y:auto;-webkit-overflow-scrolling:touch;background-color:var(--background,var(--color-step-background));height:calc(100vh - 3.05882rem)}.code-preview.ide[data-v-9acc0234]{height:100vh}.code-preview[data-v-9acc0234] .code-listing{color:var(--text,var(--color-code-plain))}.code-preview[data-v-9acc0234] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:Menlo,monospace}.header[data-v-9acc0234]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;position:relative;display:flex;justify-content:space-between;align-items:center;width:-webkit-fill-available;width:-moz-available;width:stretch;cursor:pointer;font-weight:600;padding:8px 12px;border-radius:4px 4px 0 0;z-index:1;background:var(--color-runtime-preview-background);color:var(--colors-runtime-preview-text,var(--color-runtime-preview-text))}.header[data-v-9acc0234]:focus{outline-style:none}#app.fromkeyboard .header[data-v-9acc0234]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.runtime-preview[data-v-9acc0234]{--color-runtime-preview-shadow:rgba(0,0,0,0.4);position:absolute;top:0;right:0;background:var(--color-runtime-preview-background);border-radius:4px;margin:1rem;margin-left:0;transition:width .2s ease-in;box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow)}@media screen{[data-color-scheme=dark] .runtime-preview[data-v-9acc0234]{--color-runtime-preview-shadow:hsla(0,0%,100%,0.4)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .runtime-preview[data-v-9acc0234]{--color-runtime-preview-shadow:hsla(0,0%,100%,0.4)}}@supports not ((width:-webkit-fill-available) or (width:-moz-available) or (width:stretch)){.runtime-preview[data-v-9acc0234]{display:flex;flex-direction:column}}.runtime-preview .runtimve-preview__container[data-v-9acc0234]{border-radius:4px;overflow:hidden}.runtime-preview-ide[data-v-9acc0234]{top:0}.runtime-preview-ide .runtime-preview-asset[data-v-9acc0234] img{background-color:var(--color-runtime-preview-background)}.runtime-preview.collapsed[data-v-9acc0234]{box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow);width:102px}.runtime-preview.collapsed .header[data-v-9acc0234]{border-radius:4px}.runtime-preview.disabled[data-v-9acc0234]{box-shadow:0 0 3px 0 transparent}.runtime-preview.disabled .header[data-v-9acc0234]{color:var(--color-runtime-preview-disabled-text);cursor:auto}.runtime-preview-asset[data-v-9acc0234]{border-radius:0 0 4px 4px}.runtime-preview-asset[data-v-9acc0234] img{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.preview-icon[data-v-9acc0234]{height:.8em;width:.8em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.preview-show[data-v-9acc0234]{transform:scale(-1)}[data-v-5ad4e037] pre{padding:10px 0}.toggle-preview[data-v-d0709828]{color:var(--color-runtime-preview-disabled-text);display:flex;align-items:center}a[data-v-d0709828]{color:var(--url,var(--color-link))}.toggle-text[data-v-d0709828]{display:flex;align-items:center}svg.toggle-icon[data-v-d0709828]{width:1em;height:1em;margin-left:.5em}.mobile-code-preview[data-v-3bee1128]{background-color:var(--background,var(--color-step-background));padding:14px 0}@media only screen and (max-width:735px){.mobile-code-preview[data-v-3bee1128]{display:flex;flex-direction:column}}.runtime-preview-modal-content[data-v-3bee1128]{padding:45px 60px 0 60px;min-width:200px}.runtime-preview-modal-content[data-v-3bee1128] img:not(.file-icon){border-radius:4px;box-shadow:0 0 3px rgba(0,0,0,.4);max-height:80vh;width:auto;display:block;margin-bottom:1rem}.runtime-preview-modal-content .runtime-preview-label[data-v-3bee1128]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-runtime-preview-text);display:block;text-align:center;padding:.5em}[data-v-3bee1128] .code-listing{color:var(--text,var(--color-code-plain))}[data-v-3bee1128] .full-code-listing{padding-top:60px;min-height:calc(100vh - 60px)}[data-v-3bee1128] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:Menlo,monospace}.preview-toggle-container[data-v-3bee1128]{align-self:flex-end;margin-right:20px}.step-container[data-v-4abdd121]{margin:0}.step-container[data-v-4abdd121]:not(:last-child){margin-bottom:100px}@media only screen and (max-width:735px){.step-container[data-v-4abdd121]:not(:last-child){margin-bottom:80px}}.step[data-v-4abdd121]{position:relative;border-radius:4px;padding:1rem 2rem;background-color:var(--color-step-background);overflow:hidden;-webkit-mask-image:-webkit-radial-gradient(#fff,#000)}.step[data-v-4abdd121]:before{content:\"\";position:absolute;top:0;left:0;border:1px solid var(--color-step-focused);background-color:var(--color-step-focused);height:calc(100% - 2px);width:4px;opacity:0;transition:opacity .15s ease-in}.step.focused[data-v-4abdd121],.step[data-v-4abdd121]:focus{outline:none}.step.focused[data-v-4abdd121]:before,.step[data-v-4abdd121]:focus:before{opacity:1}@media only screen and (max-width:735px){.step[data-v-4abdd121]{padding-left:2rem}.step[data-v-4abdd121]:before{opacity:1}}.step-label[data-v-4abdd121]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--colors-text,var(--color-step-text));margin-bottom:.4em}.caption[data-v-4abdd121]{border-top:1px solid;border-color:var(--color-step-caption);padding:1rem 0 0 0;margin-top:1rem}.media-container[data-v-4abdd121]{display:none}@media only screen and (max-width:735px){.step[data-v-4abdd121]{margin:0 .58824rem 1.17647rem .58824rem}.step.focused[data-v-4abdd121],.step[data-v-4abdd121]:focus{outline:none}.media-container[data-v-4abdd121]{display:block;position:relative}.media-container[data-v-4abdd121] img,.media-container[data-v-4abdd121] video{max-height:80vh}[data-v-4abdd121] .asset{padding:0 20px}}.steps[data-v-25d30c2c]{position:relative;font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:flex;color:var(--colors-text,var(--color-text))}@media only screen and (max-width:735px){.steps[data-v-25d30c2c]{padding-top:80px}.steps[data-v-25d30c2c]:before{position:absolute;top:0;border-top:1px solid var(--color-fill-gray-tertiary);content:\"\";width:calc(100% - 2.35294rem);margin:0 1.17647rem}}.content-container[data-v-25d30c2c]{flex:none;margin-right:4.16667%;width:37.5%;margin-top:140px;margin-bottom:94vh}@media only screen and (max-width:735px){.content-container[data-v-25d30c2c]{margin-top:0;margin-bottom:0;height:100%;margin-left:0;margin-right:0;position:relative;width:100%}}.asset-container[data-v-25d30c2c]{flex:none;height:calc(100vh - 3.05882rem);background-color:var(--background,var(--color-step-background));max-width:921px;width:calc(50vw + 8.33333%);position:sticky;top:3.05882rem;transition:margin .1s ease-in-out}@media only screen and (max-width:767px){.asset-container[data-v-25d30c2c]{top:2.82353rem;height:calc(100vh - 2.82353rem)}}.asset-container[data-v-25d30c2c]:not(.for-step-code){overflow-y:auto;-webkit-overflow-scrolling:touch}.asset-container.ide[data-v-25d30c2c]{height:100vh;top:0}@media only screen and (min-width:736px){.asset-container[data-v-25d30c2c]{display:grid}.asset-container>[data-v-25d30c2c]{grid-row:1;grid-column:1;height:calc(100vh - 3.05882rem)}.asset-container.ide>[data-v-25d30c2c]{height:100vh}}.asset-container .step-asset[data-v-25d30c2c]{box-sizing:border-box;padding:0;padding-left:40px;min-height:320px;height:100%}.asset-container .step-asset[data-v-25d30c2c],.asset-container .step-asset[data-v-25d30c2c] picture{height:100%;display:flex;align-items:center}.asset-container .step-asset[data-v-25d30c2c] .video-replay-container{height:100%;display:flex;flex-direction:column;justify-content:center}.asset-container .step-asset[data-v-25d30c2c] img,.asset-container .step-asset[data-v-25d30c2c] video{width:auto;max-height:calc(100vh - 3.05882rem - 80px);max-width:531.6634px;margin:0}@media only screen and (max-width:1250px){.asset-container .step-asset[data-v-25d30c2c] img,.asset-container .step-asset[data-v-25d30c2c] video{max-width:363.66436px}}.asset-container .step-asset[data-v-25d30c2c] .video-replay-container,.asset-container .step-asset[data-v-25d30c2c] img{min-height:320px}.asset-container .step-asset[data-v-25d30c2c] .video-replay-container video{min-height:280px}@media only screen and (max-width:735px){.asset-container[data-v-25d30c2c]{display:none}}.asset-wrapper[data-v-25d30c2c]{width:63.2%;align-self:center;transition:transform .25s ease-out;will-change:transform}.asset-wrapper.ide .step-asset[data-v-25d30c2c] img{background-color:var(--background,var(--color-step-background))}[data-v-25d30c2c] .runtime-preview-asset{display:grid}[data-v-25d30c2c] .runtime-preview-asset>*{grid-row:1;grid-column:1}.interstitial[data-v-25d30c2c]{padding:0 2rem}.interstitial[data-v-25d30c2c]:not(:first-child){margin-top:5.88235rem}.interstitial[data-v-25d30c2c]:not(:last-child){margin-bottom:30px}@media only screen and (max-width:735px){.interstitial[data-v-25d30c2c]{margin-left:auto;margin-right:auto;width:980px;padding:0}}@media only screen and (max-width:735px) and (max-width:1250px){.interstitial[data-v-25d30c2c]{width:692px}}@media only screen and (max-width:735px) and (max-width:735px){.interstitial[data-v-25d30c2c]{width:87.5%}}@media only screen and (max-width:735px){.interstitial[data-v-25d30c2c]:not(:first-child){margin-top:0}}.fade-enter-active[data-v-25d30c2c],.fade-leave-active[data-v-25d30c2c]{transition:opacity .3s ease-in-out}.fade-enter[data-v-25d30c2c],.fade-leave-to[data-v-25d30c2c]{opacity:0}.section[data-v-6b3a0b3a]{padding-top:80px}.sections[data-v-79a75e9e]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.sections[data-v-79a75e9e]{width:692px}}@media only screen and (max-width:735px){.sections[data-v-79a75e9e]{width:87.5%;margin:0;width:100%}}.tutorial[data-v-0f871b08]{background-color:var(--colors-text-background,var(--color-tutorial-background))}"
  },
  {
    "path": "docs/css/tutorials-overview.06e8bcf7.css",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */.tutorials-navigation-link[data-v-6bb99205]{color:var(--color-tutorials-overview-navigation-link);transition:color .3s linear}.tutorials-navigation-link[data-v-6bb99205]:hover{text-decoration:none;transition:none;color:var(--color-tutorials-overview-navigation-link-hover)}.tutorials-navigation-link.active[data-v-6bb99205]{color:var(--color-tutorials-overview-navigation-link-active)}.tutorials-navigation-list[data-v-6f2800d1]{list-style-type:none;margin:0}.tutorials-navigation-list li+li[data-v-6f2800d1]:not(.volume--named){margin-top:24px}.tutorials-navigation-list .volume--named+.volume--named[data-v-6f2800d1]{margin-top:12px}.expand-enter-active,.expand-leave-active{transition:height .3s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.toggle[data-v-6513d652]{color:#f0f0f0;line-height:21px;display:flex;align-items:center;width:100%;font-weight:600;padding:6px 6px 6px 0;border-bottom:1px solid #2a2a2a;text-decoration:none;box-sizing:border-box}@media only screen and (max-width:767px){.toggle[data-v-6513d652]{padding-right:6px;border-bottom-color:hsla(0,0%,100%,.1)}}.toggle .text[data-v-6513d652]{word-break:break-word}.toggle[data-v-6513d652]:hover{text-decoration:none}.toggle .toggle-icon[data-v-6513d652]{display:inline-block;transition:transform .2s ease-in;height:.4em;width:.4em;margin-left:auto;margin-right:.2em}.collapsed .toggle .toggle-icon[data-v-6513d652]{transform:rotate(45deg)}.collapsed .toggle[data-v-6513d652],.collapsed .toggle[data-v-6513d652]:hover{color:#b0b0b0}.tutorials-navigation-menu-content[data-v-6513d652]{opacity:1;transition:height .2s ease-in,opacity .2s ease-in}.collapsed .tutorials-navigation-menu-content[data-v-6513d652]{height:0;opacity:0}.tutorials-navigation-menu-content .tutorials-navigation-list[data-v-6513d652]{padding:24px 0 12px 0}.tutorials-navigation[data-v-0cbd8adb]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.nav-title-content[data-v-60ea3af8]{max-width:100%}.title[data-v-60ea3af8]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block;vertical-align:top;max-width:296px}@media only screen and (max-width:1023px){.title[data-v-60ea3af8]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-60ea3af8]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-60ea3af8]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-60ea3af8]{color:var(--color-nav-dark-root-subhead)}.nav[data-v-1001350c] .nav-menu{padding-top:0}.nav[data-v-1001350c] .nav-menu .nav-menu-items{margin-left:auto}@media only screen and (min-width:768px){.nav[data-v-1001350c] .nav-menu .nav-menu-items .in-page-navigation{display:none}}@media only screen and (min-width:320px) and (max-width:735px){.nav[data-v-1001350c] .nav-menu .nav-menu-items{padding:18px 0 40px}}.replay-button[data-v-59608016]{display:flex;align-items:center;justify-content:center;cursor:pointer;visibility:hidden;margin-top:.5rem;-webkit-tap-highlight-color:transparent}.replay-button.visible[data-v-59608016]{visibility:visible}.replay-button svg.replay-icon[data-v-59608016]{height:12px;width:12px;margin-left:.3em}[data-v-1b5cc854] img,[data-v-1b5cc854] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}.hero[data-v-fc7f508c]{margin-left:auto;margin-right:auto;width:980px;padding-bottom:4.70588rem;padding-top:4.70588rem}@media only screen and (max-width:1250px){.hero[data-v-fc7f508c]{width:692px}}@media only screen and (max-width:735px){.hero[data-v-fc7f508c]{width:87.5%}}.copy-container[data-v-fc7f508c]{margin:0 auto;text-align:center;width:720px}.title[data-v-fc7f508c]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-tutorials-overview-content)}@media only screen and (max-width:1250px){.title[data-v-fc7f508c]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-fc7f508c]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content[data-v-fc7f508c]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-tutorials-overview-content)}@media only screen and (max-width:735px){.content[data-v-fc7f508c]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.meta[data-v-fc7f508c]{color:var(--color-tutorials-overview-content-alt);align-items:center;display:flex;justify-content:center}.meta-content[data-v-fc7f508c]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.meta .timer-icon[data-v-fc7f508c]{margin-right:.35294rem;height:.94118rem;width:.94118rem;fill:var(--color-tutorials-overview-icon)}@media only screen and (max-width:735px){.meta .timer-icon[data-v-fc7f508c]{margin-right:.29412rem;height:.82353rem;width:.82353rem}}.meta .time[data-v-fc7f508c]{font-size:1.11765rem;line-height:1.21053;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}@media only screen and (max-width:735px){.meta .time[data-v-fc7f508c]{font-size:1rem;line-height:1.11765;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.title+.content[data-v-fc7f508c]{margin-top:1.47059rem}.content+.meta[data-v-fc7f508c]{margin-top:1.17647rem}.button-cta[data-v-fc7f508c]{margin-top:1.76471rem}*+.asset[data-v-fc7f508c]{margin-top:4.11765rem}@media only screen and (max-width:1250px){.copy-container[data-v-fc7f508c]{width:636px}}@media only screen and (max-width:735px){.hero[data-v-fc7f508c]{padding-bottom:1.76471rem;padding-top:2.35294rem}.copy-container[data-v-fc7f508c]{width:100%}.title+.content[data-v-fc7f508c]{margin-top:.88235rem}.button-cta[data-v-fc7f508c]{margin-top:1.41176rem}*+.asset[data-v-fc7f508c]{margin-top:2.23529rem}}.image[data-v-14577284]{margin-bottom:10px}.name[data-v-14577284]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#f0f0f0;word-break:break-word}@media only screen and (max-width:1250px){.name[data-v-14577284]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.name[data-v-14577284]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content[data-v-14577284]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-tutorials-overview-content-alt);margin-top:10px}.volume-name[data-v-14577284]{padding:50px 60px;text-align:center;background:#161616;margin:2px 0}@media only screen and (max-width:735px){.volume-name[data-v-14577284]{padding:40px 20px}}.document-icon[data-v-56114692]{margin-left:-3px}.tile[data-v-86db603a]{background:#161616;padding:40px 30px;color:var(--color-tutorials-overview-content-alt)}.content[data-v-86db603a] a,a[data-v-86db603a]{color:var(--colors-link,var(--color-tutorials-overview-link))}.icon[data-v-86db603a]{display:block;height:1.47059rem;line-height:1.47059rem;margin-bottom:.58824rem;width:1.47059rem}.icon[data-v-86db603a] svg.svg-icon{width:100%;max-height:100%;fill:var(--color-tutorials-overview-icon)}.icon[data-v-86db603a] svg.svg-icon .svg-icon-stroke{stroke:var(--color-tutorials-overview-content-alt)}.title[data-v-86db603a]{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;margin-bottom:.8em}.content[data-v-86db603a],.link[data-v-86db603a]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.content[data-v-86db603a]{color:var(--color-tutorials-overview-content-alt)}.link[data-v-86db603a]{display:block;margin-top:1.17647rem}.link .link-icon[data-v-86db603a]{margin-left:.2em;width:.6em;height:.6em}[data-v-86db603a] .content ul{list-style-type:none;margin-left:0;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}[data-v-86db603a] .content ul li:before{content:\"\\200B\";position:absolute}[data-v-86db603a] .content li+li{margin-top:8px}@media only screen and (max-width:735px){.tile[data-v-86db603a]{padding:1.76471rem 1.17647rem}}.tile-group[data-v-015f9f13]{display:grid;grid-column-gap:2px;grid-row-gap:2px}.tile-group.count-1[data-v-015f9f13]{grid-template-columns:1fr;text-align:center}.tile-group.count-1[data-v-015f9f13] .icon{margin-left:auto;margin-right:auto}.tile-group.count-2[data-v-015f9f13]{grid-template-columns:repeat(2,1fr)}.tile-group.count-3[data-v-015f9f13]{grid-template-columns:repeat(3,1fr)}.tile-group.count-4[data-v-015f9f13]{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,auto)}.tile-group.count-5[data-v-015f9f13]{grid-template-columns:repeat(6,1fr);grid-template-rows:repeat(2,auto)}.tile-group.count-5 .tile[data-v-015f9f13]{grid-column-end:span 2}.tile-group.count-5 .tile[data-v-015f9f13]:nth-of-type(-n+2){grid-column-end:span 3}.tile-group.count-6[data-v-015f9f13]{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,auto)}@media only screen and (min-width:768px) and (max-width:1250px){.tile-group.tile-group[data-v-015f9f13]{grid-template-columns:1fr;grid-template-rows:auto}}@media only screen and (max-width:735px){.tile-group.count-1[data-v-015f9f13],.tile-group.count-2[data-v-015f9f13],.tile-group.count-3[data-v-015f9f13],.tile-group.count-4[data-v-015f9f13],.tile-group.count-5[data-v-015f9f13],.tile-group.count-6[data-v-015f9f13]{grid-template-columns:1fr;grid-template-rows:auto}}.title[data-v-49ba6f62]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#f0f0f0}@media only screen and (max-width:1250px){.title[data-v-49ba6f62]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}@media only screen and (max-width:735px){.title[data-v-49ba6f62]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.content[data-v-49ba6f62]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#b0b0b0;margin-top:10px}.topic-list[data-v-da979188]{list-style-type:none;margin:50px 0 0 0;position:relative}.topic-list li[data-v-da979188]:before{content:\"\\200B\";position:absolute}.topic-list[data-v-da979188]:before{content:\"\";border-left:1px solid var(--color-fill-quaternary);display:block;height:calc(100% - .88235rem);left:.88235rem;position:absolute;top:50%;transform:translateY(-50%);width:0}.topic[data-v-da979188]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:flex;align-items:flex-start}@media only screen and (max-width:735px){.topic[data-v-da979188]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}}.topic+.topic[data-v-da979188]{margin-top:.58824rem}.topic .topic-icon[data-v-da979188]{background-color:var(--color-fill-quaternary);border-radius:50%;flex-shrink:0;height:1.76471rem;width:1.76471rem;margin-right:1.17647rem;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;padding:.47059rem;box-sizing:border-box;display:flex;justify-content:center;align-items:center}.topic .topic-icon svg[data-v-da979188]{fill:var(--color-tutorials-overview-icon);max-width:100%;max-height:100%;width:100%}.container[data-v-da979188]{align-items:baseline;display:flex;justify-content:space-between;width:100%;padding-top:.11765rem}.container[data-v-da979188]:hover{text-decoration:none}.container:hover .link[data-v-da979188]{text-decoration:underline}.timer-icon[data-v-da979188]{margin-right:.29412rem;height:.70588rem;width:.70588rem;fill:var(--color-tutorials-overview-icon)}.time[data-v-da979188]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:var(--color-tutorials-overview-content-alt);align-items:center;display:inline-flex}.link[data-v-da979188]{padding-right:.58824rem;color:var(--colors-link,var(--color-tutorials-overview-link))}@media only screen and (min-width:768px) and (max-width:1250px){.topic-list[data-v-da979188]{margin-top:2.35294rem}}@media only screen and (max-width:735px){.topic-list[data-v-da979188]{margin-top:1.76471rem}.topic[data-v-da979188]{height:auto;align-items:flex-start}.topic.no-time-estimate[data-v-da979188]{align-items:center}.topic.no-time-estimate .topic-icon[data-v-da979188]{align-self:flex-start;top:0}.topic+.topic[data-v-da979188]{margin-top:1.17647rem}.topic .topic-icon[data-v-da979188]{top:.29412rem;margin-right:.76471rem}.container[data-v-da979188]{flex-wrap:wrap;padding-top:0}.link[data-v-da979188],.time[data-v-da979188]{flex-basis:100%}.time[data-v-da979188]{margin-top:.29412rem}}.chapter[data-v-1d13969f]:focus{outline:none!important}.info[data-v-1d13969f]{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.name[data-v-1d13969f]{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;color:#f0f0f0}.name-text[data-v-1d13969f]{word-break:break-word}.eyebrow[data-v-1d13969f]{font-size:1rem;line-height:1.23529;font-weight:400;color:var(--color-tutorials-overview-eyebrow);display:block;font-weight:600;margin-bottom:5px}.content[data-v-1d13969f],.eyebrow[data-v-1d13969f]{font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.content[data-v-1d13969f]{font-size:.82353rem;line-height:1.42857;font-weight:400;color:var(--color-tutorials-overview-content-alt)}.asset[data-v-1d13969f]{flex:0 0 190px}.intro[data-v-1d13969f]{flex:0 1 360px}@media only screen and (min-width:768px) and (max-width:1250px){.asset[data-v-1d13969f]{flex:0 0 130px}.intro[data-v-1d13969f]{flex:0 1 260px}}@media only screen and (max-width:767px){.intro[data-v-1d13969f]{flex:0 1 340px}}@media only screen and (max-width:735px){.info[data-v-1d13969f]{display:block;text-align:center}.asset[data-v-1d13969f]{margin:0 45px}.eyebrow[data-v-1d13969f]{margin-bottom:7px}.intro[data-v-1d13969f]{margin-top:40px}}.tile[data-v-2129f58c]{background:#161616;margin:2px 0;padding:50px 60px}.asset[data-v-2129f58c]{margin-bottom:10px}@media only screen and (min-width:768px) and (max-width:1250px){.tile[data-v-2129f58c]{padding:40px 30px}}@media only screen and (max-width:735px){.volume[data-v-2129f58c]{border-radius:0}.tile[data-v-2129f58c]{padding:40px 20px}}.learning-path[data-v-48bfa85c]{background:#000;padding:4.70588rem 0}.main-container[data-v-48bfa85c]{margin-left:auto;margin-right:auto;width:980px;align-items:stretch;display:flex;justify-content:space-between}@media only screen and (max-width:1250px){.main-container[data-v-48bfa85c]{width:692px}}@media only screen and (max-width:735px){.main-container[data-v-48bfa85c]{width:87.5%}}.ide .main-container[data-v-48bfa85c]{justify-content:center}.secondary-content-container[data-v-48bfa85c]{flex:0 0 200px;width:200px}.tutorials-navigation[data-v-48bfa85c]{position:sticky;top:7.76471rem}.primary-content-container[data-v-48bfa85c]{flex:0 1 720px;max-width:100%}.content-sections-container .content-section[data-v-48bfa85c]{border-radius:12px;overflow:hidden}.content-sections-container .content-section+.content-section[data-v-48bfa85c]{margin-top:1.17647rem}@media only screen and (min-width:768px) and (max-width:1250px){.learning-path[data-v-48bfa85c]{padding:2.35294rem 0}.primary-content-container[data-v-48bfa85c]{flex-basis:auto;margin-left:1.29412rem}.secondary-content-container[data-v-48bfa85c]{flex:0 0 180px;width:180px}}@media only screen and (max-width:767px){.secondary-content-container[data-v-48bfa85c]{display:none}}@media only screen and (max-width:735px){.content-sections-container .content-section[data-v-48bfa85c]{border-radius:0}.content-sections-container .content-section.volume[data-v-48bfa85c]{margin-top:1.17647rem}.learning-path[data-v-48bfa85c]{padding:0}.main-container[data-v-48bfa85c]{width:100%}}.tutorials-overview[data-v-53888684]{height:100%}.tutorials-overview .radial-gradient[data-v-53888684]{margin-top:-3.05882rem;padding-top:3.05882rem;background:var(--color-tutorials-overview-background)}@media only screen and (max-width:735px){.tutorials-overview .radial-gradient[data-v-53888684]{margin-top:-2.82353rem;padding-top:2.82353rem}}@-moz-document url-prefix(){.tutorials-overview .radial-gradient{background:#111!important}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselanimation/!=(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"internalParam\",\"text\":\"lhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"internalParam\",\"text\":\"rhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselanimation\\/!=(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/!=(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"Equatable.!=(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"roleHeading\":\"Operator\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"symbolKind\":\"op\",\"externalID\":\"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:9ShuffleIt17CarouselAnimationO\",\"extendedModule\":\"Swift\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/Equatable-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/equatable-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/!=(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselanimation/easein.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeIn\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselanimation\\/easein\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/easeIn\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in animation.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeIn\"}],\"title\":\"CarouselAnimation.easeIn\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt17CarouselAnimationO6easeInyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation/easeIn\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation.easeIn\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeIn\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/easeIn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/easein\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselanimation/easeinout.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeInOut\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselanimation\\/easeinout\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/easeInOut\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in-out animation.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeInOut\"}],\"title\":\"CarouselAnimation.easeInOut\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt17CarouselAnimationO9easeInOutyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation/easeInOut\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation.easeInOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeInOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in-out animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/easeInOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/easeinout\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselanimation/easeout.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeOut\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselanimation\\/easeout\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/easeOut\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-out animation.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeOut\"}],\"title\":\"CarouselAnimation.easeOut\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt17CarouselAnimationO7easeOutyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation/easeOut\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation.easeOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-out animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/easeOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/easeout\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselanimation/equatable-implementations.json",
    "content": "{\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselanimation\\/equatable-implementations\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/Equatable-Implementations\",\"interfaceLanguage\":\"swift\"},\"topicSections\":[{\"title\":\"Operators\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/!=(_:_:)\"],\"generated\":true}],\"kind\":\"article\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\"},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/!=(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselanimation/linear.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"linear\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselanimation\\/linear\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/linear\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A linear animation.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"linear\"}],\"title\":\"CarouselAnimation.linear\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt17CarouselAnimationO6linearyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation/linear\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation.linear\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"linear\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A linear animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/linear\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/linear\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselanimation.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"CarouselStack\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"title\":\"CarouselAnimation\",\"roleHeading\":\"Enumeration\",\"role\":\"symbol\",\"symbolKind\":\"enum\",\"externalID\":\"s:9ShuffleIt17CarouselAnimationO\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}]},\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"interfaceLanguage\":\"swift\"},\"relationshipsSections\":[{\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/SQ\",\"doc:\\/\\/ShuffleIt\\/SH\"],\"kind\":\"relationships\",\"title\":\"Conforms To\",\"type\":\"conformsTo\"}],\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Enumeration Cases\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/easeIn\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/easeInOut\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/easeOut\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/linear\"]},{\"title\":\"Default Implementations\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/Equatable-Implementations\"],\"generated\":true}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselanimation\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"kind\":\"symbol\",\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"references\":{\"doc://ShuffleIt/SQ\":{\"type\":\"unresolvable\",\"title\":\"Swift.Equatable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SQ\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation/easeInOut\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation.easeInOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeInOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in-out animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/easeInOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/easeinout\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle\":{\"role\":\"symbol\",\"title\":\"CarouselStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext\":{\"role\":\"symbol\",\"title\":\"CarouselContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation/linear\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation.linear\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"linear\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A linear animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/linear\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/linear\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation/easeIn\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation.easeIn\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeIn\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/easeIn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/easein\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/equatable-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation/easeOut\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation.easeOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-out animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\\/easeOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/easeout\"},\"doc://ShuffleIt/SH\":{\"type\":\"unresolvable\",\"title\":\"Swift.Hashable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SH\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselcontext/direction.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"direction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselDirectionO\",\"text\":\"CarouselDirection\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselcontext\\/direction\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\\/direction\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A property of carousel direction to which content view was slided.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"direction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselDirection\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselDirectionO\"}],\"title\":\"direction\",\"roleHeading\":\"Instance Property\",\"role\":\"symbol\",\"symbolKind\":\"property\",\"externalID\":\"s:9ShuffleIt15CarouselContextV9directionAA0C9DirectionOvp\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext/direction\":{\"role\":\"symbol\",\"title\":\"direction\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"direction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselDirection\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselDirectionO\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of carousel direction to which content view was slided.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\\/direction\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\\/direction\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext\":{\"role\":\"symbol\",\"title\":\"CarouselContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselcontext/index.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"index\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselcontext\\/index\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\\/index\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A property of current index of carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"index\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"title\":\"index\",\"roleHeading\":\"Instance Property\",\"role\":\"symbol\",\"symbolKind\":\"property\",\"externalID\":\"s:9ShuffleIt15CarouselContextV5indexSivp\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext\":{\"role\":\"symbol\",\"title\":\"CarouselContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext/index\":{\"role\":\"symbol\",\"title\":\"index\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"index\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of current index of carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\\/index\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\\/index\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselcontext/previousindex.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previousIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselcontext\\/previousindex\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\\/previousIndex\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A property of pervious index of carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previousIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"title\":\"previousIndex\",\"roleHeading\":\"Instance Property\",\"role\":\"symbol\",\"symbolKind\":\"property\",\"externalID\":\"s:9ShuffleIt15CarouselContextV13previousIndexSivp\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext\":{\"role\":\"symbol\",\"title\":\"CarouselContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext/previousIndex\":{\"role\":\"symbol\",\"title\":\"previousIndex\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previousIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of pervious index of carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\\/previousIndex\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\\/previousindex\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselcontext.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"CarouselStack\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselcontext\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about sliding.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"title\":\"CarouselContext\",\"roleHeading\":\"Structure\",\"role\":\"symbol\",\"symbolKind\":\"struct\",\"externalID\":\"s:9ShuffleIt15CarouselContextV\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Instance Properties\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\\/direction\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\\/index\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\\/previousIndex\"]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle\":{\"role\":\"symbol\",\"title\":\"CarouselStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext\":{\"role\":\"symbol\",\"title\":\"CarouselContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext/direction\":{\"role\":\"symbol\",\"title\":\"direction\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"direction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselDirection\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselDirectionO\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of carousel direction to which content view was slided.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\\/direction\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\\/direction\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext/previousIndex\":{\"role\":\"symbol\",\"title\":\"previousIndex\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previousIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of pervious index of carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\\/previousIndex\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\\/previousindex\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext/index\":{\"role\":\"symbol\",\"title\":\"index\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"index\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of current index of carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\\/index\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\\/index\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouseldirection/!=(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"internalParam\",\"text\":\"lhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"internalParam\",\"text\":\"rhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouseldirection\\/!=(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/!=(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"Equatable.!=(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"roleHeading\":\"Operator\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"symbolKind\":\"op\",\"externalID\":\"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:9ShuffleIt17CarouselDirectionO\",\"extendedModule\":\"Swift\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/Equatable-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\\/equatable-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\\/!=(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouseldirection/equatable-implementations.json",
    "content": "{\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouseldirection\\/equatable-implementations\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/Equatable-Implementations\",\"interfaceLanguage\":\"swift\"},\"topicSections\":[{\"title\":\"Operators\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/!=(_:_:)\"],\"generated\":true}],\"kind\":\"article\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\"},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\\/!=(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouseldirection/left.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"left\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouseldirection\\/left\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/left\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A slide direction to the left.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"left\"}],\"title\":\"CarouselDirection.left\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt17CarouselDirectionO4leftyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection/left\":{\"role\":\"symbol\",\"title\":\"CarouselDirection.left\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"left\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A slide direction to the left.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/left\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\\/left\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouseldirection/right.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"right\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouseldirection\\/right\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/right\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A slide direction to the right.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"right\"}],\"title\":\"CarouselDirection.right\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt17CarouselDirectionO5rightyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection/right\":{\"role\":\"symbol\",\"title\":\"CarouselDirection.right\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"right\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A slide direction to the right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/right\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\\/right\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouseldirection.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"CarouselStack\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"title\":\"CarouselDirection\",\"roleHeading\":\"Enumeration\",\"role\":\"symbol\",\"symbolKind\":\"enum\",\"externalID\":\"s:9ShuffleIt17CarouselDirectionO\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}]},\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"interfaceLanguage\":\"swift\"},\"relationshipsSections\":[{\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/SQ\",\"doc:\\/\\/ShuffleIt\\/SH\"],\"kind\":\"relationships\",\"title\":\"Conforms To\",\"type\":\"conformsTo\"}],\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Enumeration Cases\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/left\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/right\"]},{\"title\":\"Default Implementations\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/Equatable-Implementations\"],\"generated\":true}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouseldirection\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"kind\":\"symbol\",\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\\/equatable-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext\":{\"role\":\"symbol\",\"title\":\"CarouselContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/SH\":{\"type\":\"unresolvable\",\"title\":\"Swift.Hashable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SH\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection/right\":{\"role\":\"symbol\",\"title\":\"CarouselDirection.right\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"right\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A slide direction to the right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/right\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\\/right\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection/left\":{\"role\":\"symbol\",\"title\":\"CarouselDirection.left\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"left\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A slide direction to the left.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\\/left\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\\/left\"},\"doc://ShuffleIt/SQ\":{\"type\":\"unresolvable\",\"title\":\"Swift.Equatable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SQ\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle\":{\"role\":\"symbol\",\"title\":\"CarouselStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accentcolor(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accentcolor(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accentColor(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accentColor(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accentColor(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11accentColoryQrAA0E0VSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use the asset catalog's accent color or View.tint(_:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use the asset catalog's accent color or View.tint(_:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use the asset catalog's accent color or View.tint(_:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use the asset catalog's accent color or View.tint(_:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use the asset catalog's accent color or View.tint(_:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accentColor(_:)\":{\"role\":\"symbol\",\"title\":\"accentColor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accentColor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accentcolor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibility(activationpoint:)-4y62.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(activationpoint:)-4y62\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(activationPoint:)-4y62\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(activationPoint:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility15activationPointAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSo7CGPointV_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(activationPoint:)-4y62\":{\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(activationPoint:)-4y62\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(activationpoint:)-4y62\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibility(activationpoint:)-695kx.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(activationpoint:)-695kx\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(activationPoint:)-695kx\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(activationPoint:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility15activationPointAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA04UnitF0V_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(activationPoint:)-695kx\":{\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(activationPoint:)-695kx\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(activationpoint:)-695kx\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibility(addtraits:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"addTraits\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"traits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(addtraits:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(addTraits:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(addTraits:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(addTraits:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"addTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility9addTraitsAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0V_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityAddTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityAddTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityAddTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityAddTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(addTraits:)\":{\"role\":\"symbol\",\"title\":\"accessibility(addTraits:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"addTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(addTraits:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(addtraits:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibility(hidden:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(hidden:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(hidden:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(hidden:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(hidden:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility6hiddenAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSb_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHidden(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHidden(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHidden(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHidden(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(hidden:)\":{\"role\":\"symbol\",\"title\":\"accessibility(hidden:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(hidden:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(hidden:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibility(hint:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(hint:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(hint:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(hint:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(hint:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility4hintAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHint(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHint(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(hint:)\":{\"role\":\"symbol\",\"title\":\"accessibility(hint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(hint:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(hint:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibility(identifier:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(identifier:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(identifier:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(identifier:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(identifier:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility10identifierAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSS_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityIdentifier(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityIdentifier(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityIdentifier(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityIdentifier(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(identifier:)\":{\"role\":\"symbol\",\"title\":\"accessibility(identifier:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(identifier:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(identifier:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibility(inputlabels:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(inputlabels:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(inputLabels:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(inputLabels:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(inputLabels:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility11inputLabelsAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayAA4TextVG_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityInputLabels(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityInputLabels(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityInputLabels(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityInputLabels(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(inputLabels:)\":{\"role\":\"symbol\",\"title\":\"accessibility(inputLabels:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(inputLabels:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(inputlabels:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibility(label:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(label:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(label:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(label:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(label:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility5labelAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityLabel(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityLabel(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityLabel(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityLabel(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(label:)\":{\"role\":\"symbol\",\"title\":\"accessibility(label:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(label:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(label:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibility(removetraits:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"removeTraits\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"traits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(removetraits:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(removeTraits:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(removeTraits:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(removeTraits:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"removeTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility12removeTraitsAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0V_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityRemoveTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityRemoveTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityRemoveTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityRemoveTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(removeTraits:)\":{\"role\":\"symbol\",\"title\":\"accessibility(removeTraits:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"removeTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(removeTraits:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(removetraits:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibility(selectionidentifier:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"selectionIdentifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyHashable\",\"preciseIdentifier\":\"s:s11AnyHashableV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(selectionidentifier:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(selectionIdentifier:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(selectionIdentifier:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(selectionIdentifier:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"selectionIdentifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyHashable\",\"preciseIdentifier\":\"s:s11AnyHashableV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility19selectionIdentifierAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGs11AnyHashableV_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":true},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":true},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":true},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":true}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(selectionIdentifier:)\":{\"role\":\"symbol\",\"title\":\"accessibility(selectionIdentifier:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"selectionIdentifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyHashable\",\"preciseIdentifier\":\"s:s11AnyHashableV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(selectionIdentifier:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(selectionidentifier:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibility(sortpriority:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(sortpriority:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(sortPriority:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(sortPriority:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(sortPriority:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility12sortPriorityAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSd_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilitySortPriority(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilitySortPriority(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilitySortPriority(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilitySortPriority(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(sortPriority:)\":{\"role\":\"symbol\",\"title\":\"accessibility(sortPriority:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(sortPriority:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(sortpriority:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibility(value:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(value:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(value:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(value:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(value:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility5valueAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityValue(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityValue(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityValue(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityValue(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(value:)\":{\"role\":\"symbol\",\"title\":\"accessibility(value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(value:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityaction(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"actionKind\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityActionKind\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityActionKindV\"},{\"kind\":\"text\",\"text\":\" = .default, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityActionKind\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityActionKindV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityActionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0hE4KindV_yyctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAction(_:_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityActionKind\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityActionKindV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityaction(action:label:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(action:label:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(action:label:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(action:label:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(action:label:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityAction6action5labelQryyc_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAction(action:label:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(action:label:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(action:label:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(action:label:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityaction(named:_:)-3lqsr.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"nameKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(named:_:)-3lqsr\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(named:_:)-3lqsr\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(named:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityAction5named_AA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_yyctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAction(named:_:)-3lqsr\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(named:_:)-3lqsr\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(named:_:)-3lqsr\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityaction(named:_:)-69c69.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(named:_:)-69c69\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(named:_:)-69c69\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(named:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityAction5named_AA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_yyctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAction(named:_:)-69c69\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(named:_:)-69c69\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(named:_:)-69c69\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityaction(named:_:)-rgyh.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(named:_:)-rgyh\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(named:_:)-rgyh\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(named:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityAction5named_AA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd___yyctSyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAction(named:_:)-rgyh\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(named:_:)-rgyh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(named:_:)-rgyh\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityactivationpoint(_:)-5bbv5.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityactivationpoint(_:)-5bbv5\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityActivationPoint(_:)-5bbv5\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityActivationPoint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE28accessibilityActivationPointyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSo7CGPointVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityActivationPoint(_:)-5bbv5\":{\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityActivationPoint(_:)-5bbv5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityactivationpoint(_:)-5bbv5\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityactivationpoint(_:)-8dokx.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityactivationpoint(_:)-8dokx\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityActivationPoint(_:)-8dokx\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityActivationPoint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE28accessibilityActivationPointyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA04UnitF0VF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityActivationPoint(_:)-8dokx\":{\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityActivationPoint(_:)-8dokx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityactivationpoint(_:)-8dokx\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityaddtraits(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAddTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"traits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaddtraits(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAddTraits(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAddTraits(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAddTraits(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAddTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE22accessibilityAddTraitsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0VF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAddTraits(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAddTraits(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAddTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAddTraits(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaddtraits(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityadjustableaction(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAdjustableAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAdjustmentDirection\",\"preciseIdentifier\":\"s:7SwiftUI32AccessibilityAdjustmentDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityadjustableaction(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAdjustableAction(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAdjustableAction(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAdjustableAction(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAdjustableAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAdjustmentDirection\",\"preciseIdentifier\":\"s:7SwiftUI32AccessibilityAdjustmentDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE29accessibilityAdjustableActionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGyAA0I19AdjustmentDirectionOcF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAdjustableAction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAdjustableAction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAdjustableAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAdjustmentDirection\",\"preciseIdentifier\":\"s:7SwiftUI32AccessibilityAdjustmentDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAdjustableAction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityadjustableaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitychartdescriptor(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChartDescriptor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"representable\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXChartDescriptorRepresentable\",\"preciseIdentifier\":\"s:7SwiftUI30AXChartDescriptorRepresentableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitychartdescriptor(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityChartDescriptor(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityChartDescriptor(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityChartDescriptor(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChartDescriptor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE28accessibilityChartDescriptoryQrqd__AA07AXChartF13RepresentableRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityChartDescriptor(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityChartDescriptor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChartDescriptor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityChartDescriptor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitychartdescriptor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitychildren(children:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChildren\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitychildren(children:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityChildren(children:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityChildren(children:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityChildren(children:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChildren\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21accessibilityChildren8childrenQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityChildren(children:)\":{\"role\":\"symbol\",\"title\":\"accessibilityChildren(children:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChildren\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityChildren(children:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitychildren(children:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-1586n.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-1586n\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-1586n\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0ieF3KeyV_AA4TextVSgSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-1586n\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-1586n\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-1586n\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-1u9b5.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-1u9b5\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-1u9b5\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA4TextV_ALSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-1u9b5\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-1u9b5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-1u9b5\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-3t2kq.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-3t2kq\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-3t2kq\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_qd__So08AXCustomF10ImportanceVtSyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-3t2kq\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-3t2kq\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-3t2kq\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-46frq.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-46frq\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-46frq\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_AA4TextVSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-46frq\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-46frq\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-46frq\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-47g1f.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-47g1f\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-47g1f\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0ieF3KeyV_qd__So08AXCustomF10ImportanceVtSyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-47g1f\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-47g1f\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-47g1f\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-5xqqc.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"valueKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-5xqqc\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-5xqqc\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0ieF3KeyV_AA015LocalizedStringL0VSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-5xqqc\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-5xqqc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-5xqqc\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-8rfm7.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"valueKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-8rfm7\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-8rfm7\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_ALSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-8rfm7\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-8rfm7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-8rfm7\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-9cou3.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-9cou3\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-9cou3\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGqd___qd_0_So08AXCustomF10ImportanceVtSyRd__SyRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Using non-localized strings for labels is not directly supported. Instead, wrap both the label and the value in a Text struct.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-9cou3\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-9cou3\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-9cou3\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityelement(children:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityElement\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityChildBehavior\",\"preciseIdentifier\":\"s:7SwiftUI26AccessibilityChildBehaviorV\"},{\"kind\":\"text\",\"text\":\" = .ignore) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityelement(children:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityElement(children:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityElement(children:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityElement(children:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityElement\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityChildBehavior\",\"preciseIdentifier\":\"s:7SwiftUI26AccessibilityChildBehaviorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20accessibilityElement8childrenQrAA26AccessibilityChildBehaviorV_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityElement(children:)\":{\"role\":\"symbol\",\"title\":\"accessibilityElement(children:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityElement\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityChildBehavior\",\"preciseIdentifier\":\"s:7SwiftUI26AccessibilityChildBehaviorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityElement(children:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityelement(children:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityfocused(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"condition\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityfocused(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityFocused(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityFocused(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20accessibilityFocusedyQrAA23AccessibilityFocusStateV7BindingVySb_GF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityFocused(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityFocused(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityfocused(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityfocused(_:equals:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"binding\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityfocused(_:equals:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityFocused(_:equals:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityFocused(_:equals:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:equals:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20accessibilityFocused_6equalsQrAA23AccessibilityFocusStateV7BindingVyqd___G_qd__tSHRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityFocused(_:equals:)\":{\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:equals:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityFocused(_:equals:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityfocused(_:equals:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityheading(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHeading\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"level\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityHeadingLevel\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityHeadingLevelO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityheading(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHeading(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHeading(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHeading(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHeading\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityHeadingLevel\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityHeadingLevelO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20accessibilityHeadingyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0hE5LevelOF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityHeading(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityHeading(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHeading\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityHeadingLevel\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityHeadingLevelO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHeading(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityheading(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityhidden(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHidden\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhidden(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHidden(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHidden(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHidden(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHidden\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityHiddenyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityHidden(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityHidden(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHidden\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHidden(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhidden(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityhint(_:)-2j7te.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhint(_:)-2j7te\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHint(_:)-2j7te\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17accessibilityHintyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityHint(_:)-2j7te\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHint(_:)-2j7te\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhint(_:)-2j7te\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityhint(_:)-37ope.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"hintKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhint(_:)-37ope\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHint(_:)-37ope\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17accessibilityHintyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityHint(_:)-37ope\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHint(_:)-37ope\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhint(_:)-37ope\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityhint(_:)-7yi0h.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhint(_:)-7yi0h\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHint(_:)-7yi0h\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17accessibilityHintyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityHint(_:)-7yi0h\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHint(_:)-7yi0h\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhint(_:)-7yi0h\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityidentifier(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIdentifier\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityidentifier(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityIdentifier(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityIdentifier(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityIdentifier(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIdentifier\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE23accessibilityIdentifieryAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSSF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityIdentifier(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityIdentifier(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIdentifier\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityIdentifier(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityidentifier(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityignoresinvertcolors(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIgnoresInvertColors\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"active\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityignoresinvertcolors(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityIgnoresInvertColors(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityIgnoresInvertColors(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityIgnoresInvertColors(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIgnoresInvertColors\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE32accessibilityIgnoresInvertColorsyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityIgnoresInvertColors(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityIgnoresInvertColors(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIgnoresInvertColors\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityIgnoresInvertColors(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityignoresinvertcolors(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityinputlabels(_:)-3feba.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityinputlabels(_:)-3feba\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityInputLabels(_:)-3feba\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityInputLabels(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityInputLabelsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayAA4TextVGF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityInputLabels(_:)-3feba\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityInputLabels(_:)-3feba\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityinputlabels(_:)-3feba\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityinputlabels(_:)-3p703.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"inputLabelKeys\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityinputlabels(_:)-3p703\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityInputLabels(_:)-3p703\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityInputLabels(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityInputLabelsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayAA18LocalizedStringKeyVGF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityInputLabels(_:)-3p703\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityInputLabels(_:)-3p703\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityinputlabels(_:)-3p703\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityinputlabels(_:)-95tn0.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityinputlabels(_:)-95tn0\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityInputLabels(_:)-95tn0\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityInputLabels(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">([\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityInputLabelsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayqd__GSyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityInputLabels(_:)-95tn0\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">([\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityInputLabels(_:)-95tn0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityinputlabels(_:)-95tn0\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitylabel(_:)-2tohn.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabel(_:)-2tohn\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabel(_:)-2tohn\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityLabelyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityLabel(_:)-2tohn\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabel(_:)-2tohn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabel(_:)-2tohn\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitylabel(_:)-755g2.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabel(_:)-755g2\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabel(_:)-755g2\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityLabelyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityLabel(_:)-755g2\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabel(_:)-755g2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabel(_:)-755g2\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitylabel(_:)-8bin6.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabel(_:)-8bin6\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabel(_:)-8bin6\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityLabelyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityLabel(_:)-8bin6\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabel(_:)-8bin6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabel(_:)-8bin6\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitylabeledpair(role:id:in:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabeledPair\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"role\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityLabeledPairRole\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityLabeledPairRoleO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabeledpair(role:id:in:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabeledPair(role:id:in:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLabeledPair(role:id:in:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLabeledPair(role:id:in:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabeledPair\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"role\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityLabeledPairRole\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityLabeledPairRoleO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityLabeledPair4role2id2inQrAA013AccessibilityeF4RoleO_qd__AA9NamespaceV2IDVtSHRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityLabeledPair(role:id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityLabeledPair(role:id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabeledPair\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"role\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityLabeledPairRole\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityLabeledPairRoleO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabeledPair(role:id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabeledpair(role:id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitylinkedgroup(id:in:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLinkedGroup\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylinkedgroup(id:in:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLinkedGroup(id:in:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLinkedGroup(id:in:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLinkedGroup(id:in:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLinkedGroup\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityLinkedGroup2id2inQrqd___AA9NamespaceV2IDVtSHRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityLinkedGroup(id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityLinkedGroup(id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLinkedGroup\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLinkedGroup(id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylinkedgroup(id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityremovetraits(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRemoveTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"traits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityremovetraits(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRemoveTraits(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRemoveTraits(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRemoveTraits(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRemoveTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25accessibilityRemoveTraitsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0VF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRemoveTraits(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRemoveTraits(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRemoveTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRemoveTraits(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityremovetraits(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrepresentation(representation:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRepresentation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"representation\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrepresentation(representation:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRepresentation(representation:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRepresentation(representation:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRepresentation(representation:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRepresentation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"representation\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE27accessibilityRepresentation14representationQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRepresentation(representation:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRepresentation(representation:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRepresentation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"representation\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRepresentation(representation:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrepresentation(representation:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrespondstouserinteraction(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRespondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"respondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrespondstouserinteraction(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRespondsToUserInteraction(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRespondsToUserInteraction(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRespondsToUserInteraction(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRespondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE38accessibilityRespondsToUserInteractionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRespondsToUserInteraction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRespondsToUserInteraction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRespondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRespondsToUserInteraction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrespondstouserinteraction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:)-1c2au.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityRotorContent\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityRotorContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-1c2au\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-1c2au\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrAA18LocalizedStringKeyV_qd__yctAA013AccessibilityE7ContentRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:)-1c2au\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-1c2au\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-1c2au\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:)-4pacb.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityRotorContent\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityRotorContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-4pacb\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-4pacb\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrAA4TextV_qd__yctAA013AccessibilityE7ContentRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:)-4pacb\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-4pacb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-4pacb\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:)-4w7j0.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityRotorContent\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityRotorContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-4w7j0\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-4w7j0\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrqd___qd_0_yctSyRd__AA013AccessibilityE7ContentRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:)-4w7j0\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-4w7j0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-4w7j0\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:)-825mo.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"systemRotor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityRotorContent\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityRotorContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-825mo\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-825mo\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrAA019AccessibilitySystemE0V_qd__yctAA0gE7ContentRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:)-825mo\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-825mo\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-825mo\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entryid:entrylabel:)-1w44t.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"systemRotor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-1w44t\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-1w44t\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryID:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrAA019AccessibilitySystemE0V_Sayqd__Gs7KeyPathCyqd__qd_0_GALyqd__SSGtSHRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryID:entryLabel:)-1w44t\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-1w44t\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-1w44t\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entryid:entrylabel:)-4vvcg.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-4vvcg\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-4vvcg\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryID:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrAA4TextV_Sayqd__Gs7KeyPathCyqd__qd_0_GALyqd__SSGtSHRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryID:entryLabel:)-4vvcg\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-4vvcg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-4vvcg\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entryid:entrylabel:)-5gz2c.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-5gz2c\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-5gz2c\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryID:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrAA18LocalizedStringKeyV_Sayqd__Gs0L4PathCyqd__qd_0_GALyqd__SSGtSHRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryID:entryLabel:)-5gz2c\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-5gz2c\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-5gz2c\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entryid:entrylabel:)-utor.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-utor\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-utor\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryID:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrqd___Sayqd_0_Gs7KeyPathCyqd_0_qd_1_GAJyqd_0_SSGtSyRd__SHRd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryID:entryLabel:)-utor\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-utor\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-utor\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entrylabel:)-25t4x.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-25t4x\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-25t4x\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrqd___Sayqd_0_Gs7KeyPathCyqd_0_SSGtSyRd__s12IdentifiableRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryLabel:)-25t4x\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-25t4x\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-25t4x\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entrylabel:)-3evdd.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"systemRotor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-3evdd\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-3evdd\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrAA019AccessibilitySystemE0V_Sayqd__Gs7KeyPathCyqd__SSGts12IdentifiableRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryLabel:)-3evdd\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-3evdd\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-3evdd\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entrylabel:)-4e9vu.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-4e9vu\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-4e9vu\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrAA18LocalizedStringKeyV_Sayqd__Gs0K4PathCyqd__SSGts12IdentifiableRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryLabel:)-4e9vu\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-4e9vu\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-4e9vu\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entrylabel:)-59b0s.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-59b0s\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-59b0s\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrAA4TextV_Sayqd__Gs7KeyPathCyqd__SSGts12IdentifiableRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryLabel:)-59b0s\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-59b0s\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-59b0s\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:textranges:)-25npe.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-25npe\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-25npe\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:textRanges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrAA4TextV_SaySnySS5IndexVGGtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:textRanges:)-25npe\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-25npe\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-25npe\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:textranges:)-3d2p8.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-3d2p8\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-3d2p8\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:textRanges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrqd___SaySnySS5IndexVGGtSyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:textRanges:)-3d2p8\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-3d2p8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-3d2p8\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:textranges:)-4jxor.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-4jxor\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-4jxor\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:textRanges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrAA18LocalizedStringKeyV_SaySnySS5IndexVGGtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:textRanges:)-4jxor\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-4jxor\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-4jxor\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotor(_:textranges:)-9sgga.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"systemRotor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-9sgga\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-9sgga\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:textRanges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrAA019AccessibilitySystemE0V_SaySnySS5IndexVGGtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:textRanges:)-9sgga\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-9sgga\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-9sgga\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityrotorentry(id:in:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotorEntry\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotorentry(id:in:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotorEntry(id:in:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotorEntry(id:in:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotorEntry(id:in:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotorEntry\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE23accessibilityRotorEntry2id2inQrqd___AA9NamespaceV2IDVtSHRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotorEntry(id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRotorEntry(id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotorEntry\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotorEntry(id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotorentry(id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityscrollaction(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityScrollAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityscrollaction(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityScrollAction(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityScrollAction(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityScrollAction(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityScrollAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25accessibilityScrollActionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGyAA4EdgeOcF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityScrollAction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityScrollAction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityScrollAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityScrollAction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityscrollaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityshowslargecontentviewer().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityshowslargecontentviewer()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityShowsLargeContentViewer()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityShowsLargeContentViewer()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE36accessibilityShowsLargeContentViewerQryF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityShowsLargeContentViewer()\":{\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityShowsLargeContentViewer()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityshowslargecontentviewer()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityshowslargecontentviewer(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"largeContentView\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityshowslargecontentviewer(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityShowsLargeContentViewer(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityShowsLargeContentViewer(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE36accessibilityShowsLargeContentVieweryQrqd__yXEAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityShowsLargeContentViewer(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityShowsLargeContentViewer(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityshowslargecontentviewer(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitysortpriority(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilitySortPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitysortpriority(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilitySortPriority(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilitySortPriority(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilitySortPriority(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilitySortPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25accessibilitySortPriorityyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSdF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilitySortPriority(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilitySortPriority(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilitySortPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilitySortPriority(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitysortpriority(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilitytextcontenttype(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityTextContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTextContentType\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityTextContentTypeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitytextcontenttype(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityTextContentType(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityTextContentType(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityTextContentType(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityTextContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTextContentType\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityTextContentTypeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE28accessibilityTextContentTypeyAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0iefG0VF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityTextContentType(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityTextContentType(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityTextContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTextContentType\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityTextContentTypeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityTextContentType(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitytextcontenttype(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityvalue(_:)-5fw6g.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"valueDescription\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityvalue(_:)-5fw6g\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityValue(_:)-5fw6g\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityValue(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityValueyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityValue(_:)-5fw6g\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityValue(_:)-5fw6g\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityvalue(_:)-5fw6g\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityvalue(_:)-5y8gy.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityvalue(_:)-5y8gy\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityValue(_:)-5y8gy\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityValue(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityValueyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityValue(_:)-5y8gy\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityValue(_:)-5y8gy\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityvalue(_:)-5y8gy\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/accessibilityvalue(_:)-8ihs6.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"valueKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityvalue(_:)-8ihs6\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityValue(_:)-8ihs6\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityValue(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityValueyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityValue(_:)-8ihs6\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityValue(_:)-8ihs6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityvalue(_:)-8ihs6\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(_:ispresented:actions:)-1q2gb.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:)-1q2gb\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:)-1q2gb\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actionsQrAA4TextV_AA7BindingVySbGqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:actions:)-1q2gb\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:)-1q2gb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:)-1q2gb\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(_:ispresented:actions:)-76wk8.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:)-76wk8\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:)-76wk8\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:actions:)-76wk8\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:)-76wk8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:)-76wk8\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(_:ispresented:actions:)-7wghk.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:)-7wghk\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:)-7wghk\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actionsQrqd___AA7BindingVySbGqd_0_yXEtSyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:actions:)-7wghk\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:)-7wghk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:)-7wghk\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(_:ispresented:actions:message:)-5s7hn.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:message:)-5s7hn\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:message:)-5s7hn\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actions7messageQrqd___AA7BindingVySbGqd_0_yXEqd_1_yXEtSyRd__AaBRd_0_AaBRd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:actions:message:)-5s7hn\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:message:)-5s7hn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:message:)-5s7hn\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(_:ispresented:actions:message:)-9a4q7.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:message:)-9a4q7\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:message:)-9a4q7\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:actions:message:)-9a4q7\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:message:)-9a4q7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:message:)-9a4q7\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(_:ispresented:actions:message:)-f5o2.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:message:)-f5o2\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:message:)-f5o2\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actions7messageQrAA4TextV_AA7BindingVySbGqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:actions:message:)-f5o2\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:message:)-f5o2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:message:)-f5o2\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(_:ispresented:presenting:actions:)-4edmo.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:)-4edmo\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:)-4edmo\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:presenting:actions:)-4edmo\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:)-4edmo\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:)-4edmo\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(_:ispresented:presenting:actions:)-4uw7u.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:)-4uw7u\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:)-4uw7u\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actionsQrqd___AA7BindingVySbGqd_1_Sgqd_0_qd_1_XEtSyRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:presenting:actions:)-4uw7u\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:)-4uw7u\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:)-4uw7u\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(_:ispresented:presenting:actions:)-8axxo.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:)-8axxo\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:)-8axxo\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actionsQrAA4TextV_AA7BindingVySbGqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:presenting:actions:)-8axxo\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:)-8axxo\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:)-8axxo\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(_:ispresented:presenting:actions:message:)-226oe.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:message:)-226oe\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:message:)-226oe\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:presenting:actions:message:)-226oe\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:message:)-226oe\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:message:)-226oe\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(_:ispresented:presenting:actions:message:)-4tvm3.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:message:)-4tvm3\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:message:)-4tvm3\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actions7messageQrqd___AA7BindingVySbGqd_2_Sgqd_0_qd_2_XEqd_1_qd_2_XEtSyRd__AaBRd_0_AaBRd_1_r2_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:presenting:actions:message:)-4tvm3\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:message:)-4tvm3\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:message:)-4tvm3\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(_:ispresented:presenting:actions:message:)-7b0gl.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:message:)-7b0gl\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:message:)-7b0gl\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actions7messageQrAA4TextV_AA7BindingVySbGqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:presenting:actions:message:)-7b0gl\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:message:)-7b0gl\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:message:)-7b0gl\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(ispresented:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(ispresented:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(isPresented:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(isPresented:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(isPresented:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert11isPresented7contentQrAA7BindingVySbG_AA5AlertVyXEtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"use `alert(title:isPresented:presenting::actions:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(isPresented:content:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(isPresented:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(ispresented:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(ispresented:error:actions:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedError\",\"preciseIdentifier\":\"s:10Foundation14LocalizedErrorP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(ispresented:error:actions:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(isPresented:error:actions:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(isPresented:error:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert11isPresented5error7actionsQrAA7BindingVySbG_qd__Sgqd_0_yXEt10Foundation14LocalizedErrorRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(isPresented:error:actions:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(isPresented:error:actions:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(ispresented:error:actions:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(ispresented:error:actions:message:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedError\",\"preciseIdentifier\":\"s:10Foundation14LocalizedErrorP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(ispresented:error:actions:message:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(isPresented:error:actions:message:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(isPresented:error:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert11isPresented5error7actions7messageQrAA7BindingVySbG_qd__Sgqd_0_qd__XEqd_1_qd__XEt10Foundation14LocalizedErrorRd__AaBRd_0_AaBRd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(isPresented:error:actions:message:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(isPresented:error:actions:message:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(ispresented:error:actions:message:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alert(item:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(item:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(item:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(item:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(item:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert4item7contentQrAA7BindingVyqd__SgG_AA5AlertVqd__XEts12IdentifiableRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"use `alert(title:isPresented:presenting::actions:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(item:content:)\":{\"role\":\"symbol\",\"title\":\"alert(item:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(item:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(item:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alignmentguide(_:computevalue:)-4r6p.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"g\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alignmentguide(_:computevalue:)-4r6p\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alignmentGuide(_:computeValue:)-4r6p\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alignmentGuide(_:computeValue:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14alignmentGuide_12computeValueQrAA19HorizontalAlignmentV_12CoreGraphics7CGFloatVAA0C10DimensionsVctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alignmentGuide(_:computeValue:)-4r6p\":{\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alignmentGuide(_:computeValue:)-4r6p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alignmentguide(_:computevalue:)-4r6p\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/alignmentguide(_:computevalue:)-8e6vc.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"g\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/alignmentguide(_:computevalue:)-8e6vc\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alignmentGuide(_:computeValue:)-8e6vc\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alignmentGuide(_:computeValue:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14alignmentGuide_12computeValueQrAA17VerticalAlignmentV_12CoreGraphics7CGFloatVAA0C10DimensionsVctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alignmentGuide(_:computeValue:)-8e6vc\":{\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alignmentGuide(_:computeValue:)-8e6vc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alignmentguide(_:computevalue:)-8e6vc\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/allowshittesting(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsHitTesting\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"enabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/allowshittesting(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/allowsHitTesting(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.allowsHitTesting(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"allowsHitTesting(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsHitTesting\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16allowsHitTestingyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/allowsHitTesting(_:)\":{\"role\":\"symbol\",\"title\":\"allowsHitTesting(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsHitTesting\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/allowsHitTesting(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/allowshittesting(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/allowstightening(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsTightening\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"flag\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/allowstightening(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/allowsTightening(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.allowsTightening(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"allowsTightening(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsTightening\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16allowsTighteningyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/allowsTightening(_:)\":{\"role\":\"symbol\",\"title\":\"allowsTightening(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsTightening\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/allowsTightening(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/allowstightening(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/anchorpreference(key:value:transform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"anchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/anchorpreference(key:value:transform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/anchorPreference(key:value:transform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.anchorPreference(key:value:transform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"anchorPreference(key:value:transform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"anchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16anchorPreference3key5value9transformQrqd_0_m_AA6AnchorV6SourceVyqd___G5ValueQyd_0_AIyqd__GctAA0E3KeyRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/anchorPreference(key:value:transform:)\":{\"role\":\"symbol\",\"title\":\"anchorPreference(key:value:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"anchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/anchorPreference(key:value:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/anchorpreference(key:value:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/animation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/animation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/animation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.animation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"animation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9animationyQrAA9AnimationVSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"15.0\",\"message\":\"Use withAnimation or animation(_:value:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"12.0\",\"message\":\"Use withAnimation or animation(_:value:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"15.0\",\"message\":\"Use withAnimation or animation(_:value:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"8.0\",\"message\":\"Use withAnimation or animation(_:value:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use withAnimation or animation(_:value:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/animation(_:)\":{\"role\":\"symbol\",\"title\":\"animation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/animation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/animation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/animation(_:value:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Equatable\",\"preciseIdentifier\":\"s:SQ\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/animation(_:value:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/animation(_:value:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.animation(_:value:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"animation(_:value:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9animation_5valueQrAA9AnimationVSg_qd__tSQRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/animation(_:value:)\":{\"role\":\"symbol\",\"title\":\"animation(_:value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/animation(_:value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/animation(_:value:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/aspectratio(_:contentmode:)-72t0z.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/aspectratio(_:contentmode:)-72t0z\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/aspectRatio(_:contentMode:)-72t0z\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.aspectRatio(_:contentMode:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11aspectRatio_11contentModeQrSo6CGSizeV_AA07ContentG0OtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/aspectRatio(_:contentMode:)-72t0z\":{\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/aspectRatio(_:contentMode:)-72t0z\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/aspectratio(_:contentmode:)-72t0z\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/aspectratio(_:contentmode:)-8gir9.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/aspectratio(_:contentmode:)-8gir9\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/aspectRatio(_:contentMode:)-8gir9\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.aspectRatio(_:contentMode:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11aspectRatio_11contentModeQr12CoreGraphics7CGFloatVSg_AA07ContentG0OtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/aspectRatio(_:contentMode:)-8gir9\":{\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/aspectRatio(_:contentMode:)-8gir9\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/aspectratio(_:contentmode:)-8gir9\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/background(_:alignment:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:alignment:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:alignment:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(_:alignment:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(_:alignment:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background_9alignmentQrqd___AA9AlignmentVtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `background(alignment:content:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `background(alignment:content:)` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `background(alignment:content:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `background(alignment:content:)` instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use `background(alignment:content:)` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(_:alignment:)\":{\"role\":\"symbol\",\"title\":\"background(_:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/background(_:ignoressafeareaedges:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:ignoressafeareaedges:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:ignoresSafeAreaEdges:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(_:ignoresSafeAreaEdges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(_:ignoresSafeAreaEdges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background_20ignoresSafeAreaEdgesQrqd___AA4EdgeO3SetVtAA10ShapeStyleRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(_:ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"background(_:ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/background(_:in:fillstyle:)-4hb5h.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"InsettableShape\",\"preciseIdentifier\":\"s:7SwiftUI15InsettableShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:in:fillstyle:)-4hb5h\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:in:fillStyle:)-4hb5h\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(_:in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background_2in9fillStyleQrqd___qd_0_AA04FillG0VtAA05ShapeG0Rd__AA010InsettableI0Rd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(_:in:fillStyle:)-4hb5h\":{\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:in:fillStyle:)-4hb5h\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:in:fillstyle:)-4hb5h\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/background(_:in:fillstyle:)-5xuxn.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:in:fillstyle:)-5xuxn\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:in:fillStyle:)-5xuxn\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(_:in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background_2in9fillStyleQrqd___qd_0_AA04FillG0VtAA05ShapeG0Rd__AA0I0Rd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(_:in:fillStyle:)-5xuxn\":{\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:in:fillStyle:)-5xuxn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:in:fillstyle:)-5xuxn\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/background(alignment:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/background(alignment:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(alignment:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(alignment:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(alignment:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background9alignment7contentQrAA9AlignmentV_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(alignment:content:)\":{\"role\":\"symbol\",\"title\":\"background(alignment:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(alignment:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(alignment:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/background(ignoressafeareaedges:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/background(ignoressafeareaedges:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(ignoresSafeAreaEdges:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(ignoresSafeAreaEdges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(ignoresSafeAreaEdges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background20ignoresSafeAreaEdgesQrAA4EdgeO3SetV_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"background(ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/background(in:fillstyle:)-2lcq8.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/background(in:fillstyle:)-2lcq8\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(in:fillStyle:)-2lcq8\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background2in9fillStyleQrqd___AA04FillG0VtAA5ShapeRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(in:fillStyle:)-2lcq8\":{\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(in:fillStyle:)-2lcq8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(in:fillstyle:)-2lcq8\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/background(in:fillstyle:)-6gtsb.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"InsettableShape\",\"preciseIdentifier\":\"s:7SwiftUI15InsettableShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/background(in:fillstyle:)-6gtsb\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(in:fillStyle:)-6gtsb\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background2in9fillStyleQrqd___AA04FillG0VtAA15InsettableShapeRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(in:fillStyle:)-6gtsb\":{\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(in:fillStyle:)-6gtsb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(in:fillstyle:)-6gtsb\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/backgroundpreferencevalue(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"backgroundPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type = Key.self, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/backgroundpreferencevalue(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/backgroundPreferenceValue(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.backgroundPreferenceValue(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"backgroundPreferenceValue(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"backgroundPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25backgroundPreferenceValueyQrqd__m_qd_0_0F0Qyd__ctAA0E3KeyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/backgroundPreferenceValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"backgroundPreferenceValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"backgroundPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/backgroundPreferenceValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/backgroundpreferencevalue(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/badge(_:)-10ceg.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-10ceg\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-10ceg\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.badge(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"badge(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5badgeyQrAA4TextVSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/badge(_:)-10ceg\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-10ceg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-10ceg\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/badge(_:)-6ah2.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-6ah2\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-6ah2\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.badge(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"badge(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5badgeyQrSiF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/badge(_:)-6ah2\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-6ah2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-6ah2\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/badge(_:)-7kz0m.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-7kz0m\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-7kz0m\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.badge(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"badge(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5badgeyQrAA18LocalizedStringKeyVSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/badge(_:)-7kz0m\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-7kz0m\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-7kz0m\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/badge(_:)-8lj4d.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-8lj4d\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-8lj4d\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.badge(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"badge(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5badgeyQrqd__SgSyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/badge(_:)-8lj4d\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-8lj4d\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-8lj4d\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/blendmode(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"BlendMode\",\"preciseIdentifier\":\"s:7SwiftUI9BlendModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/blendmode(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/blendMode(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.blendMode(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"blendMode(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"BlendMode\",\"preciseIdentifier\":\"s:7SwiftUI9BlendModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9blendModeyQrAA05BlendE0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/blendMode(_:)\":{\"role\":\"symbol\",\"title\":\"blendMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"BlendMode\",\"preciseIdentifier\":\"s:7SwiftUI9BlendModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/blendMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/blendmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/blur(radius:opaque:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blur\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/blur(radius:opaque:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/blur(radius:opaque:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.blur(radius:opaque:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"blur(radius:opaque:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blur\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4blur6radius6opaqueQr12CoreGraphics7CGFloatV_SbtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/blur(radius:opaque:)\":{\"role\":\"symbol\",\"title\":\"blur(radius:opaque:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blur\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/blur(radius:opaque:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/blur(radius:opaque:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/body.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"var\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"body\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" { \"},{\"kind\":\"keyword\",\"text\":\"get\"},{\"kind\":\"text\",\"text\":\" }\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/body\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/body\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.body\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"var\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"body\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"title\":\"body\",\"roleHeading\":\"Instance Property\",\"role\":\"symbol\",\"symbolKind\":\"property\",\"externalID\":\"s:9ShuffleIt13CarouselStackV4bodyQrvp\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/body\":{\"role\":\"symbol\",\"title\":\"body\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"var\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"body\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/body\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/body\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/border(_:width:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"border\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 1) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/border(_:width:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/border(_:width:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.border(_:width:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"border(_:width:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"border\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6border_5widthQrqd___12CoreGraphics7CGFloatVtAA10ShapeStyleRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/border(_:width:)\":{\"role\":\"symbol\",\"title\":\"border(_:width:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"border\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/border(_:width:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/border(_:width:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/brightness(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"brightness\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"amount\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/brightness(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/brightness(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.brightness(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"brightness(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"brightness\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10brightnessyQrSdF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/brightness(_:)\":{\"role\":\"symbol\",\"title\":\"brightness(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"brightness\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/brightness(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/brightness(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/buttonbordershape(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonBorderShape\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonBorderShape\",\"preciseIdentifier\":\"s:7SwiftUI17ButtonBorderShapeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/buttonbordershape(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/buttonBorderShape(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.buttonBorderShape(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"buttonBorderShape(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonBorderShape\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonBorderShape\",\"preciseIdentifier\":\"s:7SwiftUI17ButtonBorderShapeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17buttonBorderShapeyQrAA06ButtoneF0VF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/buttonBorderShape(_:)\":{\"role\":\"symbol\",\"title\":\"buttonBorderShape(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonBorderShape\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonBorderShape\",\"preciseIdentifier\":\"s:7SwiftUI17ButtonBorderShapeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/buttonBorderShape(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/buttonbordershape(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/buttonstyle(_:)-6awhx.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PrimitiveButtonStyle\",\"preciseIdentifier\":\"s:7SwiftUI20PrimitiveButtonStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/buttonstyle(_:)-6awhx\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/buttonStyle(_:)-6awhx\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.buttonStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11buttonStyleyQrqd__AA015PrimitiveButtonE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/buttonStyle(_:)-6awhx\":{\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/buttonStyle(_:)-6awhx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/buttonstyle(_:)-6awhx\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/buttonstyle(_:)-8ljh4.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonStyle\",\"preciseIdentifier\":\"s:7SwiftUI11ButtonStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/buttonstyle(_:)-8ljh4\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/buttonStyle(_:)-8ljh4\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.buttonStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11buttonStyleyQrqd__AA06ButtonE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/buttonStyle(_:)-8ljh4\":{\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/buttonStyle(_:)-8ljh4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/buttonstyle(_:)-8ljh4\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/carouselanimation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselAnimationO\",\"text\":\"CarouselAnimation\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given carousel animation.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"animation\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle animation for carousel stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" comes with \"},{\"type\":\"codeVoice\",\"code\":\"linear\"},{\"type\":\"text\",\"text\":\" animation to animate scrolling behaviour. With \"},{\"type\":\"codeVoice\",\"code\":\"carouselAnimation(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can be overridden with the given animation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example shows the usage of overriding default carousel animation with \"},{\"type\":\"codeVoice\",\"code\":\"easeInOut\"},{\"type\":\"text\",\"text\":\" animation that will be used while shuffling.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselAnimation(.easeInOut)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselanimation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselAnimation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default carousel animation of the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselAnimation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE17carouselAnimationyQrAD08CarouselG0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"carouselAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default carousel animation of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/carouseldisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given boolean.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"disabled\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A boolean value to decide whether it should be disabled or not.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Based on the boolean passing into the modifier, the user interaction will be disabled accordingly. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"true\"},{\"type\":\"text\",\"text\":\", it will no longer turn on the interaction to UI. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"false\"},{\"type\":\"text\",\"text\":\", it allows to carousel content views.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following piece of code show how to disable the user interaction on the shuffle stack view.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselDisabled(false)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/carouseldisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to carousel content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"carouselDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE16carouselDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"carouselDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to carousel content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouseldisabled(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/carouselpadding(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselPadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given padding.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"padding\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A padding value for a carousel stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" come with 20 pixels to add extra space between its frame and its content views. To be overriden, it can be done by passing the desired padding value through \"},{\"type\":\"codeVoice\",\"code\":\"carouselPadding(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"carouselPadding(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselPadding(15)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselpadding(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselPadding(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselPadding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselPadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE15carouselPaddingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselPadding(_:)\":{\"role\":\"symbol\",\"title\":\"carouselPadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselPadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselPadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselpadding(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/carouselscale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given scaling factor.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"scale\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A scaling factor to shrink or enlarge the size of content views.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" allows to scale up (set value above 1) and scale down (set value below 1) contents so that the desired ui can be achieved by passing the value through \"},{\"type\":\"codeVoice\",\"code\":\"carouselScale(_:)\"},{\"type\":\"text\",\"text\":\" modifier. By defaults, it comes with the value of 1.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"carouselScale(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselScale(1.2)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselscale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselScale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the contents right next to the current content of the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselScale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE13carouselScaleyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselScale(_:)\":{\"role\":\"symbol\",\"title\":\"carouselScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the contents right next to the current content of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/carouselspacing(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given spacing.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"spacing\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A spacing value between the content views of the carousel stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To add spacing between carousel stack contents, it can be achieved by passing the value through \"},{\"type\":\"codeVoice\",\"code\":\"carouselSpacing(_:)\"},{\"type\":\"text\",\"text\":\" modifier. By default, it uses 10 pixels to make a gap between contents.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code sample shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"carouselSpacing(_:)\"},{\"type\":\"text\",\"text\":\" modifier by adding the space of 15 pixels to see a gap between stack contents.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselSpacing(15)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselspacing(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselSpacing(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value which is used to add some spacing between carousel stack contents.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselSpacing(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE15carouselSpacingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselSpacing(_:)\":{\"role\":\"symbol\",\"title\":\"carouselSpacing(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value which is used to add some spacing between carousel stack contents.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselSpacing(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselspacing(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/carouselstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"preciseIdentifier\":\"s:9ShuffleIt13CarouselStyleO\",\"text\":\"CarouselStyle\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given carousel style.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"style\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A carousel style for carousel stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" provides two different carousel styles - \"},{\"type\":\"codeVoice\",\"code\":\"finiteScroll\"},{\"type\":\"text\",\"text\":\" (default) and \"},{\"type\":\"codeVoice\",\"code\":\"infiniteScroll\"},{\"type\":\"text\",\"text\":\". To apply style as desired, it can be overridden with \"},{\"type\":\"codeVoice\",\"code\":\"carouselStyle(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet demonstrates how to override the carousel style to be able to scroll infinitely left and right.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselStyle(.infiniteScroll)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default carousel style of the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselStyle\",\"preciseIdentifier\":\"s:9ShuffleIt13CarouselStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE13carouselStyleyQrAD08CarouselG0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle\":{\"role\":\"symbol\",\"title\":\"CarouselStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselStyle(_:)\":{\"role\":\"symbol\",\"title\":\"carouselStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselStyle\",\"preciseIdentifier\":\"s:9ShuffleIt13CarouselStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default carousel style of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/carouseltrigger(on:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"publisher\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Publisher\",\"preciseIdentifier\":\"s:7Combine9PublisherP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Failure\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"Never\",\"preciseIdentifier\":\"s:s5NeverO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselDirectionO\",\"text\":\"CarouselDirection\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given publisher object.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"publisher\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A publisher object that fires \"},{\"type\":\"codeVoice\",\"code\":\"CarouselDirection\"},{\"type\":\"text\",\"text\":\" values.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"In purpose of programmatic sliding such as using timer, \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" accepts events via \"},{\"type\":\"codeVoice\",\"code\":\"carouselTrigger(on:)\"},{\"type\":\"text\",\"text\":\" modifier which is needed to inject an instance of publisher with \"},{\"type\":\"codeVoice\",\"code\":\"CarouselDirection\"},{\"type\":\"text\",\"text\":\" output type and \"},{\"type\":\"codeVoice\",\"code\":\"Never\"},{\"type\":\"text\",\"text\":\" failure type.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the programmatic approach of triggering slide event by sending \"},{\"type\":\"codeVoice\",\"code\":\"CarouselDirection\"},{\"type\":\"text\",\"text\":\" value through the publisher.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"let carouselPublisher = PassthroughSubject<CarouselDirection, Never>()\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselPublisher(on: carouselPublisher)\",\"}\",\"carouselPublisher.send(.left)\",\"carouselPublisher.send(.right)\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/carouseltrigger(on:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselTrigger(on:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic sliding.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselTrigger(on:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE15carouselTrigger2onQrqd___t7Combine9PublisherRd__s5NeverO7FailureRtd__AD17CarouselDirectionO6OutputRtd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"carouselTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouseltrigger(on:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/clipped(antialiased:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipped\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/clipped(antialiased:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/clipped(antialiased:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.clipped(antialiased:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"clipped(antialiased:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipped\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7clipped11antialiasedQrSb_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/clipped(antialiased:)\":{\"role\":\"symbol\",\"title\":\"clipped(antialiased:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipped\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/clipped(antialiased:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/clipped(antialiased:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/clipshape(_:style:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/clipshape(_:style:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/clipShape(_:style:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.clipShape(_:style:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"clipShape(_:style:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9clipShape_5styleQrqd___AA9FillStyleVtAA0E0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/clipShape(_:style:)\":{\"role\":\"symbol\",\"title\":\"clipShape(_:style:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/clipShape(_:style:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/clipshape(_:style:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/colorinvert().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorInvert\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/colorinvert()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/colorInvert()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.colorInvert()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"colorInvert()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorInvert\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11colorInvertQryF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/colorInvert()\":{\"role\":\"symbol\",\"title\":\"colorInvert()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorInvert\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/colorInvert()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/colorinvert()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/colormultiply(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorMultiply\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/colormultiply(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/colorMultiply(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.colorMultiply(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"colorMultiply(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorMultiply\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13colorMultiplyyQrAA5ColorVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/colorMultiply(_:)\":{\"role\":\"symbol\",\"title\":\"colorMultiply(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorMultiply\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/colorMultiply(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/colormultiply(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/colorscheme(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/colorscheme(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/colorScheme(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.colorScheme(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"colorScheme(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11colorSchemeyQrAA05ColorE0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"preferredColorScheme(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"preferredColorScheme(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"preferredColorScheme(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"preferredColorScheme(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/colorScheme(_:)\":{\"role\":\"symbol\",\"title\":\"colorScheme(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/colorScheme(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/colorscheme(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/compositinggroup().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"compositingGroup\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/compositinggroup()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/compositingGroup()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.compositingGroup()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"compositingGroup()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"compositingGroup\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16compositingGroupQryF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/compositingGroup()\":{\"role\":\"symbol\",\"title\":\"compositingGroup()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"compositingGroup\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/compositingGroup()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/compositinggroup()\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:actions:)-1uzrt.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-1uzrt\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-1uzrt\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actionsQrqd___AA7BindingVySbGAA0I0Oqd_0_yXEtSyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:actions:)-1uzrt\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-1uzrt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-1uzrt\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:actions:)-5d29j.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-5d29j\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-5d29j\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actionsQrAA4TextV_AA7BindingVySbGAA0I0Oqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:actions:)-5d29j\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-5d29j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-5d29j\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:actions:)-718e5.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-718e5\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-718e5\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:actions:)-718e5\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-718e5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-718e5\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-65zoh.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-65zoh\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-65zoh\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-65zoh\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-65zoh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-65zoh\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-951t3.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-951t3\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-951t3\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actions7messageQrAA4TextV_AA7BindingVySbGAA0I0Oqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-951t3\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-951t3\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-951t3\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9yu7k.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9yu7k\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-9yu7k\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actions7messageQrqd___AA7BindingVySbGAA0I0Oqd_0_yXEqd_1_yXEtSyRd__AaBRd_0_AaBRd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-9yu7k\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-9yu7k\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9yu7k\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1ji6h.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1ji6h\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1ji6h\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1ji6h\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1ji6h\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1ji6h\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-4fi9z.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-4fi9z\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-4fi9z\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actionsQrAA4TextV_AA7BindingVySbGAA0I0Oqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-4fi9z\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-4fi9z\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-4fi9z\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-51cln.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-51cln\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-51cln\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actionsQrqd___AA7BindingVySbGAA0I0Oqd_1_Sgqd_0_qd_1_XEtSyRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-51cln\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-51cln\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-51cln\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2m470.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2m470\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-2m470\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actions7messageQrAA4TextV_AA7BindingVySbGAA0I0Oqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-2m470\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-2m470\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2m470\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-9o8j.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-9o8j\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-9o8j\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actions7messageQrqd___AA7BindingVySbGAA0I0Oqd_2_Sgqd_0_qd_2_XEqd_1_qd_2_XEtSyRd__AaBRd_0_AaBRd_1_r2_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-9o8j\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-9o8j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-9o8j\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-g5bx.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-g5bx\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-g5bx\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-g5bx\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-g5bx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-g5bx\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/containershape(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"containerShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"InsettableShape\",\"preciseIdentifier\":\"s:7SwiftUI15InsettableShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/containershape(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/containerShape(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.containerShape(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"containerShape(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"containerShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14containerShapeyQrqd__AA010InsettableE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/containerShape(_:)\":{\"role\":\"symbol\",\"title\":\"containerShape(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"containerShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/containerShape(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/containershape(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/contentshape(_:_:eofill:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"kind\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentShapeKinds\",\"preciseIdentifier\":\"s:7SwiftUI17ContentShapeKindsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/contentshape(_:_:eofill:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contentShape(_:_:eoFill:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contentShape(_:_:eoFill:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contentShape(_:_:eoFill:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentShapeKinds\",\"preciseIdentifier\":\"s:7SwiftUI17ContentShapeKindsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12contentShape__6eoFillQrAA07ContentE5KindsV_qd__SbtAA0E0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/contentShape(_:_:eoFill:)\":{\"role\":\"symbol\",\"title\":\"contentShape(_:_:eoFill:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentShapeKinds\",\"preciseIdentifier\":\"s:7SwiftUI17ContentShapeKindsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contentShape(_:_:eoFill:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contentshape(_:_:eofill:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/contentshape(_:eofill:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/contentshape(_:eofill:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contentShape(_:eoFill:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contentShape(_:eoFill:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contentShape(_:eoFill:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12contentShape_6eoFillQrqd___SbtAA0E0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/contentShape(_:eoFill:)\":{\"role\":\"symbol\",\"title\":\"contentShape(_:eoFill:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contentShape(_:eoFill:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contentshape(_:eofill:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/contextmenu(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContextMenu\",\"preciseIdentifier\":\"s:7SwiftUI11ContextMenuV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/contextmenu(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contextMenu(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contextMenu(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contextMenu(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContextMenu\",\"preciseIdentifier\":\"s:7SwiftUI11ContextMenuV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11contextMenuyQrAA07ContextE0Vyqd__GSgAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `contextMenu(menuItems:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `contextMenu(menuItems:)` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"deprecatedAt\":\"7.0\",\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use `contextMenu(menuItems:)` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/contextMenu(_:)\":{\"role\":\"symbol\",\"title\":\"contextMenu(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContextMenu\",\"preciseIdentifier\":\"s:7SwiftUI11ContextMenuV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contextMenu(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contextmenu(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/contextmenu(menuitems:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"menuItems\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/contextmenu(menuitems:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contextMenu(menuItems:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contextMenu(menuItems:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contextMenu(menuItems:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"menuItems\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11contextMenu9menuItemsQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"deprecatedAt\":\"7.0\",\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/contextMenu(menuItems:)\":{\"role\":\"symbol\",\"title\":\"contextMenu(menuItems:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"menuItems\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contextMenu(menuItems:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contextmenu(menuitems:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/contrast(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contrast\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"amount\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/contrast(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contrast(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contrast(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contrast(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contrast\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8contrastyQrSdF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/contrast(_:)\":{\"role\":\"symbol\",\"title\":\"contrast(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contrast\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contrast(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contrast(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/controlgroupstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlGroupStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlGroupStyle\",\"preciseIdentifier\":\"s:7SwiftUI17ControlGroupStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/controlgroupstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/controlGroupStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.controlGroupStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"controlGroupStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlGroupStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17controlGroupStyleyQrqd__AA07ControleF0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/controlGroupStyle(_:)\":{\"role\":\"symbol\",\"title\":\"controlGroupStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlGroupStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/controlGroupStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/controlgroupstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/controlsize(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlSize\",\"preciseIdentifier\":\"s:7SwiftUI11ControlSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/controlsize(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/controlSize(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.controlSize(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"controlSize(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlSize\",\"preciseIdentifier\":\"s:7SwiftUI11ControlSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11controlSizeyQrAA07ControlE0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/controlSize(_:)\":{\"role\":\"symbol\",\"title\":\"controlSize(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlSize\",\"preciseIdentifier\":\"s:7SwiftUI11ControlSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/controlSize(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/controlsize(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/coordinatespace(name:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"coordinateSpace\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/coordinatespace(name:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/coordinateSpace(name:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.coordinateSpace(name:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"coordinateSpace(name:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"coordinateSpace\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15coordinateSpace4nameQrqd___tSHRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/coordinateSpace(name:)\":{\"role\":\"symbol\",\"title\":\"coordinateSpace(name:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"coordinateSpace\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/coordinateSpace(name:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/coordinatespace(name:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/cornerradius(_:antialiased:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"cornerRadius\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/cornerradius(_:antialiased:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/cornerRadius(_:antialiased:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.cornerRadius(_:antialiased:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"cornerRadius(_:antialiased:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"cornerRadius\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12cornerRadius_11antialiasedQr12CoreGraphics7CGFloatV_SbtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/cornerRadius(_:antialiased:)\":{\"role\":\"symbol\",\"title\":\"cornerRadius(_:antialiased:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"cornerRadius\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/cornerRadius(_:antialiased:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/cornerradius(_:antialiased:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/datepickerstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"datePickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"DatePickerStyle\",\"preciseIdentifier\":\"s:7SwiftUI15DatePickerStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/datepickerstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/datePickerStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.datePickerStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"datePickerStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"datePickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15datePickerStyleyQrqd__AA04DateeF0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/datePickerStyle(_:)\":{\"role\":\"symbol\",\"title\":\"datePickerStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"datePickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/datePickerStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/datepickerstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/defaultappstorage(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"defaultAppStorage\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"store\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UserDefaults\",\"preciseIdentifier\":\"c:objc(cs)NSUserDefaults\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/defaultappstorage(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/defaultAppStorage(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.defaultAppStorage(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"defaultAppStorage(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"defaultAppStorage\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UserDefaults\",\"preciseIdentifier\":\"c:objc(cs)NSUserDefaults\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17defaultAppStorageyQrSo14NSUserDefaultsCF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/defaultAppStorage(_:)\":{\"role\":\"symbol\",\"title\":\"defaultAppStorage(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"defaultAppStorage\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UserDefaults\",\"preciseIdentifier\":\"c:objc(cs)NSUserDefaults\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/defaultAppStorage(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/defaultappstorage(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/deletedisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"deleteDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isDisabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/deletedisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/deleteDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.deleteDisabled(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"deleteDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"deleteDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14deleteDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/deleteDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"deleteDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"deleteDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/deleteDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/deletedisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/disableautocorrection(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disableAutocorrection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disable\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/disableautocorrection(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/disableAutocorrection(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.disableAutocorrection(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"disableAutocorrection(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disableAutocorrection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21disableAutocorrectionyQrSbSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/disableAutocorrection(_:)\":{\"role\":\"symbol\",\"title\":\"disableAutocorrection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disableAutocorrection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/disableAutocorrection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/disableautocorrection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/disabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/disabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/disabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.disabled(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"disabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8disabledyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/disabled(_:)\":{\"role\":\"symbol\",\"title\":\"disabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/disabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/disabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/drawinggroup(opaque:colormode:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"drawingGroup\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false, \"},{\"kind\":\"externalParam\",\"text\":\"colorMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI18ColorRenderingModeO\"},{\"kind\":\"text\",\"text\":\" = .nonLinear) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/drawinggroup(opaque:colormode:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/drawingGroup(opaque:colorMode:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.drawingGroup(opaque:colorMode:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"drawingGroup(opaque:colorMode:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"drawingGroup\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"colorMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI18ColorRenderingModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12drawingGroup6opaque9colorModeQrSb_AA014ColorRenderingH0OtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/drawingGroup(opaque:colorMode:)\":{\"role\":\"symbol\",\"title\":\"drawingGroup(opaque:colorMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"drawingGroup\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"colorMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI18ColorRenderingModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/drawingGroup(opaque:colorMode:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/drawinggroup(opaque:colormode:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/dynamictypesize(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"dynamicTypeSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"size\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DynamicTypeSize\",\"preciseIdentifier\":\"s:7SwiftUI15DynamicTypeSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/dynamictypesize(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/dynamicTypeSize(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.dynamicTypeSize(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"dynamicTypeSize(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"dynamicTypeSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"DynamicTypeSize\",\"preciseIdentifier\":\"s:7SwiftUI15DynamicTypeSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15dynamicTypeSizeyQrAA07DynamiceF0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/dynamicTypeSize(_:)\":{\"role\":\"symbol\",\"title\":\"dynamicTypeSize(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"dynamicTypeSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"DynamicTypeSize\",\"preciseIdentifier\":\"s:7SwiftUI15DynamicTypeSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/dynamicTypeSize(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/dynamictypesize(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/edgesignoringsafearea(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"edgesIgnoringSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/edgesignoringsafearea(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/edgesIgnoringSafeArea(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.edgesIgnoringSafeArea(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"edgesIgnoringSafeArea(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"edgesIgnoringSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21edgesIgnoringSafeAreayQrAA4EdgeO3SetVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use ignoresSafeArea(_:edges:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use ignoresSafeArea(_:edges:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use ignoresSafeArea(_:edges:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use ignoresSafeArea(_:edges:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use ignoresSafeArea(_:edges:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/edgesIgnoringSafeArea(_:)\":{\"role\":\"symbol\",\"title\":\"edgesIgnoringSafeArea(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"edgesIgnoringSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/edgesIgnoringSafeArea(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/edgesignoringsafearea(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/environment(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"keyPath\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/environment(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/environment(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.environment(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"environment(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11environmentyQrs15WritableKeyPathCyAA17EnvironmentValuesVqd__G_qd__tlF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/environment(_:_:)\":{\"role\":\"symbol\",\"title\":\"environment(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/environment(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/environment(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/environmentobject(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environmentObject\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"object\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ObservableObject\",\"preciseIdentifier\":\"s:7Combine16ObservableObjectP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/environmentobject(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/environmentObject(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.environmentObject(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"environmentObject(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environmentObject\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17environmentObjectyQrqd__7Combine010ObservableE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/environmentObject(_:)\":{\"role\":\"symbol\",\"title\":\"environmentObject(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environmentObject\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/environmentObject(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/environmentobject(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/exportsitemproviders(_:onexport:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"contentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/exportsitemproviders(_:onexport:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/exportsItemProviders(_:onExport:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.exportsItemProviders(_:onExport:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20exportsItemProviders_8onExportQrSay22UniformTypeIdentifiers6UTTypeVG_SaySo14NSItemProviderCGyctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/exportsItemProviders(_:onExport:)\":{\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/exportsItemProviders(_:onExport:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/exportsitemproviders(_:onexport:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/exportsitemproviders(_:onexport:onedit:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"contentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onEdit\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/exportsitemproviders(_:onexport:onedit:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/exportsItemProviders(_:onExport:onEdit:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.exportsItemProviders(_:onExport:onEdit:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:onEdit:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onEdit\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20exportsItemProviders_8onExport0G4EditQrSay22UniformTypeIdentifiers6UTTypeVG_SaySo14NSItemProviderCGycSbAMctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/exportsItemProviders(_:onExport:onEdit:)\":{\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:onEdit:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onEdit\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/exportsItemProviders(_:onExport:onEdit:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/exportsitemproviders(_:onexport:onedit:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-2xo1j.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"FileDocument\",\"preciseIdentifier\":\"s:7SwiftUI12FileDocumentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-2xo1j\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-2xo1j\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileExporter11isPresented8document11contentType15defaultFilename12onCompletionQrAA7BindingVySbG_qd__Sg07UniformJ11Identifiers6UTTypeVSSSgys6ResultOy10Foundation3URLVs5Error_pGctAA12FileDocumentRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-2xo1j\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-2xo1j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-2xo1j\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-5w70m.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ReferenceFileDocument\",\"preciseIdentifier\":\"s:7SwiftUI21ReferenceFileDocumentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-5w70m\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-5w70m\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileExporter11isPresented8document11contentType15defaultFilename12onCompletionQrAA7BindingVySbG_qd__Sg07UniformJ11Identifiers6UTTypeVSSSgys6ResultOy10Foundation3URLVs5Error_pGctAA21ReferenceFileDocumentRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-5w70m\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-5w70m\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-5w70m\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/fileexporter(ispresented:documents:contenttype:oncompletion:)-9dfyf.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Collection\",\"preciseIdentifier\":\"s:Sl\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ReferenceFileDocument\",\"preciseIdentifier\":\"s:7SwiftUI21ReferenceFileDocumentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-9dfyf\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-9dfyf\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileExporter(isPresented:documents:contentType:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileExporter11isPresented9documents11contentType12onCompletionQrAA7BindingVySbG_qd__07UniformJ11Identifiers6UTTypeVys6ResultOySay10Foundation3URLVGs5Error_pGctSlRd__AA21ReferenceFileDocument7ElementRpd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileExporter(isPresented:documents:contentType:onCompletion:)-9dfyf\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-9dfyf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-9dfyf\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/fileexporter(ispresented:documents:contenttype:oncompletion:)-vkdb.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Collection\",\"preciseIdentifier\":\"s:Sl\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"FileDocument\",\"preciseIdentifier\":\"s:7SwiftUI12FileDocumentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-vkdb\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-vkdb\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileExporter(isPresented:documents:contentType:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileExporter11isPresented9documents11contentType12onCompletionQrAA7BindingVySbG_qd__07UniformJ11Identifiers6UTTypeVys6ResultOySay10Foundation3URLVGs5Error_pGctSlRd__AA12FileDocument7ElementRpd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileExporter(isPresented:documents:contentType:onCompletion:)-vkdb\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-vkdb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-vkdb\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"allowsMultipleSelection\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"allowsMultipleSelection\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileImporter11isPresented19allowedContentTypes23allowsMultipleSelection12onCompletionQrAA7BindingVySbG_Say22UniformTypeIdentifiers6UTTypeVGSbys6ResultOySay10Foundation3URLVGs5Error_pGctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"allowsMultipleSelection\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/fileimporter(ispresented:allowedcontenttypes:oncompletion:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileImporter(isPresented:allowedContentTypes:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileImporter11isPresented19allowedContentTypes12onCompletionQrAA7BindingVySbG_Say22UniformTypeIdentifiers6UTTypeVGys6ResultOy10Foundation3URLVs5Error_pGctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileImporter(isPresented:allowedContentTypes:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/filemover(ispresented:file:oncompletion:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"file\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/filemover(ispresented:file:oncompletion:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileMover(isPresented:file:onCompletion:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileMover(isPresented:file:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileMover(isPresented:file:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"file\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9fileMover11isPresented0D012onCompletionQrAA7BindingVySbG_10Foundation3URLVSgys6ResultOyAMs5Error_pGctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileMover(isPresented:file:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileMover(isPresented:file:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"file\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileMover(isPresented:file:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/filemover(ispresented:file:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/filemover(ispresented:files:oncompletion:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"files\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Collection\",\"preciseIdentifier\":\"s:Sl\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/filemover(ispresented:files:oncompletion:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileMover(isPresented:files:onCompletion:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileMover(isPresented:files:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileMover(isPresented:files:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"files\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9fileMover11isPresented5files12onCompletionQrAA7BindingVySbG_qd__ys6ResultOySay10Foundation3URLVGs5Error_pGctSlRd__AO7ElementRtd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileMover(isPresented:files:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileMover(isPresented:files:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"files\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileMover(isPresented:files:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/filemover(ispresented:files:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/fixedsize().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/fixedsize()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fixedSize()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fixedSize()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fixedSize()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9fixedSizeQryF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fixedSize()\":{\"role\":\"symbol\",\"title\":\"fixedSize()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fixedSize()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fixedsize()\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/fixedsize(horizontal:vertical:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"horizontal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"vertical\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/fixedsize(horizontal:vertical:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fixedSize(horizontal:vertical:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fixedSize(horizontal:vertical:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fixedSize(horizontal:vertical:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"horizontal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"vertical\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9fixedSize10horizontal8verticalQrSb_SbtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fixedSize(horizontal:vertical:)\":{\"role\":\"symbol\",\"title\":\"fixedSize(horizontal:vertical:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"horizontal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"vertical\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fixedSize(horizontal:vertical:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fixedsize(horizontal:vertical:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/flipsforrighttoleftlayoutdirection(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"flipsForRightToLeftLayoutDirection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"enabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/flipsforrighttoleftlayoutdirection(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/flipsForRightToLeftLayoutDirection(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.flipsForRightToLeftLayoutDirection(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"flipsForRightToLeftLayoutDirection(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"flipsForRightToLeftLayoutDirection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE34flipsForRightToLeftLayoutDirectionyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/flipsForRightToLeftLayoutDirection(_:)\":{\"role\":\"symbol\",\"title\":\"flipsForRightToLeftLayoutDirection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"flipsForRightToLeftLayoutDirection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/flipsForRightToLeftLayoutDirection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/flipsforrighttoleftlayoutdirection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/focusable(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isFocusable\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/focusable(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusable(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusable(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusable(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9focusableyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focusable(_:)\":{\"role\":\"symbol\",\"title\":\"focusable(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusable(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusable(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/focusable(_:onfocuschange:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isFocusable\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true, \"},{\"kind\":\"externalParam\",\"text\":\"onFocusChange\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\" = { _ in }) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/focusable(_:onfocuschange:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusable(_:onFocusChange:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusable(_:onFocusChange:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusable(_:onFocusChange:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onFocusChange\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9focusable_13onFocusChangeQrSb_ySbctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"12.0\",\"message\":\"Use FocusState<T> and View.focused(_:equals) for functionality previously provided by the onChange parameter.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"15.0\",\"message\":\"Use FocusState<T> and View.focused(_:equals) for functionality previously provided by the onChange parameter.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"8.0\",\"message\":\"Use FocusState<T> and View.focused(_:equals) for functionality previously provided by the onChange parameter.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use FocusState<T> and View.focused(_:equals) for functionality previously provided by the onChange parameter.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focusable(_:onFocusChange:)\":{\"role\":\"symbol\",\"title\":\"focusable(_:onFocusChange:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onFocusChange\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusable(_:onFocusChange:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusable(_:onfocuschange:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/focused(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"condition\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/focused(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focused(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focused(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focused(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7focusedyQrAA10FocusStateV7BindingVySb_GF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focused(_:)\":{\"role\":\"symbol\",\"title\":\"focused(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focused(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focused(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/focused(_:equals:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"binding\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/focused(_:equals:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focused(_:equals:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focused(_:equals:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focused(_:equals:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7focused_6equalsQrAA10FocusStateV7BindingVyqd___G_qd__tSHRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focused(_:equals:)\":{\"role\":\"symbol\",\"title\":\"focused(_:equals:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focused(_:equals:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focused(_:equals:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/focusedscenevalue(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedSceneValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"keyPath\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/focusedscenevalue(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusedSceneValue(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusedSceneValue(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusedSceneValue(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedSceneValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17focusedSceneValueyQrs15WritableKeyPathCyAA13FocusedValuesVqd__SgG_qd__tlF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focusedSceneValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"focusedSceneValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedSceneValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusedSceneValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusedscenevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/focusedvalue(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"keyPath\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/focusedvalue(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusedValue(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusedValue(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusedValue(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12focusedValueyQrs15WritableKeyPathCyAA13FocusedValuesVqd__SgG_qd__tlF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focusedValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"focusedValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusedValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusedvalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/focusscope(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/focusscope(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusScope(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusScope(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusScope(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10focusScopeyQrAA9NamespaceV2IDVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focusScope(_:)\":{\"role\":\"symbol\",\"title\":\"focusScope(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusScope(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusscope(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/font(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Font\",\"preciseIdentifier\":\"s:7SwiftUI4FontV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/font(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/font(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.font(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"font(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Font\",\"preciseIdentifier\":\"s:7SwiftUI4FontV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4fontyQrAA4FontVSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/font(_:)\":{\"role\":\"symbol\",\"title\":\"font(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Font\",\"preciseIdentifier\":\"s:7SwiftUI4FontV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/font(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/font(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/foregroundcolor(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundcolor(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundColor(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.foregroundColor(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"foregroundColor(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15foregroundColoryQrAA0E0VSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/foregroundColor(_:)\":{\"role\":\"symbol\",\"title\":\"foregroundColor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundColor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundcolor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/foregroundstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.foregroundStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"foregroundStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15foregroundStyleyQrqd__AA05ShapeE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/foregroundStyle(_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/foregroundstyle(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"primary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"secondary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundstyle(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundStyle(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.foregroundStyle(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15foregroundStyleyQrqd___qd_0_tAA05ShapeE0Rd__AaERd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/foregroundStyle(_:_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundStyle(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundstyle(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/foregroundstyle(_:_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"primary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"secondary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tertiary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundstyle(_:_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundStyle(_:_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.foregroundStyle(_:_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15foregroundStyleyQrqd___qd_0_qd_1_tAA05ShapeE0Rd__AaERd_0_AaERd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/foregroundStyle(_:_:_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundStyle(_:_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundstyle(_:_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/frame().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/frame()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/frame()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.frame()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"frame()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5frameQryF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Please pass one or more parameters.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/frame()\":{\"role\":\"symbol\",\"title\":\"frame()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/frame()\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/frame()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"idealWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"maxWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"minHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"idealHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"maxHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"minHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5frame8minWidth05idealF003maxF00E6Height0gI00hI09alignmentQr12CoreGraphics7CGFloatVSg_A5oA9AlignmentVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\":{\"role\":\"symbol\",\"title\":\"frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"minHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/frame(width:height:alignment:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"height\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/frame(width:height:alignment:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/frame(width:height:alignment:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.frame(width:height:alignment:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"frame(width:height:alignment:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"height\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5frame5width6height9alignmentQr12CoreGraphics7CGFloatVSg_AkA9AlignmentVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/frame(width:height:alignment:)\":{\"role\":\"symbol\",\"title\":\"frame(width:height:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"height\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/frame(width:height:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/frame(width:height:alignment:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/gesture(_:including:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Gesture\",\"preciseIdentifier\":\"s:7SwiftUI7GestureP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/gesture(_:including:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/gesture(_:including:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.gesture(_:including:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"gesture(_:including:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7gesture_9includingQrqd___AA11GestureMaskVtAA0F0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/gesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"gesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/gesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/gesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/grayscale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"grayscale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"amount\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/grayscale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/grayscale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.grayscale(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"grayscale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"grayscale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9grayscaleyQrSdF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/grayscale(_:)\":{\"role\":\"symbol\",\"title\":\"grayscale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"grayscale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/grayscale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/grayscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/groupboxstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"groupBoxStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"GroupBoxStyle\",\"preciseIdentifier\":\"s:7SwiftUI13GroupBoxStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/groupboxstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/groupBoxStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.groupBoxStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"groupBoxStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"groupBoxStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13groupBoxStyleyQrqd__AA05GroupeF0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/groupBoxStyle(_:)\":{\"role\":\"symbol\",\"title\":\"groupBoxStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"groupBoxStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/groupBoxStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/groupboxstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/handlesexternalevents(preferring:allowing:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"handlesExternalEvents\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"preferring\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/handlesexternalevents(preferring:allowing:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/handlesExternalEvents(preferring:allowing:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.handlesExternalEvents(preferring:allowing:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"handlesExternalEvents(preferring:allowing:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"handlesExternalEvents\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"preferring\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21handlesExternalEvents10preferring8allowingQrShySSG_AGtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/handlesExternalEvents(preferring:allowing:)\":{\"role\":\"symbol\",\"title\":\"handlesExternalEvents(preferring:allowing:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"handlesExternalEvents\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"preferring\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/handlesExternalEvents(preferring:allowing:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/handlesexternalevents(preferring:allowing:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/headerprominence(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"headerProminence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"prominence\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Prominence\",\"preciseIdentifier\":\"s:7SwiftUI10ProminenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/headerprominence(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/headerProminence(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.headerProminence(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"headerProminence(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"headerProminence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Prominence\",\"preciseIdentifier\":\"s:7SwiftUI10ProminenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16headerProminenceyQrAA0E0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/headerProminence(_:)\":{\"role\":\"symbol\",\"title\":\"headerProminence(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"headerProminence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Prominence\",\"preciseIdentifier\":\"s:7SwiftUI10ProminenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/headerProminence(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/headerprominence(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/help(_:)-1f2w4.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"textKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/help(_:)-1f2w4\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/help(_:)-1f2w4\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.help(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"help(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4helpyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/help(_:)-1f2w4\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/help(_:)-1f2w4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/help(_:)-1f2w4\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/help(_:)-1g6m4.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/help(_:)-1g6m4\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/help(_:)-1g6m4\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.help(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"help(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4helpyQrqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/help(_:)-1g6m4\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/help(_:)-1g6m4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/help(_:)-1g6m4\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/help(_:)-9mw1c.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/help(_:)-9mw1c\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/help(_:)-9mw1c\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.help(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"help(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4helpyQrAA4TextVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/help(_:)-9mw1c\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/help(_:)-9mw1c\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/help(_:)-9mw1c\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/hidden().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/hidden()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/hidden()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.hidden()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"hidden()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6hiddenQryF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/hidden()\":{\"role\":\"symbol\",\"title\":\"hidden()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/hidden()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/hidden()\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/highprioritygesture(_:including:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"highPriorityGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Gesture\",\"preciseIdentifier\":\"s:7SwiftUI7GestureP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/highprioritygesture(_:including:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/highPriorityGesture(_:including:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.highPriorityGesture(_:including:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"highPriorityGesture(_:including:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"highPriorityGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19highPriorityGesture_9includingQrqd___AA0F4MaskVtAA0F0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/highPriorityGesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"highPriorityGesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"highPriorityGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/highPriorityGesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/highprioritygesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/horizontalradiogrouplayout().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"horizontalRadioGroupLayout\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/horizontalradiogrouplayout()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/horizontalRadioGroupLayout()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.horizontalRadioGroupLayout()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"horizontalRadioGroupLayout()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"horizontalRadioGroupLayout\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26horizontalRadioGroupLayoutQryF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/horizontalRadioGroupLayout()\":{\"role\":\"symbol\",\"title\":\"horizontalRadioGroupLayout()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"horizontalRadioGroupLayout\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/horizontalRadioGroupLayout()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/horizontalradiogrouplayout()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/huerotation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hueRotation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"angle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/huerotation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/hueRotation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.hueRotation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"hueRotation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hueRotation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11hueRotationyQrAA5AngleVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/hueRotation(_:)\":{\"role\":\"symbol\",\"title\":\"hueRotation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hueRotation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/hueRotation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/huerotation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/id(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/id(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/id(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.id(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"id(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE2idyQrqd__SHRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/id(_:)\":{\"role\":\"symbol\",\"title\":\"id(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/id(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/id(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/ignoressafearea(_:edges:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ignoresSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"regions\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SafeAreaRegions\",\"preciseIdentifier\":\"s:7SwiftUI15SafeAreaRegionsV\"},{\"kind\":\"text\",\"text\":\" = .all, \"},{\"kind\":\"externalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/ignoressafearea(_:edges:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/ignoresSafeArea(_:edges:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.ignoresSafeArea(_:edges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"ignoresSafeArea(_:edges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ignoresSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SafeAreaRegions\",\"preciseIdentifier\":\"s:7SwiftUI15SafeAreaRegionsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15ignoresSafeArea_5edgesQrAA0eF7RegionsV_AA4EdgeO3SetVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/ignoresSafeArea(_:edges:)\":{\"role\":\"symbol\",\"title\":\"ignoresSafeArea(_:edges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ignoresSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SafeAreaRegions\",\"preciseIdentifier\":\"s:7SwiftUI15SafeAreaRegionsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/ignoresSafeArea(_:edges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ignoressafearea(_:edges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/imagescale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"imageScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Image\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Scale\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV5ScaleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/imagescale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/imageScale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.imageScale(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"imageScale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"imageScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Image\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Scale\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV5ScaleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10imageScaleyQrAA5ImageV0E0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/imageScale(_:)\":{\"role\":\"symbol\",\"title\":\"imageScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"imageScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Image\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Scale\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV5ScaleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/imageScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/imagescale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/importsitemproviders(_:onimport:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"importsItemProviders\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"contentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onImport\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/importsitemproviders(_:onimport:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/importsItemProviders(_:onImport:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.importsItemProviders(_:onImport:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"importsItemProviders(_:onImport:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"importsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onImport\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20importsItemProviders_8onImportQrSay22UniformTypeIdentifiers6UTTypeVG_SbSaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/importsItemProviders(_:onImport:)\":{\"role\":\"symbol\",\"title\":\"importsItemProviders(_:onImport:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"importsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onImport\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/importsItemProviders(_:onImport:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/importsitemproviders(_:onimport:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/init(_:initialindex:content:)-70npt.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"data\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A collection of data that will be provided to content views through closure.\"}]}]},{\"name\":\"initialIndex\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"An initiai index of data for which content view will be rendered first.\"}]}]},{\"name\":\"content\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view builder that dynamically renders content view based on current index and data provided.\"}]}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/init(_:initialindex:content:)-70npt\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/init(_:initialIndex:content:)-70npt\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"Content\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:content:)\",\"roleHeading\":\"Initializer\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"symbolKind\":\"init\",\"externalID\":\"s:9ShuffleIt13CarouselStackV_12initialIndex7contentACyxq_Gx_0F0QzSgq_7ElementQzctcfc\",\"extendedModule\":\"ShuffleIt\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/init(_:initialIndex:content:)-70npt\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"Content\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:content:)\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/init(_:initialIndex:content:)-70npt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/init(_:initialindex:content:)-70npt\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/init(_:initialindex:content:)-7edjn.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"data\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A collection of data that will be provided to content views through closure.\"}]}]},{\"name\":\"initialIndex\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"An initial index of data for which content view will be rendered first.\"}]}]},{\"name\":\"content\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view builder that dynamically renders content view based on current index and data provided. It also exposes the translation value of how much view is been dragging while sliding.\"}]}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/init(_:initialindex:content:)-7edjn\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/init(_:initialIndex:content:)-7edjn\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" and exposes translation value to child content through view builder.\"}],\"kind\":\"symbol\",\"metadata\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"Content\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:content:)\",\"roleHeading\":\"Initializer\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"symbolKind\":\"init\",\"externalID\":\"s:9ShuffleIt13CarouselStackV_12initialIndex7contentACyxq_Gx_0F0QzSgq_7ElementQz_12CoreGraphics7CGFloatVtctcfc\",\"extendedModule\":\"ShuffleIt\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/init(_:initialIndex:content:)-7edjn\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"Content\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:content:)\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" and exposes translation value to child content through view builder.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/init(_:initialIndex:content:)-7edjn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/init(_:initialindex:content:)-7edjn\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/interactivedismissdisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"interactiveDismissDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isDisabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/interactivedismissdisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/interactiveDismissDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.interactiveDismissDisabled(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"interactiveDismissDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"interactiveDismissDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26interactiveDismissDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/interactiveDismissDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"interactiveDismissDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"interactiveDismissDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/interactiveDismissDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/interactivedismissdisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/itemprovider(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"itemProvider\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Optional\",\"preciseIdentifier\":\"s:Sq\"},{\"kind\":\"text\",\"text\":\"<() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"?>) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/itemprovider(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/itemProvider(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.itemProvider(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"itemProvider(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"itemProvider\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Optional\",\"preciseIdentifier\":\"s:Sq\"},{\"kind\":\"text\",\"text\":\"<() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"?>) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12itemProvideryQrSo06NSItemE0CSgycSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/itemProvider(_:)\":{\"role\":\"symbol\",\"title\":\"itemProvider(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"itemProvider\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Optional\",\"preciseIdentifier\":\"s:Sq\"},{\"kind\":\"text\",\"text\":\"<() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"?>) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/itemProvider(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/itemprovider(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/keyboardshortcut(_:)-2vfia.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shortcut\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:)-2vfia\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:)-2vfia\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.keyboardShortcut(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16keyboardShortcutyQrAA08KeyboardE0VSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.4\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.3\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/keyboardShortcut(_:)-2vfia\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:)-2vfia\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:)-2vfia\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/keyboardshortcut(_:)-6bxt2.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shortcut\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:)-6bxt2\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:)-6bxt2\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.keyboardShortcut(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16keyboardShortcutyQrAA08KeyboardE0VF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/keyboardShortcut(_:)-6bxt2\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:)-6bxt2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:)-6bxt2\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/keyboardshortcut(_:modifiers:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\" = .command) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:modifiers:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:modifiers:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.keyboardShortcut(_:modifiers:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16keyboardShortcut_9modifiersQrAA13KeyEquivalentV_AA14EventModifiersVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/keyboardShortcut(_:modifiers:)\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:modifiers:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:modifiers:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/keyboardshortcut(_:modifiers:localization:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\" = .command, \"},{\"kind\":\"externalParam\",\"text\":\"localization\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Localization\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV12LocalizationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:modifiers:localization:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:modifiers:localization:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.keyboardShortcut(_:modifiers:localization:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:localization:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"localization\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Localization\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV12LocalizationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16keyboardShortcut_9modifiers12localizationQrAA13KeyEquivalentV_AA14EventModifiersVAA08KeyboardE0V12LocalizationVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/keyboardShortcut(_:modifiers:localization:)\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:localization:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"localization\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Localization\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV12LocalizationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:modifiers:localization:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:modifiers:localization:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/labelshidden().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelsHidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/labelshidden()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/labelsHidden()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.labelsHidden()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"labelsHidden()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelsHidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12labelsHiddenQryF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/labelsHidden()\":{\"role\":\"symbol\",\"title\":\"labelsHidden()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelsHidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/labelsHidden()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/labelshidden()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/labelstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"LabelStyle\",\"preciseIdentifier\":\"s:7SwiftUI10LabelStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/labelstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/labelStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.labelStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"labelStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10labelStyleyQrqd__AA05LabelE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/labelStyle(_:)\":{\"role\":\"symbol\",\"title\":\"labelStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/labelStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/labelstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/layoutpriority(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"layoutPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/layoutpriority(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/layoutPriority(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.layoutPriority(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"layoutPriority(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"layoutPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14layoutPriorityyQrSdF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/layoutPriority(_:)\":{\"role\":\"symbol\",\"title\":\"layoutPriority(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"layoutPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/layoutPriority(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/layoutpriority(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/linelimit(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineLimit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"number\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/linelimit(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/lineLimit(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.lineLimit(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"lineLimit(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineLimit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9lineLimityQrSiSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/lineLimit(_:)\":{\"role\":\"symbol\",\"title\":\"lineLimit(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineLimit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/lineLimit(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/linelimit(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/linespacing(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/linespacing(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/lineSpacing(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.lineSpacing(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"lineSpacing(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11lineSpacingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/lineSpacing(_:)\":{\"role\":\"symbol\",\"title\":\"lineSpacing(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/lineSpacing(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/linespacing(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/listitemtint(_:)-9yojl.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ListItemTint\",\"preciseIdentifier\":\"s:7SwiftUI12ListItemTintV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/listitemtint(_:)-9yojl\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listItemTint(_:)-9yojl\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listItemTint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ListItemTint\",\"preciseIdentifier\":\"s:7SwiftUI12ListItemTintV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12listItemTintyQrAA04ListeF0VSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/listItemTint(_:)-9yojl\":{\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ListItemTint\",\"preciseIdentifier\":\"s:7SwiftUI12ListItemTintV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listItemTint(_:)-9yojl\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/listitemtint(_:)-9yojl\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/listitemtint(_:)-w4ry.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/listitemtint(_:)-w4ry\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listItemTint(_:)-w4ry\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listItemTint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12listItemTintyQrAA5ColorVSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/listItemTint(_:)-w4ry\":{\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listItemTint(_:)-w4ry\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/listitemtint(_:)-w4ry\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/listrowbackground(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowBackground\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"view\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/listrowbackground(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listRowBackground(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listRowBackground(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listRowBackground(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowBackground\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17listRowBackgroundyQrqd__SgAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/listRowBackground(_:)\":{\"role\":\"symbol\",\"title\":\"listRowBackground(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowBackground\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listRowBackground(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/listrowbackground(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/listrowinsets(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowInsets\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"insets\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/listrowinsets(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listRowInsets(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listRowInsets(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listRowInsets(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowInsets\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13listRowInsetsyQrAA04EdgeF0VSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/listRowInsets(_:)\":{\"role\":\"symbol\",\"title\":\"listRowInsets(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowInsets\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listRowInsets(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/listrowinsets(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/liststyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ListStyle\",\"preciseIdentifier\":\"s:7SwiftUI9ListStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/liststyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9listStyleyQrqd__AA04ListE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/listStyle(_:)\":{\"role\":\"symbol\",\"title\":\"listStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/liststyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/luminancetoalpha().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"luminanceToAlpha\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/luminancetoalpha()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/luminanceToAlpha()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.luminanceToAlpha()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"luminanceToAlpha()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"luminanceToAlpha\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16luminanceToAlphaQryF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/luminanceToAlpha()\":{\"role\":\"symbol\",\"title\":\"luminanceToAlpha()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"luminanceToAlpha\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/luminanceToAlpha()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/luminancetoalpha()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/mask(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/mask(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/mask(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.mask(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"mask(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4maskyQrqd__AaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use overload where mask accepts a @ViewBuilder instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use overload where mask accepts a @ViewBuilder instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use overload where mask accepts a @ViewBuilder instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use overload where mask accepts a @ViewBuilder instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use overload where mask accepts a @ViewBuilder instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/mask(_:)\":{\"role\":\"symbol\",\"title\":\"mask(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/mask(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/mask(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/mask(alignment:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/mask(alignment:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/mask(alignment:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.mask(alignment:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"mask(alignment:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4mask9alignment_QrAA9AlignmentV_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/mask(alignment:_:)\":{\"role\":\"symbol\",\"title\":\"mask(alignment:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/mask(alignment:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/mask(alignment:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/matchedgeometryeffect(id:in:properties:anchor:issource:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"matchedGeometryEffect\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"properties\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"MatchedGeometryProperties\",\"preciseIdentifier\":\"s:7SwiftUI25MatchedGeometryPropertiesV\"},{\"kind\":\"text\",\"text\":\" = .frame, \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"isSource\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/matchedgeometryeffect(id:in:properties:anchor:issource:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.matchedGeometryEffect(id:in:properties:anchor:isSource:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"matchedGeometryEffect\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"properties\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"MatchedGeometryProperties\",\"preciseIdentifier\":\"s:7SwiftUI25MatchedGeometryPropertiesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isSource\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21matchedGeometryEffect2id2in10properties6anchor8isSourceQrqd___AA9NamespaceV2IDVAA07MatchedE10PropertiesVAA9UnitPointVSbtSHRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/matchedGeometryEffect(id:in:properties:anchor:isSource:)\":{\"role\":\"symbol\",\"title\":\"matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"matchedGeometryEffect\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"properties\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"MatchedGeometryProperties\",\"preciseIdentifier\":\"s:7SwiftUI25MatchedGeometryPropertiesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isSource\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/matchedgeometryeffect(id:in:properties:anchor:issource:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/menubuttonstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuButtonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuButtonStyle\",\"preciseIdentifier\":\"s:7SwiftUI15MenuButtonStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/menubuttonstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/menuButtonStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.menuButtonStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"menuButtonStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuButtonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15menuButtonStyleyQrqd__AA04MenueF0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `menuStyle(_:)` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use `menuStyle(_:)` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/menuButtonStyle(_:)\":{\"role\":\"symbol\",\"title\":\"menuButtonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuButtonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/menuButtonStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/menubuttonstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/menuindicator(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuIndicator\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"visibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/menuindicator(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/menuIndicator(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.menuIndicator(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"menuIndicator(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuIndicator\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13menuIndicatoryQrAA10VisibilityOF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/menuIndicator(_:)\":{\"role\":\"symbol\",\"title\":\"menuIndicator(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuIndicator\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/menuIndicator(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/menuindicator(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/menustyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuStyle\",\"preciseIdentifier\":\"s:7SwiftUI9MenuStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/menustyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/menuStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.menuStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"menuStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9menuStyleyQrqd__AA04MenuE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/menuStyle(_:)\":{\"role\":\"symbol\",\"title\":\"menuStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/menuStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/menustyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/minimumscalefactor(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"minimumScaleFactor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"factor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/minimumscalefactor(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/minimumScaleFactor(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.minimumScaleFactor(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"minimumScaleFactor(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"minimumScaleFactor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18minimumScaleFactoryQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/minimumScaleFactor(_:)\":{\"role\":\"symbol\",\"title\":\"minimumScaleFactor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"minimumScaleFactor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/minimumScaleFactor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/minimumscalefactor(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/modifier(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/modifier(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/modifier(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.modifier(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"modifier(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8modifieryAA15ModifiedContentVyxqd__Gqd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/modifier(_:)\":{\"role\":\"symbol\",\"title\":\"modifier(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/modifier(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/modifier(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/monospaceddigit().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"monospacedDigit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/monospaceddigit()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/monospacedDigit()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.monospacedDigit()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"monospacedDigit()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"monospacedDigit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15monospacedDigitQryF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/monospacedDigit()\":{\"role\":\"symbol\",\"title\":\"monospacedDigit()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"monospacedDigit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/monospacedDigit()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/monospaceddigit()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/movedisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"moveDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isDisabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/movedisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/moveDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.moveDisabled(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"moveDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"moveDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12moveDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/moveDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"moveDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"moveDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/moveDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/movedisabled(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/multilinetextalignment(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"multilineTextAlignment\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TextAlignment\",\"preciseIdentifier\":\"s:7SwiftUI13TextAlignmentO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/multilinetextalignment(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/multilineTextAlignment(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.multilineTextAlignment(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"multilineTextAlignment(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"multilineTextAlignment\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TextAlignment\",\"preciseIdentifier\":\"s:7SwiftUI13TextAlignmentO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE22multilineTextAlignmentyQrAA0eF0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/multilineTextAlignment(_:)\":{\"role\":\"symbol\",\"title\":\"multilineTextAlignment(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"multilineTextAlignment\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TextAlignment\",\"preciseIdentifier\":\"s:7SwiftUI13TextAlignmentO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/multilineTextAlignment(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/multilinetextalignment(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/navigationsubtitle(_:)-10991.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"subtitle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationsubtitle(_:)-10991\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationSubtitle(_:)-10991\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationSubtitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18navigationSubtitleyQrAA4TextVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"Mac Catalyst\",\"introducedAt\":\"14.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationSubtitle(_:)-10991\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationSubtitle(_:)-10991\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationsubtitle(_:)-10991\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/navigationsubtitle(_:)-7xq4j.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"subtitleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationsubtitle(_:)-7xq4j\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationSubtitle(_:)-7xq4j\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationSubtitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18navigationSubtitleyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"Mac Catalyst\",\"introducedAt\":\"14.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationSubtitle(_:)-7xq4j\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationSubtitle(_:)-7xq4j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationsubtitle(_:)-7xq4j\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/navigationsubtitle(_:)-8lv93.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"subtitle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationsubtitle(_:)-8lv93\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationSubtitle(_:)-8lv93\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationSubtitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18navigationSubtitleyQrqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"Mac Catalyst\",\"introducedAt\":\"14.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationSubtitle(_:)-8lv93\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationSubtitle(_:)-8lv93\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationsubtitle(_:)-8lv93\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/navigationtitle(_:)-544cp.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-544cp\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-544cp\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationTitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15navigationTitleyQrqd__yXEAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationTitle(_:)-544cp\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-544cp\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-544cp\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/navigationtitle(_:)-5xkgg.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-5xkgg\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-5xkgg\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationTitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15navigationTitleyQrqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationTitle(_:)-5xkgg\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-5xkgg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-5xkgg\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/navigationtitle(_:)-7209e.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-7209e\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-7209e\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationTitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15navigationTitleyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationTitle(_:)-7209e\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-7209e\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-7209e\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/navigationtitle(_:)-8mmxy.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-8mmxy\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-8mmxy\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationTitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15navigationTitleyQrAA4TextVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationTitle(_:)-8mmxy\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-8mmxy\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-8mmxy\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/navigationviewstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"NavigationViewStyle\",\"preciseIdentifier\":\"s:7SwiftUI19NavigationViewStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationviewstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationViewStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationViewStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationViewStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE010navigationC5StyleyQrqd__AA010NavigationcE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"navigationViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/offset(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/offset(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/offset(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.offset(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"offset(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6offsetyQrSo6CGSizeVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/offset(_:)\":{\"role\":\"symbol\",\"title\":\"offset(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/offset(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/offset(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/offset(x:y:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0, \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/offset(x:y:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/offset(x:y:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.offset(x:y:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"offset(x:y:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6offset1x1yQr12CoreGraphics7CGFloatV_AItF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/offset(x:y:)\":{\"role\":\"symbol\",\"title\":\"offset(x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/offset(x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/offset(x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onappear(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onAppear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onappear(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onAppear(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onAppear(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onAppear(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onAppear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8onAppear7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onAppear(perform:)\":{\"role\":\"symbol\",\"title\":\"onAppear(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onAppear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onAppear(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onappear(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/oncarousel(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarousel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"preciseIdentifier\":\"s:9ShuffleIt15CarouselContextV\",\"text\":\"CarouselContext\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action for side effect of sliding.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes carousel context to perform everytime sliding occurs.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Using \"},{\"type\":\"codeVoice\",\"code\":\"onCarousel(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can be injected with a closure that exposes sliding information - \"},{\"type\":\"codeVoice\",\"code\":\"CarouselContext\"},{\"type\":\"text\",\"text\":\" through its parameter to perform a particular task whenever the user slides content views or sliding is executed programmatically.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following piece of code provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onCarousel(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .onCarousel { (context: CarouselContext) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/oncarousel(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCarousel(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens sliding events occurring on the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onCarousel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarousel\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselContext\",\"preciseIdentifier\":\"s:9ShuffleIt15CarouselContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE10onCarouselyQryAD0G7ContextVcF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext\":{\"role\":\"symbol\",\"title\":\"CarouselContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onCarousel(_:)\":{\"role\":\"symbol\",\"title\":\"onCarousel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarousel\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselContext\",\"preciseIdentifier\":\"s:9ShuffleIt15CarouselContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens sliding events occurring on the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCarousel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncarousel(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/oncarouseltranslation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarouselTranslation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action to listen translation changes.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes translation changes while sliding.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To listen translation value of content views while sliding, \"},{\"type\":\"codeVoice\",\"code\":\"onCarouselTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier can be used by passing a closure in order to perform a specific task based on the translation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onCarouselTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .onCarouselTranslation { (translation: CGFloat) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Besides, you can also directly listen translation value through the initializer instead of using this modifier.\"}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/oncarouseltranslation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCarouselTranslation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while sliding content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onCarouselTranslation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarouselTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE21onCarouselTranslationyQry12CoreGraphics7CGFloatVcF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onCarouselTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onCarouselTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarouselTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while sliding content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCarouselTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncarouseltranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onchange(of:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Equatable\",\"preciseIdentifier\":\"s:SQ\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onchange(of:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onChange(of:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onChange(of:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onChange(of:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8onChange2of7performQrqd___yqd__ctSQRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onChange(of:perform:)\":{\"role\":\"symbol\",\"title\":\"onChange(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onChange(of:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onchange(of:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/oncommand(_:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"selector\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Selector\",\"preciseIdentifier\":\"s:10ObjectiveC8SelectorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/oncommand(_:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCommand(_:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onCommand(_:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onCommand(_:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Selector\",\"preciseIdentifier\":\"s:10ObjectiveC8SelectorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9onCommand_7performQr10ObjectiveC8SelectorV_yycSgtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onCommand(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onCommand(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Selector\",\"preciseIdentifier\":\"s:10ObjectiveC8SelectorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCommand(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncommand(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/oncontinueuseractivity(_:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onContinueUserActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activityType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/oncontinueuseractivity(_:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onContinueUserActivity(_:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onContinueUserActivity(_:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onContinueUserActivity(_:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onContinueUserActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE22onContinueUserActivity_7performQrSS_ySo06NSUserG0CctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onContinueUserActivity(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onContinueUserActivity(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onContinueUserActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onContinueUserActivity(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncontinueuseractivity(_:perform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/oncopycommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCopyCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/oncopycommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCopyCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onCopyCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onCopyCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCopyCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13onCopyCommand7performQrSaySo14NSItemProviderCGycSg_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onCopyCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onCopyCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCopyCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCopyCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncopycommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/oncutcommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCutCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/oncutcommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCutCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onCutCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onCutCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCutCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12onCutCommand7performQrSaySo14NSItemProviderCGycSg_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onCutCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onCutCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCutCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCutCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncutcommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/ondeletecommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDeleteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/ondeletecommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDeleteCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDeleteCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDeleteCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDeleteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15onDeleteCommand7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDeleteCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onDeleteCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDeleteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDeleteCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondeletecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/ondisappear(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDisappear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/ondisappear(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDisappear(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDisappear(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDisappear(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDisappear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11onDisappear7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDisappear(perform:)\":{\"role\":\"symbol\",\"title\":\"onDisappear(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDisappear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDisappear(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondisappear(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/ondrag(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrag(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrag(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrag(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrag(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDragyQrSo14NSItemProviderCycF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.4\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrag(_:)\":{\"role\":\"symbol\",\"title\":\"onDrag(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrag(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrag(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/ondrag(_:preview:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"preview\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrag(_:preview:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrag(_:preview:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrag(_:preview:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrag(_:preview:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"preview\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrag_7previewQrSo14NSItemProviderCyc_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrag(_:preview:)\":{\"role\":\"symbol\",\"title\":\"onDrag(_:preview:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"preview\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrag(_:preview:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrag(_:preview:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/ondrop(of:delegate:)-2phlc.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:delegate:)-2phlc\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:delegate:)-2phlc\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:delegate:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of8delegateQrSay22UniformTypeIdentifiers6UTTypeVG_AA0E8Delegate_ptF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrop(of:delegate:)-2phlc\":{\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:delegate:)-2phlc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:delegate:)-2phlc\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/ondrop(of:delegate:)-5rv2.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:delegate:)-5rv2\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:delegate:)-5rv2\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:delegate:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of8delegateQrSaySSG_AA0E8Delegate_ptF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"13.4\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrop(of:delegate:)-5rv2\":{\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:delegate:)-5rv2\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:delegate:)-5rv2\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/ondrop(of:istargeted:perform:)-1ne0m.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-1ne0m\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-1ne0m\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:isTargeted:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSaySSG_AA7BindingVySbGSgSbSaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"13.4\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrop(of:isTargeted:perform:)-1ne0m\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-1ne0m\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-1ne0m\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/ondrop(of:istargeted:perform:)-2dbsa.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-2dbsa\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-2dbsa\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:isTargeted:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSaySSG_AA7BindingVySbGSgSbSaySo14NSItemProviderCG_So7CGPointVtctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"13.4\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrop(of:isTargeted:perform:)-2dbsa\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-2dbsa\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-2dbsa\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/ondrop(of:istargeted:perform:)-3z0u6.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-3z0u6\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-3z0u6\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:isTargeted:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSay22UniformTypeIdentifiers6UTTypeVG_AA7BindingVySbGSgSbSaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrop(of:isTargeted:perform:)-3z0u6\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-3z0u6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-3z0u6\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/ondrop(of:istargeted:perform:)-7mvpm.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-7mvpm\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-7mvpm\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:isTargeted:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSay22UniformTypeIdentifiers6UTTypeVG_AA7BindingVySbGSgSbSaySo14NSItemProviderCG_So7CGPointVtctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrop(of:isTargeted:perform:)-7mvpm\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-7mvpm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-7mvpm\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onexitcommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onExitCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onexitcommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onExitCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onExitCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onExitCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onExitCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13onExitCommand7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onExitCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onExitCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onExitCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onExitCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onexitcommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onhover(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onHover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onhover(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onHover(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onHover(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onHover(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onHover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7onHover7performQrySbc_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.4\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onHover(perform:)\":{\"role\":\"symbol\",\"title\":\"onHover(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onHover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onHover(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onhover(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\" = 0.5, \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 10, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration15maximumDistance7perform0D15PressingChangedQrSd_12CoreGraphics7CGFloatVyycySbcSgtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\" = 0.5, \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 10, \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration15maximumDistance8pressing7performQrSd_12CoreGraphics7CGFloatVySbcSgyyctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"onLongPressGesture(minimumDuration:maximumDuration:perform:onPressingChanged:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"onLongPressGesture(minimumDuration:maximumDuration:perform:onPressingChanged:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"onLongPressGesture(minimumDuration:maximumDuration:perform:onPressingChanged:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onlongpressgesture(minimumduration:perform:onpressingchanged:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\" = 0.5, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:perform:onpressingchanged:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onLongPressGesture(minimumDuration:perform:onPressingChanged:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration7perform0D15PressingChangedQrSd_yycySbcSgtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:perform:onpressingchanged:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onlongpressgesture(minimumduration:pressing:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\" = 0.5, \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:pressing:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:pressing:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onLongPressGesture(minimumDuration:pressing:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:pressing:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration8pressing7performQrSd_ySbcSgyyctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"deprecated\":false,\"introducedAt\":\"14.0\",\"name\":\"tvOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onLongPressGesture(minimumDuration:pressing:perform:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:pressing:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:pressing:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:pressing:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onmovecommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onMoveCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"MoveCommandDirection\",\"preciseIdentifier\":\"s:7SwiftUI20MoveCommandDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onmovecommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onMoveCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onMoveCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onMoveCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onMoveCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"MoveCommandDirection\",\"preciseIdentifier\":\"s:7SwiftUI20MoveCommandDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13onMoveCommand7performQryAA0eF9DirectionOcSg_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onMoveCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onMoveCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onMoveCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"MoveCommandDirection\",\"preciseIdentifier\":\"s:7SwiftUI20MoveCommandDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onMoveCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onmovecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onopenurl(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onOpenURL\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onopenurl(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onOpenURL(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onOpenURL(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onOpenURL(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onOpenURL\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9onOpenURL7performQry10Foundation0F0Vc_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onOpenURL(perform:)\":{\"role\":\"symbol\",\"title\":\"onOpenURL(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onOpenURL\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onOpenURL(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onopenurl(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onpastecommand(of:perform:)-27ier.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:perform:)-27ier\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:perform:)-27ier\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPasteCommand(of:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14onPasteCommand2of7performQrSay22UniformTypeIdentifiers6UTTypeVG_ySaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onPasteCommand(of:perform:)-27ier\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:perform:)-27ier\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:perform:)-27ier\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onpastecommand(of:perform:)-2cj5d.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:perform:)-2cj5d\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:perform:)-2cj5d\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPasteCommand(of:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14onPasteCommand2of7performQrSaySSG_ySaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onPasteCommand(of:perform:)-2cj5d\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:perform:)-2cj5d\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:perform:)-2cj5d\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onpastecommand(of:validator:perform:)-18sg7.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:validator:perform:)-18sg7\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:validator:perform:)-18sg7\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPasteCommand(of:validator:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14onPasteCommand2of9validator7performQrSay22UniformTypeIdentifiers6UTTypeVG_qd__SgSaySo14NSItemProviderCGcyqd__ctlF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onPasteCommand(of:validator:perform:)-18sg7\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:validator:perform:)-18sg7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:validator:perform:)-18sg7\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onpastecommand(of:validator:perform:)-1ws2h.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:validator:perform:)-1ws2h\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:validator:perform:)-1ws2h\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPasteCommand(of:validator:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14onPasteCommand2of9validator7performQrSaySSG_qd__SgSaySo14NSItemProviderCGcyqd__ctlF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onPasteCommand(of:validator:perform:)-1ws2h\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:validator:perform:)-1ws2h\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:validator:perform:)-1ws2h\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onplaypausecommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPlayPauseCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onplaypausecommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPlayPauseCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPlayPauseCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPlayPauseCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPlayPauseCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onPlayPauseCommand7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onPlayPauseCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onPlayPauseCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPlayPauseCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPlayPauseCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onplaypausecommand(perform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onpreferencechange(_:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPreferenceChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Equatable\",\"preciseIdentifier\":\"s:SQ\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onpreferencechange(_:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPreferenceChange(_:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPreferenceChange(_:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPreferenceChange(_:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPreferenceChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onPreferenceChange_7performQrqd__m_y5ValueQyd__ctAA0E3KeyRd__SQAGRQlF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onPreferenceChange(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onPreferenceChange(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPreferenceChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPreferenceChange(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpreferencechange(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onreceive(_:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onReceive\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"publisher\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Publisher\",\"preciseIdentifier\":\"s:7Combine9PublisherP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Failure\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"Never\",\"preciseIdentifier\":\"s:s5NeverO\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onreceive(_:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onReceive(_:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onReceive(_:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onReceive(_:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onReceive\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9onReceive_7performQrqd___y6OutputQyd__ct7Combine9PublisherRd__s5NeverO7FailureRtd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onReceive(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onReceive(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onReceive\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onReceive(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onreceive(_:perform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onshuffle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A7ContextV\",\"text\":\"ShuffleContext\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action for side effect of shuffling.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes shuffle context to perform everytime shuffling happens.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Using \"},{\"type\":\"codeVoice\",\"code\":\"onShuffle(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can be injected wtih a closure that exposes shuffling information - \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleContext\"},{\"type\":\"text\",\"text\":\" through its parameter to perform a particular task whenever the user swipes content views or shuffling is triggered programmatically.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onShuffle(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .onShuffle { (context: ShuffleContext) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onShuffle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffle\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A7ContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE02onD0yQryAD0D7ContextVcF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onShuffle(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffle\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A7ContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext\":{\"role\":\"symbol\",\"title\":\"ShuffleContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onshuffledeck(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeck\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A11DeckContextV\",\"text\":\"ShuffleDeckContext\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action for side effect of shuffling.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes shuffle deck context to perform everytime shuffling occurs.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Using \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleDeck(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can inject a closure that exposes shuffling information - \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeckContext\"},{\"type\":\"text\",\"text\":\" through its parameter to perform a particular task whenever the user shuffle content views or shuffling is triggered programmatically.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following piece of code provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleDeck(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .onShuffleDeck { (context: ShuffleDeckContext) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffledeck(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffleDeck(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onShuffleDeck(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeck\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A11DeckContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE02onD4DeckyQryAD0dG7ContextVcF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onShuffleDeck(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeck(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeck\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A11DeckContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffleDeck(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffledeck(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onshuffledecktranslation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeckTranslation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action to listen translation changes.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes translation changes while shuffling.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To listen translation value of content views, \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleDeckTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier can be used by passing a closure in order to perform a specific task based on the translation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleDeckTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .onShuffleDeckTranslation { (translation: CGFloat) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Besides, you can also directly listen translation value through the view builder instead.\"}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffledecktranslation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffleDeckTranslation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while shuffling content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onShuffleDeckTranslation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeckTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE02onD15DeckTranslationyQry12CoreGraphics7CGFloatVcF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onShuffleDeckTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeckTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeckTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while shuffling content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffleDeckTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffledecktranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onshuffletranslation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleTranslation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action to listen translation changes.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes translation changes while swiping.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To listen translation value of content views while shuffling, \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier can be used by passing a closure in order to perform a specific task based on the translation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .onShuffleTranslation { (translation: CGFloat) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Besides, you can also directly listen translation value through the initializer instead of using this modifier.\"}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffletranslation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffleTranslation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while swiping content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onShuffleTranslation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE02onD11TranslationyQry12CoreGraphics7CGFloatVcF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onShuffleTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while swiping content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffleTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffletranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/onsubmit(of:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onSubmit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"triggers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitTriggers\",\"preciseIdentifier\":\"s:7SwiftUI14SubmitTriggersV\"},{\"kind\":\"text\",\"text\":\" = .text, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/onsubmit(of:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onSubmit(of:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onSubmit(of:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onSubmit(of:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onSubmit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitTriggers\",\"preciseIdentifier\":\"s:7SwiftUI14SubmitTriggersV\"},{\"kind\":\"text\",\"text\":\", (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8onSubmit2of_QrAA0E8TriggersV_yyctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onSubmit(of:_:)\":{\"role\":\"symbol\",\"title\":\"onSubmit(of:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onSubmit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitTriggers\",\"preciseIdentifier\":\"s:7SwiftUI14SubmitTriggersV\"},{\"kind\":\"text\",\"text\":\", (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onSubmit(of:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onsubmit(of:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/ontapgesture(count:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onTapGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\" = 1, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/ontapgesture(count:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onTapGesture(count:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onTapGesture(count:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onTapGesture(count:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onTapGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12onTapGesture5count7performQrSi_yyctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onTapGesture(count:perform:)\":{\"role\":\"symbol\",\"title\":\"onTapGesture(count:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onTapGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onTapGesture(count:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ontapgesture(count:perform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/opacity(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/opacity(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/opacity(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.opacity(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"opacity(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7opacityyQrSdF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/opacity(_:)\":{\"role\":\"symbol\",\"title\":\"opacity(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/opacity(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/opacity(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/overlay(_:alignment:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(_:alignment:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(_:alignment:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlay(_:alignment:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlay(_:alignment:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7overlay_9alignmentQrqd___AA9AlignmentVtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `overlay(alignment:content:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `overlay(alignment:content:)` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `overlay(alignment:content:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `overlay(alignment:content:)` instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use `overlay(alignment:content:)` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/overlay(_:alignment:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(_:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(_:alignment:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/overlay(_:ignoressafeareaedges:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(_:ignoressafeareaedges:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(_:ignoresSafeAreaEdges:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlay(_:ignoresSafeAreaEdges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlay(_:ignoresSafeAreaEdges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7overlay_20ignoresSafeAreaEdgesQrqd___AA4EdgeO3SetVtAA10ShapeStyleRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/overlay(_:ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(_:ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(_:ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/overlay(_:in:fillstyle:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(_:in:fillstyle:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(_:in:fillStyle:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlay(_:in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlay(_:in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7overlay_2in9fillStyleQrqd___qd_0_AA04FillG0VtAA05ShapeG0Rd__AA0I0Rd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/overlay(_:in:fillStyle:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(_:in:fillStyle:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(_:in:fillstyle:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/overlay(alignment:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(alignment:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(alignment:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlay(alignment:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlay(alignment:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7overlay9alignment7contentQrAA9AlignmentV_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/overlay(alignment:content:)\":{\"role\":\"symbol\",\"title\":\"overlay(alignment:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(alignment:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(alignment:content:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/overlaypreferencevalue(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlayPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type = Key.self, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/overlaypreferencevalue(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlayPreferenceValue(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlayPreferenceValue(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlayPreferenceValue(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlayPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE22overlayPreferenceValueyQrqd__m_qd_0_0F0Qyd__ctAA0E3KeyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/overlayPreferenceValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"overlayPreferenceValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlayPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlayPreferenceValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlaypreferencevalue(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/padding(_:)-254fg.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"length\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/padding(_:)-254fg\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/padding(_:)-254fg\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.padding(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"padding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7paddingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/padding(_:)-254fg\":{\"role\":\"symbol\",\"title\":\"padding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/padding(_:)-254fg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/padding(_:)-254fg\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/padding(_:)-h9m6.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"insets\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/padding(_:)-h9m6\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/padding(_:)-h9m6\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.padding(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"padding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7paddingyQrAA10EdgeInsetsVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/padding(_:)-h9m6\":{\"role\":\"symbol\",\"title\":\"padding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/padding(_:)-h9m6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/padding(_:)-h9m6\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/padding(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"length\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/padding(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/padding(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.padding(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"padding(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7paddingyQrAA4EdgeO3SetV_12CoreGraphics7CGFloatVSgtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/padding(_:_:)\":{\"role\":\"symbol\",\"title\":\"padding(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/padding(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/padding(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/pagecommand(value:in:step:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pageCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"bounds\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ClosedRange\",\"preciseIdentifier\":\"s:SN\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"step\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" = 1) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"BinaryInteger\",\"preciseIdentifier\":\"s:Sz\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/pagecommand(value:in:step:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/pageCommand(value:in:step:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.pageCommand(value:in:step:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"pageCommand(value:in:step:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pageCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ClosedRange\",\"preciseIdentifier\":\"s:SN\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"step\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11pageCommand5value2in4stepQrAA7BindingVyqd__G_SNyqd__Gqd__tSzRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.3\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/pageCommand(value:in:step:)\":{\"role\":\"symbol\",\"title\":\"pageCommand(value:in:step:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pageCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ClosedRange\",\"preciseIdentifier\":\"s:SN\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"step\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/pageCommand(value:in:step:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/pagecommand(value:in:step:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/pickerstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PickerStyle\",\"preciseIdentifier\":\"s:7SwiftUI11PickerStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/pickerstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/pickerStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.pickerStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"pickerStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11pickerStyleyQrqd__AA06PickerE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/pickerStyle(_:)\":{\"role\":\"symbol\",\"title\":\"pickerStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/pickerStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/pickerstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/popover(ispresented:attachmentanchor:arrowedge:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\" = .rect(.bounds), \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\" = .top, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/popover(ispresented:attachmentanchor:arrowedge:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.popover(isPresented:attachmentAnchor:arrowEdge:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7popover11isPresented16attachmentAnchor9arrowEdge7contentQrAA7BindingVySbG_AA017PopoverAttachmentH0OAA0J0Oqd__yctAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/popover(isPresented:attachmentAnchor:arrowEdge:content:)\":{\"role\":\"symbol\",\"title\":\"popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/popover(ispresented:attachmentanchor:arrowedge:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/popover(item:attachmentanchor:arrowedge:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\" = .rect(.bounds), \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\" = .top, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/popover(item:attachmentanchor:arrowedge:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/popover(item:attachmentAnchor:arrowEdge:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.popover(item:attachmentAnchor:arrowEdge:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"popover(item:attachmentAnchor:arrowEdge:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7popover4item16attachmentAnchor9arrowEdge7contentQrAA7BindingVyqd__SgG_AA017PopoverAttachmentG0OAA0I0Oqd_0_qd__cts12IdentifiableRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/popover(item:attachmentAnchor:arrowEdge:content:)\":{\"role\":\"symbol\",\"title\":\"popover(item:attachmentAnchor:arrowEdge:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/popover(item:attachmentAnchor:arrowEdge:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/popover(item:attachmentanchor:arrowedge:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/position(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/position(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/position(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.position(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"position(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8positionyQrSo7CGPointVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/position(_:)\":{\"role\":\"symbol\",\"title\":\"position(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/position(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/position(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/position(x:y:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0, \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/position(x:y:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/position(x:y:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.position(x:y:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"position(x:y:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8position1x1yQr12CoreGraphics7CGFloatV_AItF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/position(x:y:)\":{\"role\":\"symbol\",\"title\":\"position(x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/position(x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/position(x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/preference(key:value:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/preference(key:value:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/preference(key:value:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.preference(key:value:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"preference(key:value:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10preference3key5valueQrqd__m_5ValueQyd__tAA13PreferenceKeyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/preference(key:value:)\":{\"role\":\"symbol\",\"title\":\"preference(key:value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/preference(key:value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/preference(key:value:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/preferredcolorscheme(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preferredColorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/preferredcolorscheme(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/preferredColorScheme(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.preferredColorScheme(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"preferredColorScheme(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preferredColorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20preferredColorSchemeyQrAA0eF0OSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/preferredColorScheme(_:)\":{\"role\":\"symbol\",\"title\":\"preferredColorScheme(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preferredColorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/preferredColorScheme(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/preferredcolorscheme(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/prefersdefaultfocus(_:in:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/prefersdefaultfocus(_:in:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/prefersDefaultFocus(_:in:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.prefersDefaultFocus(_:in:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"prefersDefaultFocus(_:in:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19prefersDefaultFocus_2inQrSb_AA9NamespaceV2IDVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/prefersDefaultFocus(_:in:)\":{\"role\":\"symbol\",\"title\":\"prefersDefaultFocus(_:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/prefersDefaultFocus(_:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/prefersdefaultfocus(_:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/presentedwindowstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"WindowStyle\",\"preciseIdentifier\":\"s:7SwiftUI11WindowStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/presentedwindowstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/presentedWindowStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.presentedWindowStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"presentedWindowStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20presentedWindowStyleyQrqd__AA0eF0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/presentedWindowStyle(_:)\":{\"role\":\"symbol\",\"title\":\"presentedWindowStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/presentedWindowStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/presentedwindowstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/presentedwindowtoolbarstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowToolbarStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"WindowToolbarStyle\",\"preciseIdentifier\":\"s:7SwiftUI18WindowToolbarStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/presentedwindowtoolbarstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/presentedWindowToolbarStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.presentedWindowToolbarStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"presentedWindowToolbarStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowToolbarStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE27presentedWindowToolbarStyleyQrqd__AA0efG0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/presentedWindowToolbarStyle(_:)\":{\"role\":\"symbol\",\"title\":\"presentedWindowToolbarStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowToolbarStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/presentedWindowToolbarStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/presentedwindowtoolbarstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/previewcontext(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewContext\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewContext\",\"preciseIdentifier\":\"s:7SwiftUI14PreviewContextP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/previewcontext(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewContext(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewContext(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewContext(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewContext\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14previewContextyQrqd__AA07PreviewE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/previewContext(_:)\":{\"role\":\"symbol\",\"title\":\"previewContext(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewContext\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewContext(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewcontext(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/previewdevice(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDevice\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewDevice\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewDeviceV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/previewdevice(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewDevice(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewDevice(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewDevice(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDevice\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewDevice\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewDeviceV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13previewDeviceyQrAA07PreviewE0VSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/previewDevice(_:)\":{\"role\":\"symbol\",\"title\":\"previewDevice(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDevice\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewDevice\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewDeviceV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewDevice(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewdevice(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/previewdisplayname(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDisplayName\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/previewdisplayname(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewDisplayName(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewDisplayName(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewDisplayName(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDisplayName\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18previewDisplayNameyQrSSSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/previewDisplayName(_:)\":{\"role\":\"symbol\",\"title\":\"previewDisplayName(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDisplayName\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewDisplayName(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewdisplayname(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/previewinterfaceorientation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewInterfaceOrientation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"InterfaceOrientation\",\"preciseIdentifier\":\"s:7SwiftUI20InterfaceOrientationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/previewinterfaceorientation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewInterfaceOrientation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewInterfaceOrientation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewInterfaceOrientation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewInterfaceOrientation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"InterfaceOrientation\",\"preciseIdentifier\":\"s:7SwiftUI20InterfaceOrientationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE27previewInterfaceOrientationyQrAA0eF0VF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/previewInterfaceOrientation(_:)\":{\"role\":\"symbol\",\"title\":\"previewInterfaceOrientation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewInterfaceOrientation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"InterfaceOrientation\",\"preciseIdentifier\":\"s:7SwiftUI20InterfaceOrientationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewInterfaceOrientation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewinterfaceorientation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/previewlayout(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewLayout\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewLayout\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewLayoutO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/previewlayout(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewLayout(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewLayout(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewLayout(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewLayout\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewLayout\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewLayoutO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13previewLayoutyQrAA07PreviewE0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/previewLayout(_:)\":{\"role\":\"symbol\",\"title\":\"previewLayout(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewLayout\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewLayout\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewLayoutO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewLayout(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewlayout(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/privacysensitive(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"privacySensitive\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"sensitive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/privacysensitive(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/privacySensitive(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.privacySensitive(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"privacySensitive(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"privacySensitive\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16privacySensitiveyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/privacySensitive(_:)\":{\"role\":\"symbol\",\"title\":\"privacySensitive(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"privacySensitive\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/privacySensitive(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/privacysensitive(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/progressviewstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"progressViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ProgressViewStyle\",\"preciseIdentifier\":\"s:7SwiftUI17ProgressViewStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/progressviewstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/progressViewStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.progressViewStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"progressViewStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"progressViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE08progressC5StyleyQrqd__AA08ProgresscE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/progressViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"progressViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"progressViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/progressViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/progressviewstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/projectioneffect(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"projectionEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ProjectionTransform\",\"preciseIdentifier\":\"s:7SwiftUI19ProjectionTransformV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/projectioneffect(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/projectionEffect(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.projectionEffect(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"projectionEffect(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"projectionEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ProjectionTransform\",\"preciseIdentifier\":\"s:7SwiftUI19ProjectionTransformV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16projectionEffectyQrAA19ProjectionTransformVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/projectionEffect(_:)\":{\"role\":\"symbol\",\"title\":\"projectionEffect(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"projectionEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ProjectionTransform\",\"preciseIdentifier\":\"s:7SwiftUI19ProjectionTransformV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/projectionEffect(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/projectioneffect(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/redacted(reason:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"redacted\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"reason\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"RedactionReasons\",\"preciseIdentifier\":\"s:7SwiftUI16RedactionReasonsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/redacted(reason:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/redacted(reason:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.redacted(reason:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"redacted(reason:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"redacted\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"reason\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"RedactionReasons\",\"preciseIdentifier\":\"s:7SwiftUI16RedactionReasonsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8redacted6reasonQrAA16RedactionReasonsV_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/redacted(reason:)\":{\"role\":\"symbol\",\"title\":\"redacted(reason:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"redacted\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"reason\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"RedactionReasons\",\"preciseIdentifier\":\"s:7SwiftUI16RedactionReasonsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/redacted(reason:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/redacted(reason:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/refreshable(action:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"refreshable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/refreshable(action:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/refreshable(action:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.refreshable(action:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"refreshable(action:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"refreshable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11refreshable6actionQryyYaYbc_tF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/refreshable(action:)\":{\"role\":\"symbol\",\"title\":\"refreshable(action:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"refreshable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/refreshable(action:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/refreshable(action:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/rotation3deffect(_:axis:anchor:anchorz:perspective:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotation3DEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"angle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"axis\"},{\"kind\":\"text\",\"text\":\": (x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", z\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"), \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"anchorZ\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0, \"},{\"kind\":\"externalParam\",\"text\":\"perspective\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 1) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/rotation3deffect(_:axis:anchor:anchorz:perspective:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotation3DEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"axis\"},{\"kind\":\"text\",\"text\":\": (x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", z\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"), \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchorZ\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perspective\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16rotation3DEffect_4axis6anchor0G1Z11perspectiveQrAA5AngleV_12CoreGraphics7CGFloatV1x_AM1yAM1ztAA9UnitPointVA2MtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\":{\"role\":\"symbol\",\"title\":\"rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotation3DEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"axis\"},{\"kind\":\"text\",\"text\":\": (x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", z\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"), \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchorZ\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perspective\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/rotation3deffect(_:axis:anchor:anchorz:perspective:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/rotationeffect(_:anchor:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotationEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"angle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/rotationeffect(_:anchor:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/rotationEffect(_:anchor:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.rotationEffect(_:anchor:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"rotationEffect(_:anchor:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotationEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14rotationEffect_6anchorQrAA5AngleV_AA9UnitPointVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/rotationEffect(_:anchor:)\":{\"role\":\"symbol\",\"title\":\"rotationEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotationEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/rotationEffect(_:anchor:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/rotationeffect(_:anchor:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/safeareainset(edge:alignment:spacing:content:)-5p4xh.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalEdge\",\"preciseIdentifier\":\"s:7SwiftUI12VerticalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/safeareainset(edge:alignment:spacing:content:)-5p4xh\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/safeAreaInset(edge:alignment:spacing:content:)-5p4xh\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.safeAreaInset(edge:alignment:spacing:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalEdge\",\"preciseIdentifier\":\"s:7SwiftUI12VerticalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13safeAreaInset4edge9alignment7spacing7contentQrAA12VerticalEdgeO_AA19HorizontalAlignmentV12CoreGraphics7CGFloatVSgqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/safeAreaInset(edge:alignment:spacing:content:)-5p4xh\":{\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalEdge\",\"preciseIdentifier\":\"s:7SwiftUI12VerticalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/safeAreaInset(edge:alignment:spacing:content:)-5p4xh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/safeareainset(edge:alignment:spacing:content:)-5p4xh\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/safeareainset(edge:alignment:spacing:content:)-8nq8e.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/safeareainset(edge:alignment:spacing:content:)-8nq8e\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/safeAreaInset(edge:alignment:spacing:content:)-8nq8e\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.safeAreaInset(edge:alignment:spacing:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13safeAreaInset4edge9alignment7spacing7contentQrAA14HorizontalEdgeO_AA17VerticalAlignmentV12CoreGraphics7CGFloatVSgqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/safeAreaInset(edge:alignment:spacing:content:)-8nq8e\":{\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/safeAreaInset(edge:alignment:spacing:content:)-8nq8e\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/safeareainset(edge:alignment:spacing:content:)-8nq8e\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/saturation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"saturation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"amount\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/saturation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/saturation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.saturation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"saturation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"saturation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10saturationyQrSdF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/saturation(_:)\":{\"role\":\"symbol\",\"title\":\"saturation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"saturation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/saturation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/saturation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/scaledtofill().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFill\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/scaledtofill()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaledToFill()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaledToFill()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaledToFill()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFill\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12scaledToFillQryF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/scaledToFill()\":{\"role\":\"symbol\",\"title\":\"scaledToFill()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFill\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaledToFill()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaledtofill()\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/scaledtofit().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/scaledtofit()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaledToFit()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaledToFit()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaledToFit()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11scaledToFitQryF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/scaledToFit()\":{\"role\":\"symbol\",\"title\":\"scaledToFit()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaledToFit()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaledtofit()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/scaleeffect(_:anchor:)-7oq71.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"s\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/scaleeffect(_:anchor:)-7oq71\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaleEffect(_:anchor:)-7oq71\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaleEffect(_:anchor:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11scaleEffect_6anchorQr12CoreGraphics7CGFloatV_AA9UnitPointVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/scaleEffect(_:anchor:)-7oq71\":{\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaleEffect(_:anchor:)-7oq71\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaleeffect(_:anchor:)-7oq71\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/scaleeffect(_:anchor:)-9chpl.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/scaleeffect(_:anchor:)-9chpl\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaleEffect(_:anchor:)-9chpl\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaleEffect(_:anchor:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11scaleEffect_6anchorQrSo6CGSizeV_AA9UnitPointVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/scaleEffect(_:anchor:)-9chpl\":{\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaleEffect(_:anchor:)-9chpl\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaleeffect(_:anchor:)-9chpl\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/scaleeffect(x:y:anchor:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 1.0, \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 1.0, \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/scaleeffect(x:y:anchor:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaleEffect(x:y:anchor:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaleEffect(x:y:anchor:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaleEffect(x:y:anchor:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11scaleEffect1x1y6anchorQr12CoreGraphics7CGFloatV_AjA9UnitPointVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/scaleEffect(x:y:anchor:)\":{\"role\":\"symbol\",\"title\":\"scaleEffect(x:y:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaleEffect(x:y:anchor:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaleeffect(x:y:anchor:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/scenepadding(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scenePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/scenepadding(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scenePadding(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scenePadding(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scenePadding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scenePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12scenePaddingyQrAA4EdgeO3SetVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/scenePadding(_:)\":{\"role\":\"symbol\",\"title\":\"scenePadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scenePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scenePadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scenepadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/searchable(text:placement:prompt:)-31g2u.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:)-31g2u\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:)-31g2u\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6promptQrAA7BindingVySSG_AA20SearchFieldPlacementVAA18LocalizedStringKeyVtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchable(text:placement:prompt:)-31g2u\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:)-31g2u\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:)-31g2u\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/searchable(text:placement:prompt:)-5dpdp.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:)-5dpdp\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:)-5dpdp\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6promptQrAA7BindingVySSG_AA20SearchFieldPlacementVqd__tSyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchable(text:placement:prompt:)-5dpdp\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:)-5dpdp\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:)-5dpdp\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/searchable(text:placement:prompt:)-9859.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:)-9859\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:)-9859\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6promptQrAA7BindingVySSG_AA20SearchFieldPlacementVAA4TextVSgtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchable(text:placement:prompt:)-9859\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:)-9859\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:)-9859\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/searchable(text:placement:prompt:suggestions:)-2uz54.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:suggestions:)-2uz54\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:suggestions:)-2uz54\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:suggestions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6prompt11suggestionsQrAA7BindingVySSG_AA20SearchFieldPlacementVAA4TextVSgqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchable(text:placement:prompt:suggestions:)-2uz54\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:suggestions:)-2uz54\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:suggestions:)-2uz54\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/searchable(text:placement:prompt:suggestions:)-7bvn6.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:suggestions:)-7bvn6\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:suggestions:)-7bvn6\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:suggestions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6prompt11suggestionsQrAA7BindingVySSG_AA20SearchFieldPlacementVAA18LocalizedStringKeyVqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchable(text:placement:prompt:suggestions:)-7bvn6\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:suggestions:)-7bvn6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:suggestions:)-7bvn6\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/searchable(text:placement:prompt:suggestions:)-8bmqj.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:suggestions:)-8bmqj\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:suggestions:)-8bmqj\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:suggestions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6prompt11suggestionsQrAA7BindingVySSG_AA20SearchFieldPlacementVqd_0_qd__yXEtAaBRd__SyRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchable(text:placement:prompt:suggestions:)-8bmqj\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:suggestions:)-8bmqj\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:suggestions:)-8bmqj\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/searchcompletion(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchCompletion\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"completion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/searchcompletion(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchCompletion(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchCompletion(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchCompletion(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchCompletion\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16searchCompletionyQrSSF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchCompletion(_:)\":{\"role\":\"symbol\",\"title\":\"searchCompletion(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchCompletion\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchCompletion(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchcompletion(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/shadow(color:radius:x:y:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shadow\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\" = Color(.sRGBLinear, white: 0, opacity: 0.33), \"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0, \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/shadow(color:radius:x:y:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shadow(color:radius:x:y:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.shadow(color:radius:x:y:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"shadow(color:radius:x:y:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shadow\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6shadow5color6radius1x1yQrAA5ColorV_12CoreGraphics7CGFloatVA2MtF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shadow(color:radius:x:y:)\":{\"role\":\"symbol\",\"title\":\"shadow(color:radius:x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shadow\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shadow(color:radius:x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shadow(color:radius:x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/sheet(ispresented:ondismiss:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/sheet(ispresented:ondismiss:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/sheet(isPresented:onDismiss:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.sheet(isPresented:onDismiss:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"sheet(isPresented:onDismiss:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5sheet11isPresented9onDismiss7contentQrAA7BindingVySbG_yycSgqd__yctAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/sheet(isPresented:onDismiss:content:)\":{\"role\":\"symbol\",\"title\":\"sheet(isPresented:onDismiss:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/sheet(isPresented:onDismiss:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/sheet(ispresented:ondismiss:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/sheet(item:ondismiss:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/sheet(item:ondismiss:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/sheet(item:onDismiss:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.sheet(item:onDismiss:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"sheet(item:onDismiss:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5sheet4item9onDismiss7contentQrAA7BindingVyqd__SgG_yycSgqd_0_qd__cts12IdentifiableRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/sheet(item:onDismiss:content:)\":{\"role\":\"symbol\",\"title\":\"sheet(item:onDismiss:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/sheet(item:onDismiss:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/sheet(item:ondismiss:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/shuffleanimation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A9AnimationO\",\"text\":\"ShuffleAnimation\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given shuffle animation.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"animation\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle animation for shuffle stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" uses \"},{\"type\":\"codeVoice\",\"code\":\"linear\"},{\"type\":\"text\",\"text\":\" animation to animate shuffling behaviour. With \"},{\"type\":\"codeVoice\",\"code\":\"shuffleAnimation(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can be overridden with the given animation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example shows the usage of overriding default shuffle animation with \"},{\"type\":\"codeVoice\",\"code\":\"easeInOut\"},{\"type\":\"text\",\"text\":\" animation that will be used while shuffling.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleAnimation(.easeInOut)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffleanimation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleAnimation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle animation of the shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleAnimation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A9AnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE16shuffleAnimationyQrAD0dG0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A9AnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle animation of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffleanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/shuffledeckanimation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckAnimationO\",\"text\":\"ShuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given shuffle deck animation.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"animation\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle animation for shuffle deck view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" uses \"},{\"type\":\"codeVoice\",\"code\":\"linear\"},{\"type\":\"text\",\"text\":\" animation to animate shuffling behaviour. With \"},{\"type\":\"codeVoice\",\"code\":\"shuffleDeckAnimation\"},{\"type\":\"text\",\"text\":\" modifier, it can be overridden with the given animation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example shows the usage of tailoring default shuffle deck animation with \"},{\"type\":\"codeVoice\",\"code\":\"easeIn\"},{\"type\":\"text\",\"text\":\" animation that will be used while shuffling.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckAnimation(.easeIn)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckanimation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckAnimation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle animation of the shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleDeckAnimation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE20shuffleDeckAnimationyQrAD0dgH0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleDeckAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle animation of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckanimation(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/shuffledeckdisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given boolean.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"disabled\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A boolean value to decide whether it should be disabled or not.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Based on the boolen passing into the modifier, the user interaction will be disabled accordingly, If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"true\"},{\"type\":\"text\",\"text\":\", it will no longer turn on the interaction to UI. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"false\"},{\"type\":\"text\",\"text\":\", it allows to shuffle views.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows how to disable the user interaction on the shuffle deck view.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckDisabled(false)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckdisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to shuffle deck content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"shuffleDeckDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE19shuffleDeckDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleDeckDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to shuffle deck content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckdisabled(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/shuffledeckscale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given scaling factor.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"scale\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A scaling factor to shrink the size of content views.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Regarding scaling content views, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" only allows to set value between 0 and 1 inclusively. If the value is out of this range, it will be replaced with 0 and 1 based on the given value. The default scaling factor is 0.7.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"shuffleDeckScale(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckScale(0.5)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckscale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckScale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the left and right content views of shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleDeckScale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE16shuffleDeckScaleyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleDeckScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the left and right content views of shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/shuffledeckstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DeckStyleO\",\"text\":\"ShuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given shuffle deck style.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"style\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle style for shuffle deck view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" comes with two different shuffling styles - \"},{\"type\":\"codeVoice\",\"code\":\"finiteShuffle\"},{\"type\":\"text\",\"text\":\" (default) and \"},{\"type\":\"codeVoice\",\"code\":\"infiniteShuffle\"},{\"type\":\"text\",\"text\":\". To apply style as wanted, it can be overridden with \"},{\"type\":\"codeVoice\",\"code\":\"shuffleDeckStyle(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet demonstrates how to override the shuffle style to be able to shuffle infinitely.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckStyle(.infiniteShuffle)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle style of the shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleDeckStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DeckStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE16shuffleDeckStyleyQrAD0dgH0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleDeckStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DeckStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle style of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/shuffledecktrigger(on:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"publisher\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Publisher\",\"preciseIdentifier\":\"s:7Combine9PublisherP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Failure\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"Never\",\"preciseIdentifier\":\"s:s5NeverO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckDirectionO\",\"text\":\"ShuffleDeckDirection\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given publisher object.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"publisher\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A publisher object that fires \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeckDirection\"},{\"type\":\"text\",\"text\":\" values.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"In purpose of programmatic shuffling using timer or manually, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" fires events via \"},{\"type\":\"codeVoice\",\"code\":\"shuffleDeckTrigger(on:)\"},{\"type\":\"text\",\"text\":\" modifier which is needed to inject an instance of publisher with \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeckDirection\"},{\"type\":\"text\",\"text\":\" output type and \"},{\"type\":\"codeVoice\",\"code\":\"Never\"},{\"type\":\"text\",\"text\":\" failure type.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the programmatic approach of triggering shuffle event by sending \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeckDirection\"},{\"type\":\"text\",\"text\":\" value through the publisher.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"let shuffleDeckPublisher = PassthroughSubject<ShuffleDeckDirection, Never>()\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckTrigger(on: shuffleDeckPublisher)\",\"}\",\"shuffleDeckPublisher.send(.left)\",\"shuffleDeckPublisher.send(.right)\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledecktrigger(on:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckTrigger(on:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic shuffling.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleDeckTrigger(on:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE18shuffleDeckTrigger2onQrqd___t7Combine9PublisherRd__s5NeverO7FailureRtd__AD0dG9DirectionO6OutputRtd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleDeckTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledecktrigger(on:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/shuffledisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given boolean.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"disabled\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A boolean value to decide whether it should be disabled or not.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Based on the boolean passing into the modifier, the user interaction will be disabled accordingly. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"true\"},{\"type\":\"text\",\"text\":\",  it will no longer turn on the interaction to UI. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"false\"},{\"type\":\"text\",\"text\":\", it allows to shuffle content views.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following piece of code shows how to disable the user interaction on the shuffle stack view.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDisabled(false)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that disables user interaction to shuffle content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"shuffleDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE15shuffleDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that disables user interaction to shuffle content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/shuffleoffset(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleOffset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given offset.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"offset\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A offset value for the content views behind the current content view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To shift the upcoming and previous content views of the shuffle stack view (not to overlay by the current view that display on the top of the stack), it can be adjust by setting offset value through \"},{\"type\":\"codeVoice\",\"code\":\"shuffleOffset(_:)\"},{\"type\":\"text\",\"text\":\" modifier. By default, it uses 15 pixels to shift the offset.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"shuffleOffset(_:)\"},{\"type\":\"text\",\"text\":\" modifier. By using 25 pixels, it will be noticable that there is more horizontal gap between the upcoming and previous content views and the current view than using the default offset.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleOffset(25)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffleoffset(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleOffset(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value that is used to shift the offset of the upcoming and previous content views behind the view of the current index.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleOffset(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleOffset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE13shuffleOffsetyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleOffset(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleOffset(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleOffset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value that is used to shift the offset of the upcoming and previous content views behind the view of the current index.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleOffset(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffleoffset(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/shufflepadding(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shufflePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given padding.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"padding\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A padding value for a shuffle stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" uses 15 pixels to add extra space between its frame and its content views. To be overridden, it can be achieved by passing the desired padding value through \"},{\"type\":\"codeVoice\",\"code\":\"shufflePadding(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"shufflePadding(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shufflePadding(25)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/shufflepadding(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shufflePadding(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shufflePadding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shufflePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE14shufflePaddingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shufflePadding(_:)\":{\"role\":\"symbol\",\"title\":\"shufflePadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shufflePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shufflePadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shufflepadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/shufflescale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given scaling factor.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"scale\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A scaling factor to shrink the size of content views.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Regarding scaling content views, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" only allows to set value between 0 and 1 inclusively. If the value is out of this range, it will be replaced with 0 or 1 based on the given value. The default scaling factor is 0.5.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"shuffleScale(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleScale(0.6)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/shufflescale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleScale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleScale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE12shuffleScaleyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shufflescale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/shufflestyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A5StyleO\",\"text\":\"ShuffleStyle\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given shuffle style.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"style\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle style for shuffle stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" comes with three different shuffle styles - \"},{\"type\":\"codeVoice\",\"code\":\"slide\"},{\"type\":\"text\",\"text\":\" (default), \"},{\"type\":\"codeVoice\",\"code\":\"rotateIn\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"rotateOut\"},{\"type\":\"text\",\"text\":\" and uses \"},{\"type\":\"codeVoice\",\"code\":\"slide\"},{\"type\":\"text\",\"text\":\" as a default style. To apply other style, it can be overridden by using \"},{\"type\":\"codeVoice\",\"code\":\"shuffleStyle(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example shows the usage of overriding default shuffle style with \"},{\"type\":\"codeVoice\",\"code\":\"rotateOut\"},{\"type\":\"text\",\"text\":\" style to rotate and scale to the outside while shuffling.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleStyle(.rotateOut)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/shufflestyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle style of the shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A5StyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE12shuffleStyleyQrAD0dG0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A5StyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle style of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shufflestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/shuffletrigger(on:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"publisher\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Publisher\",\"preciseIdentifier\":\"s:7Combine9PublisherP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Failure\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"Never\",\"preciseIdentifier\":\"s:s5NeverO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DirectionO\",\"text\":\"ShuffleDirection\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given publisher object.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"publisher\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A publisher object that fires \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDirection\"},{\"type\":\"text\",\"text\":\" values.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"In purpose of shuffling programmatically such as using timer, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" accepts events via \"},{\"type\":\"codeVoice\",\"code\":\"shuffleTrigger(on:)\"},{\"type\":\"text\",\"text\":\" modifier which is needed to inject an instance of publisher with \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDirection\"},{\"type\":\"text\",\"text\":\" output type and \"},{\"type\":\"codeVoice\",\"code\":\"Never\"},{\"type\":\"text\",\"text\":\" failure type.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the programmatic way of triggering shuffle event by sending \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDirection\"},{\"type\":\"text\",\"text\":\" value through the publisher.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"let shufflePublisher = PassthroughSubject<ShuffleDirection, Never>()\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleTrigger(on: shufflePublisher)\",\"}\",\"shufflePublisher.send(.left)\",\"shufflePublisher.send(.right)\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffletrigger(on:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleTrigger(on:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accpets events of direction to perform programmatic shuffling.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleTrigger(on:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE14shuffleTrigger2onQrqd___t7Combine9PublisherRd__s5NeverO7FailureRtd__AD0D9DirectionO6OutputRtd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accpets events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffletrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/simultaneousgesture(_:including:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"simultaneousGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Gesture\",\"preciseIdentifier\":\"s:7SwiftUI7GestureP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/simultaneousgesture(_:including:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/simultaneousGesture(_:including:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.simultaneousGesture(_:including:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"simultaneousGesture(_:including:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"simultaneousGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19simultaneousGesture_9includingQrqd___AA0E4MaskVtAA0E0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/simultaneousGesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"simultaneousGesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"simultaneousGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/simultaneousGesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/simultaneousgesture(_:including:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/speechadjustedpitch(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAdjustedPitch\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/speechadjustedpitch(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechAdjustedPitch(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.speechAdjustedPitch(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"speechAdjustedPitch(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAdjustedPitch\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19speechAdjustedPitchyQrSdF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/speechAdjustedPitch(_:)\":{\"role\":\"symbol\",\"title\":\"speechAdjustedPitch(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAdjustedPitch\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechAdjustedPitch(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/speechadjustedpitch(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/speechalwaysincludespunctuation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAlwaysIncludesPunctuation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/speechalwaysincludespunctuation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechAlwaysIncludesPunctuation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.speechAlwaysIncludesPunctuation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"speechAlwaysIncludesPunctuation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAlwaysIncludesPunctuation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE31speechAlwaysIncludesPunctuationyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/speechAlwaysIncludesPunctuation(_:)\":{\"role\":\"symbol\",\"title\":\"speechAlwaysIncludesPunctuation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAlwaysIncludesPunctuation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechAlwaysIncludesPunctuation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/speechalwaysincludespunctuation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/speechannouncementsqueued(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAnnouncementsQueued\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/speechannouncementsqueued(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechAnnouncementsQueued(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.speechAnnouncementsQueued(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"speechAnnouncementsQueued(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAnnouncementsQueued\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25speechAnnouncementsQueuedyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/speechAnnouncementsQueued(_:)\":{\"role\":\"symbol\",\"title\":\"speechAnnouncementsQueued(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAnnouncementsQueued\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechAnnouncementsQueued(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/speechannouncementsqueued(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/speechspellsoutcharacters(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechSpellsOutCharacters\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/speechspellsoutcharacters(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechSpellsOutCharacters(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.speechSpellsOutCharacters(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"speechSpellsOutCharacters(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechSpellsOutCharacters\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25speechSpellsOutCharactersyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/speechSpellsOutCharacters(_:)\":{\"role\":\"symbol\",\"title\":\"speechSpellsOutCharacters(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechSpellsOutCharacters\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechSpellsOutCharacters(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/speechspellsoutcharacters(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/submitlabel(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitLabel\",\"preciseIdentifier\":\"s:7SwiftUI11SubmitLabelV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/submitlabel(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/submitLabel(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.submitLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"submitLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitLabel\",\"preciseIdentifier\":\"s:7SwiftUI11SubmitLabelV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11submitLabelyQrAA06SubmitE0VF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/submitLabel(_:)\":{\"role\":\"symbol\",\"title\":\"submitLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitLabel\",\"preciseIdentifier\":\"s:7SwiftUI11SubmitLabelV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/submitLabel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/submitlabel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/submitscope(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isBlocking\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/submitscope(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/submitScope(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.submitScope(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"submitScope(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11submitScopeyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/submitScope(_:)\":{\"role\":\"symbol\",\"title\":\"submitScope(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/submitScope(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/submitscope(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/swipeactions(edge:allowsfullswipe:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"swipeActions\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\" = .trailing, \"},{\"kind\":\"externalParam\",\"text\":\"allowsFullSwipe\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/swipeactions(edge:allowsfullswipe:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/swipeActions(edge:allowsFullSwipe:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.swipeActions(edge:allowsFullSwipe:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"swipeActions(edge:allowsFullSwipe:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"swipeActions\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"allowsFullSwipe\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12swipeActions4edge15allowsFullSwipe7contentQrAA14HorizontalEdgeO_Sbqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/swipeActions(edge:allowsFullSwipe:content:)\":{\"role\":\"symbol\",\"title\":\"swipeActions(edge:allowsFullSwipe:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"swipeActions\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"allowsFullSwipe\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/swipeActions(edge:allowsFullSwipe:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/swipeactions(edge:allowsfullswipe:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/symbolrenderingmode(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolRenderingMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI19SymbolRenderingModeV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/symbolrenderingmode(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/symbolRenderingMode(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.symbolRenderingMode(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"symbolRenderingMode(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolRenderingMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI19SymbolRenderingModeV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19symbolRenderingModeyQrAA06SymboleF0VSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/symbolRenderingMode(_:)\":{\"role\":\"symbol\",\"title\":\"symbolRenderingMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolRenderingMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI19SymbolRenderingModeV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/symbolRenderingMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/symbolrenderingmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/symbolvariant(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolVariant\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"variant\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolVariants\",\"preciseIdentifier\":\"s:7SwiftUI14SymbolVariantsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/symbolvariant(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/symbolVariant(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.symbolVariant(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"symbolVariant(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolVariant\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolVariants\",\"preciseIdentifier\":\"s:7SwiftUI14SymbolVariantsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13symbolVariantyQrAA14SymbolVariantsVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/symbolVariant(_:)\":{\"role\":\"symbol\",\"title\":\"symbolVariant(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolVariant\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolVariants\",\"preciseIdentifier\":\"s:7SwiftUI14SymbolVariantsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/symbolVariant(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/symbolvariant(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/tabitem(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabItem\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/tabitem(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tabItem(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tabItem(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tabItem(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabItem\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7tabItemyQrqd__yXEAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/tabItem(_:)\":{\"role\":\"symbol\",\"title\":\"tabItem(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabItem\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tabItem(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tabitem(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/tablestyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tableStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"TableStyle\",\"preciseIdentifier\":\"s:7SwiftUI10TableStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/tablestyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tableStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tableStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tableStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tableStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10tableStyleyQrqd__AA05TableE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/tableStyle(_:)\":{\"role\":\"symbol\",\"title\":\"tableStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tableStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tableStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tablestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/tabviewstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"TabViewStyle\",\"preciseIdentifier\":\"s:7SwiftUI12TabViewStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/tabviewstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tabViewStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tabViewStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tabViewStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE03tabC5StyleyQrqd__AA03TabcE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/tabViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"tabViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tabViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tabviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/tag(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/tag(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tag(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tag(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tag(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE3tagyQrqd__SHRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/tag(_:)\":{\"role\":\"symbol\",\"title\":\"tag(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tag(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tag(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/task(id:priority:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\" = .userInitiated, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Equatable\",\"preciseIdentifier\":\"s:SQ\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/task(id:priority:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/task(id:priority:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.task(id:priority:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"task(id:priority:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4task2id8priority_Qrqd___ScPyyYaYbctSQRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/task(id:priority:_:)\":{\"role\":\"symbol\",\"title\":\"task(id:priority:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/task(id:priority:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/task(id:priority:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/task(priority:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\" = .userInitiated, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/task(priority:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/task(priority:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.task(priority:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"task(priority:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4task8priority_QrScP_yyYaYbctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/task(priority:_:)\":{\"role\":\"symbol\",\"title\":\"task(priority:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/task(priority:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/task(priority:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/textcase(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Case\",\"preciseIdentifier\":\"s:7SwiftUI4TextV4CaseO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/textcase(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textCase(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.textCase(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"textCase(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Case\",\"preciseIdentifier\":\"s:7SwiftUI4TextV4CaseO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8textCaseyQrAA4TextV0E0OSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/textCase(_:)\":{\"role\":\"symbol\",\"title\":\"textCase(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Case\",\"preciseIdentifier\":\"s:7SwiftUI4TextV4CaseO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textCase(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/textcase(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/textcontenttype(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSTextContentType\",\"preciseIdentifier\":\"c:@T@NSTextContentType\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/textcontenttype(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textContentType(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.textContentType(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"textContentType(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSTextContentType\",\"preciseIdentifier\":\"c:@T@NSTextContentType\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15textContentTypeyQrSo06NSTexteF0aSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/textContentType(_:)\":{\"role\":\"symbol\",\"title\":\"textContentType(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSTextContentType\",\"preciseIdentifier\":\"c:@T@NSTextContentType\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textContentType(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/textcontenttype(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/textfieldstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textFieldStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"TextFieldStyle\",\"preciseIdentifier\":\"s:7SwiftUI14TextFieldStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/textfieldstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textFieldStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.textFieldStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"textFieldStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textFieldStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14textFieldStyleyQrqd__AA04TexteF0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/textFieldStyle(_:)\":{\"role\":\"symbol\",\"title\":\"textFieldStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textFieldStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textFieldStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/textfieldstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/textselection(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textSelection\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"selectability\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"TextSelectability\",\"preciseIdentifier\":\"s:7SwiftUI17TextSelectabilityP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/textselection(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textSelection(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.textSelection(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"textSelection(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textSelection\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13textSelectionyQrqd__AA17TextSelectabilityRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/textSelection(_:)\":{\"role\":\"symbol\",\"title\":\"textSelection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textSelection\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textSelection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/textselection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/tint(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/tint(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tint(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4tintyQrAA5ColorVSgF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/tint(_:)\":{\"role\":\"symbol\",\"title\":\"tint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tint(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tint(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/togglestyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toggleStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ToggleStyle\",\"preciseIdentifier\":\"s:7SwiftUI11ToggleStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/togglestyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toggleStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.toggleStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"toggleStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toggleStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11toggleStyleyQrqd__AA06ToggleE0Rd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/toggleStyle(_:)\":{\"role\":\"symbol\",\"title\":\"toggleStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toggleStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toggleStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/togglestyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/toolbar(content:)-6zmlc.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/toolbar(content:)-6zmlc\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toolbar(content:)-6zmlc\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.toolbar(content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7toolbar7contentQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/toolbar(content:)-6zmlc\":{\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toolbar(content:)-6zmlc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/toolbar(content:)-6zmlc\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/toolbar(content:)-7j09e.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ToolbarContent\",\"preciseIdentifier\":\"s:7SwiftUI14ToolbarContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/toolbar(content:)-7j09e\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toolbar(content:)-7j09e\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.toolbar(content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7toolbar7contentQrqd__yXE_tAA14ToolbarContentRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/toolbar(content:)-7j09e\":{\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toolbar(content:)-7j09e\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/toolbar(content:)-7j09e\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/toolbar(id:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"CustomizableToolbarContent\",\"preciseIdentifier\":\"s:7SwiftUI26CustomizableToolbarContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/toolbar(id:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toolbar(id:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.toolbar(id:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"toolbar(id:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7toolbar2id7contentQrSS_qd__yXEtAA26CustomizableToolbarContentRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/toolbar(id:content:)\":{\"role\":\"symbol\",\"title\":\"toolbar(id:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toolbar(id:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/toolbar(id:content:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/touchbar(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBar\",\"preciseIdentifier\":\"s:7SwiftUI8TouchBarV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbar(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBar(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBar(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBar(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBar\",\"preciseIdentifier\":\"s:7SwiftUI8TouchBarV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8touchBaryQrAA05TouchE0Vyqd__GAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/touchBar(_:)\":{\"role\":\"symbol\",\"title\":\"touchBar(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBar\",\"preciseIdentifier\":\"s:7SwiftUI8TouchBarV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBar(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbar(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/touchbar(content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbar(content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBar(content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBar(content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBar(content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8touchBar7contentQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/touchBar(content:)\":{\"role\":\"symbol\",\"title\":\"touchBar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBar(content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbar(content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/touchbarcustomizationlabel(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarCustomizationLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbarcustomizationlabel(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBarCustomizationLabel(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBarCustomizationLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBarCustomizationLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarCustomizationLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26touchBarCustomizationLabelyQrAA4TextVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/touchBarCustomizationLabel(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarCustomizationLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarCustomizationLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBarCustomizationLabel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbarcustomizationlabel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/touchbaritempresence(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPresence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"presence\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBarItemPresence\",\"preciseIdentifier\":\"s:7SwiftUI20TouchBarItemPresenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbaritempresence(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBarItemPresence(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBarItemPresence(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBarItemPresence(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPresence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBarItemPresence\",\"preciseIdentifier\":\"s:7SwiftUI20TouchBarItemPresenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20touchBarItemPresenceyQrAA05TouchefG0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/touchBarItemPresence(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarItemPresence(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPresence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBarItemPresence\",\"preciseIdentifier\":\"s:7SwiftUI20TouchBarItemPresenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBarItemPresence(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbaritempresence(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/touchbaritemprincipal(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPrincipal\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"principal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbaritemprincipal(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBarItemPrincipal(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBarItemPrincipal(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBarItemPrincipal(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPrincipal\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21touchBarItemPrincipalyQrSbF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/touchBarItemPrincipal(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarItemPrincipal(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPrincipal\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBarItemPrincipal(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbaritemprincipal(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/transaction(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transaction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Transaction\",\"preciseIdentifier\":\"s:7SwiftUI11TransactionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/transaction(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transaction(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transaction(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transaction(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transaction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Transaction\",\"preciseIdentifier\":\"s:7SwiftUI11TransactionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11transactionyQryAA11TransactionVzcF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/transaction(_:)\":{\"role\":\"symbol\",\"title\":\"transaction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transaction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Transaction\",\"preciseIdentifier\":\"s:7SwiftUI11TransactionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transaction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transaction(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/transformanchorpreference(key:value:transform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformAnchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/transformanchorpreference(key:value:transform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformAnchorPreference(key:value:transform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transformAnchorPreference(key:value:transform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transformAnchorPreference(key:value:transform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformAnchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25transformAnchorPreference3key5value0D0Qrqd_0_m_AA0E0V6SourceVyqd___Gy5ValueQyd_0_z_AIyqd__GtctAA0F3KeyRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/transformAnchorPreference(key:value:transform:)\":{\"role\":\"symbol\",\"title\":\"transformAnchorPreference(key:value:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformAnchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformAnchorPreference(key:value:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transformanchorpreference(key:value:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/transformeffect(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGAffineTransform\",\"preciseIdentifier\":\"c:@S@CGAffineTransform\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/transformeffect(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformEffect(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transformEffect(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transformEffect(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGAffineTransform\",\"preciseIdentifier\":\"c:@S@CGAffineTransform\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15transformEffectyQrSo17CGAffineTransformVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/transformEffect(_:)\":{\"role\":\"symbol\",\"title\":\"transformEffect(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGAffineTransform\",\"preciseIdentifier\":\"c:@S@CGAffineTransform\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformEffect(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transformeffect(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/transformenvironment(_:transform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEnvironment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"keyPath\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/transformenvironment(_:transform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformEnvironment(_:transform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transformEnvironment(_:transform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transformEnvironment(_:transform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEnvironment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20transformEnvironment_0D0Qrs15WritableKeyPathCyAA0E6ValuesVqd__G_yqd__zctlF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/transformEnvironment(_:transform:)\":{\"role\":\"symbol\",\"title\":\"transformEnvironment(_:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEnvironment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformEnvironment(_:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transformenvironment(_:transform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/transformpreference(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"callback\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/transformpreference(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformPreference(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transformPreference(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transformPreference(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19transformPreferenceyQrqd__m_y5ValueQyd__zctAA0E3KeyRd__lF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/transformPreference(_:_:)\":{\"role\":\"symbol\",\"title\":\"transformPreference(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformPreference(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transformpreference(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/transition(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transition\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"t\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyTransition\",\"preciseIdentifier\":\"s:7SwiftUI13AnyTransitionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/transition(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transition(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transition(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transition(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transition\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyTransition\",\"preciseIdentifier\":\"s:7SwiftUI13AnyTransitionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10transitionyQrAA13AnyTransitionVF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/transition(_:)\":{\"role\":\"symbol\",\"title\":\"transition(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transition\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyTransition\",\"preciseIdentifier\":\"s:7SwiftUI13AnyTransitionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transition(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transition(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/truncationmode(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"truncationMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"TruncationMode\",\"preciseIdentifier\":\"s:7SwiftUI4TextV14TruncationModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/truncationmode(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/truncationMode(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.truncationMode(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"truncationMode(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"truncationMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"TruncationMode\",\"preciseIdentifier\":\"s:7SwiftUI4TextV14TruncationModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14truncationModeyQrAA4TextV010TruncationE0OF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/truncationMode(_:)\":{\"role\":\"symbol\",\"title\":\"truncationMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"truncationMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"TruncationMode\",\"preciseIdentifier\":\"s:7SwiftUI4TextV14TruncationModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/truncationMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/truncationmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/unredacted().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"unredacted\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/unredacted()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/unredacted()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.unredacted()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"unredacted()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"unredacted\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10unredactedQryF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/unredacted()\":{\"role\":\"symbol\",\"title\":\"unredacted()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"unredacted\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/unredacted()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/unredacted()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/useractivity(_:element:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activityType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"element\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"update\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/useractivity(_:element:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/userActivity(_:element:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.userActivity(_:element:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"userActivity(_:element:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"element\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\"?, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12userActivity_7element_QrSS_qd__Sgyqd___So06NSUserE0CtctlF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/userActivity(_:element:_:)\":{\"role\":\"symbol\",\"title\":\"userActivity(_:element:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"element\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\"?, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/userActivity(_:element:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/useractivity(_:element:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/useractivity(_:isactive:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activityType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isActive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"update\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/useractivity(_:isactive:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/userActivity(_:isActive:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.userActivity(_:isActive:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"userActivity(_:isActive:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isActive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12userActivity_8isActive_QrSS_SbySo06NSUserE0CctF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/userActivity(_:isActive:_:)\":{\"role\":\"symbol\",\"title\":\"userActivity(_:isActive:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isActive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/userActivity(_:isActive:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/useractivity(_:isactive:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/view-implementations.json",
    "content": "{\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"interfaceLanguage\":\"swift\"},\"topicSections\":[{\"title\":\"Instance Methods\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accentColor(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(activationPoint:)-4y62\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(activationPoint:)-695kx\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(addTraits:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(hidden:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(hint:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(identifier:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(inputLabels:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(label:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(removeTraits:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(selectionIdentifier:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(sortPriority:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(value:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(action:label:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(named:_:)-3lqsr\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(named:_:)-69c69\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(named:_:)-rgyh\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityActivationPoint(_:)-5bbv5\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityActivationPoint(_:)-8dokx\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAddTraits(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAdjustableAction(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityChartDescriptor(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityChildren(children:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-1586n\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-1u9b5\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-3t2kq\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-46frq\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-47g1f\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-5xqqc\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-8rfm7\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-9cou3\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityElement(children:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityFocused(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityFocused(_:equals:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHeading(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHidden(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHint(_:)-2j7te\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHint(_:)-37ope\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHint(_:)-7yi0h\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityIdentifier(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityIgnoresInvertColors(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityInputLabels(_:)-3feba\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityInputLabels(_:)-3p703\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityInputLabels(_:)-95tn0\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabel(_:)-2tohn\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabel(_:)-755g2\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabel(_:)-8bin6\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabeledPair(role:id:in:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLinkedGroup(id:in:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRemoveTraits(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRepresentation(representation:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRespondsToUserInteraction(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-1c2au\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-4pacb\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-4w7j0\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-825mo\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-1w44t\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-4vvcg\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-5gz2c\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-utor\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-25t4x\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-3evdd\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-4e9vu\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-59b0s\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-25npe\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-3d2p8\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-4jxor\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-9sgga\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotorEntry(id:in:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityScrollAction(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityShowsLargeContentViewer()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityShowsLargeContentViewer(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilitySortPriority(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityTextContentType(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityValue(_:)-5fw6g\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityValue(_:)-5y8gy\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityValue(_:)-8ihs6\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:)-1q2gb\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:)-76wk8\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:)-7wghk\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:message:)-5s7hn\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:message:)-9a4q7\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:message:)-f5o2\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:)-4edmo\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:)-4uw7u\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:)-8axxo\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:message:)-226oe\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:message:)-4tvm3\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:message:)-7b0gl\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(isPresented:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(isPresented:error:actions:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(isPresented:error:actions:message:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(item:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alignmentGuide(_:computeValue:)-4r6p\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alignmentGuide(_:computeValue:)-8e6vc\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/allowsHitTesting(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/allowsTightening(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/anchorPreference(key:value:transform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/animation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/animation(_:value:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/aspectRatio(_:contentMode:)-72t0z\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/aspectRatio(_:contentMode:)-8gir9\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:alignment:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:ignoresSafeAreaEdges:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:in:fillStyle:)-4hb5h\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:in:fillStyle:)-5xuxn\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(alignment:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(ignoresSafeAreaEdges:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(in:fillStyle:)-2lcq8\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(in:fillStyle:)-6gtsb\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/backgroundPreferenceValue(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-10ceg\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-6ah2\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-7kz0m\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-8lj4d\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/blendMode(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/blur(radius:opaque:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/border(_:width:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/brightness(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/buttonBorderShape(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/buttonStyle(_:)-6awhx\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/buttonStyle(_:)-8ljh4\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselAnimation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselPadding(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselScale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselSpacing(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselTrigger(on:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/clipShape(_:style:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/clipped(antialiased:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/colorInvert()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/colorMultiply(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/colorScheme(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/compositingGroup()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-1uzrt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-5d29j\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-718e5\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-65zoh\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-951t3\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-9yu7k\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1ji6h\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-4fi9z\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-51cln\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-2m470\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-9o8j\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-g5bx\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/containerShape(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contentShape(_:_:eoFill:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contentShape(_:eoFill:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contextMenu(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contextMenu(menuItems:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contrast(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/controlGroupStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/controlSize(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/coordinateSpace(name:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/cornerRadius(_:antialiased:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/datePickerStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/defaultAppStorage(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/deleteDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/disableAutocorrection(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/disabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/drawingGroup(opaque:colorMode:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/dynamicTypeSize(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/edgesIgnoringSafeArea(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/environment(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/environmentObject(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/exportsItemProviders(_:onExport:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/exportsItemProviders(_:onExport:onEdit:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-2xo1j\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-5w70m\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-9dfyf\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-vkdb\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileMover(isPresented:file:onCompletion:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileMover(isPresented:files:onCompletion:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fixedSize()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fixedSize(horizontal:vertical:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/flipsForRightToLeftLayoutDirection(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusScope(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusable(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusable(_:onFocusChange:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focused(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focused(_:equals:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusedSceneValue(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusedValue(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/font(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundColor(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundStyle(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundStyle(_:_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/frame()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/frame(width:height:alignment:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/gesture(_:including:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/grayscale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/groupBoxStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/handlesExternalEvents(preferring:allowing:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/headerProminence(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/help(_:)-1f2w4\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/help(_:)-1g6m4\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/help(_:)-9mw1c\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/hidden()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/highPriorityGesture(_:including:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/horizontalRadioGroupLayout()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/hueRotation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/id(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/ignoresSafeArea(_:edges:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/imageScale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/importsItemProviders(_:onImport:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/interactiveDismissDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/itemProvider(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:)-2vfia\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:)-6bxt2\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:modifiers:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:modifiers:localization:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/labelStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/labelsHidden()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/layoutPriority(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/lineLimit(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/lineSpacing(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listItemTint(_:)-9yojl\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listItemTint(_:)-w4ry\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listRowBackground(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listRowInsets(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/luminanceToAlpha()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/mask(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/mask(alignment:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/menuButtonStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/menuIndicator(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/menuStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/minimumScaleFactor(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/modifier(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/monospacedDigit()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/moveDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/multilineTextAlignment(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationSubtitle(_:)-10991\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationSubtitle(_:)-7xq4j\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationSubtitle(_:)-8lv93\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-544cp\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-5xkgg\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-7209e\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-8mmxy\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationViewStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/offset(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/offset(x:y:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onAppear(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCarousel(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCarouselTranslation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onChange(of:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCommand(_:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onContinueUserActivity(_:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCopyCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCutCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDeleteCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDisappear(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrag(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrag(_:preview:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:delegate:)-2phlc\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:delegate:)-5rv2\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-1ne0m\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-2dbsa\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-3z0u6\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-7mvpm\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onExitCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onHover(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:pressing:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onMoveCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onOpenURL(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:perform:)-27ier\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:perform:)-2cj5d\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:validator:perform:)-18sg7\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:validator:perform:)-1ws2h\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPlayPauseCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPreferenceChange(_:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onReceive(_:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffleDeck(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffleDeckTranslation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffleTranslation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onSubmit(of:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onTapGesture(count:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/opacity(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(_:alignment:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(_:ignoresSafeAreaEdges:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(_:in:fillStyle:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(alignment:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlayPreferenceValue(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/padding(_:)-254fg\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/padding(_:)-h9m6\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/padding(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/pageCommand(value:in:step:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/pickerStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/popover(item:attachmentAnchor:arrowEdge:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/position(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/position(x:y:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/preference(key:value:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/preferredColorScheme(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/prefersDefaultFocus(_:in:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/presentedWindowStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/presentedWindowToolbarStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewContext(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewDevice(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewDisplayName(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewInterfaceOrientation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewLayout(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/privacySensitive(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/progressViewStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/projectionEffect(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/redacted(reason:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/refreshable(action:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/rotationEffect(_:anchor:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/safeAreaInset(edge:alignment:spacing:content:)-5p4xh\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/safeAreaInset(edge:alignment:spacing:content:)-8nq8e\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/saturation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaleEffect(_:anchor:)-7oq71\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaleEffect(_:anchor:)-9chpl\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaleEffect(x:y:anchor:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaledToFill()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaledToFit()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scenePadding(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchCompletion(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:)-31g2u\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:)-5dpdp\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:)-9859\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:suggestions:)-2uz54\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:suggestions:)-7bvn6\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:suggestions:)-8bmqj\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shadow(color:radius:x:y:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/sheet(isPresented:onDismiss:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/sheet(item:onDismiss:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleAnimation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckAnimation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckScale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckTrigger(on:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleOffset(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shufflePadding(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleScale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleTrigger(on:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/simultaneousGesture(_:including:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechAdjustedPitch(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechAlwaysIncludesPunctuation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechAnnouncementsQueued(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechSpellsOutCharacters(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/submitLabel(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/submitScope(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/swipeActions(edge:allowsFullSwipe:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/symbolRenderingMode(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/symbolVariant(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tabItem(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tabViewStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tableStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tag(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/task(id:priority:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/task(priority:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textCase(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textContentType(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textFieldStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textSelection(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tint(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toggleStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toolbar(content:)-6zmlc\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toolbar(content:)-7j09e\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toolbar(id:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBar(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBar(content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBarCustomizationLabel(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBarItemPresence(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBarItemPrincipal(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transaction(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformAnchorPreference(key:value:transform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformEffect(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformEnvironment(_:transform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformPreference(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transition(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/truncationMode(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/unredacted()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/userActivity(_:element:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/userActivity(_:isActive:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/zIndex(_:)\"],\"generated\":true}],\"kind\":\"article\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"collectionGroup\",\"title\":\"View Implementations\"},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(alignment:content:)\":{\"role\":\"symbol\",\"title\":\"background(alignment:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(alignment:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(alignment:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:)-4w7j0\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-4w7j0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-4w7j0\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/buttonStyle(_:)-6awhx\":{\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/buttonStyle(_:)-6awhx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/buttonstyle(_:)-6awhx\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleDeckScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the left and right content views of shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/blur(radius:opaque:)\":{\"role\":\"symbol\",\"title\":\"blur(radius:opaque:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blur\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/blur(radius:opaque:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/blur(radius:opaque:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrag(_:)\":{\"role\":\"symbol\",\"title\":\"onDrag(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrag(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrag(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/previewInterfaceOrientation(_:)\":{\"role\":\"symbol\",\"title\":\"previewInterfaceOrientation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewInterfaceOrientation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"InterfaceOrientation\",\"preciseIdentifier\":\"s:7SwiftUI20InterfaceOrientationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewInterfaceOrientation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewinterfaceorientation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/multilineTextAlignment(_:)\":{\"role\":\"symbol\",\"title\":\"multilineTextAlignment(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"multilineTextAlignment\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TextAlignment\",\"preciseIdentifier\":\"s:7SwiftUI13TextAlignmentO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/multilineTextAlignment(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/multilinetextalignment(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1ji6h\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1ji6h\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1ji6h\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/transformPreference(_:_:)\":{\"role\":\"symbol\",\"title\":\"transformPreference(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformPreference(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transformpreference(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/foregroundStyle(_:_:_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundStyle(_:_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundstyle(_:_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/importsItemProviders(_:onImport:)\":{\"role\":\"symbol\",\"title\":\"importsItemProviders(_:onImport:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"importsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onImport\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/importsItemProviders(_:onImport:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/importsitemproviders(_:onimport:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onChange(of:perform:)\":{\"role\":\"symbol\",\"title\":\"onChange(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onChange(of:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onchange(of:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\":{\"role\":\"symbol\",\"title\":\"frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"minHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accentColor(_:)\":{\"role\":\"symbol\",\"title\":\"accentColor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accentColor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accentcolor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shadow(color:radius:x:y:)\":{\"role\":\"symbol\",\"title\":\"shadow(color:radius:x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shadow\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shadow(color:radius:x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shadow(color:radius:x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onTapGesture(count:perform:)\":{\"role\":\"symbol\",\"title\":\"onTapGesture(count:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onTapGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onTapGesture(count:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ontapgesture(count:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/preferredColorScheme(_:)\":{\"role\":\"symbol\",\"title\":\"preferredColorScheme(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preferredColorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/preferredColorScheme(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/preferredcolorscheme(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/badge(_:)-6ah2\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-6ah2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-6ah2\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-951t3\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-951t3\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-951t3\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/labelsHidden()\":{\"role\":\"symbol\",\"title\":\"labelsHidden()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelsHidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/labelsHidden()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/labelshidden()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/aspectRatio(_:contentMode:)-8gir9\":{\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/aspectRatio(_:contentMode:)-8gir9\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/aspectratio(_:contentmode:)-8gir9\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityActivationPoint(_:)-5bbv5\":{\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityActivationPoint(_:)-5bbv5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityactivationpoint(_:)-5bbv5\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/horizontalRadioGroupLayout()\":{\"role\":\"symbol\",\"title\":\"horizontalRadioGroupLayout()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"horizontalRadioGroupLayout\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/horizontalRadioGroupLayout()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/horizontalradiogrouplayout()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/privacySensitive(_:)\":{\"role\":\"symbol\",\"title\":\"privacySensitive(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"privacySensitive\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/privacySensitive(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/privacysensitive(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleOffset(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleOffset(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleOffset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value that is used to shift the offset of the upcoming and previous content views behind the view of the current index.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleOffset(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffleoffset(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/touchBarItemPrincipal(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarItemPrincipal(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPrincipal\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBarItemPrincipal(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbaritemprincipal(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/task(priority:_:)\":{\"role\":\"symbol\",\"title\":\"task(priority:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/task(priority:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/task(priority:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:)-825mo\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-825mo\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-825mo\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselSpacing(_:)\":{\"role\":\"symbol\",\"title\":\"carouselSpacing(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value which is used to add some spacing between carousel stack contents.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselSpacing(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselspacing(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:presenting:actions:)-8axxo\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:)-8axxo\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:)-8axxo\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/toolbar(content:)-7j09e\":{\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toolbar(content:)-7j09e\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/toolbar(content:)-7j09e\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/speechAnnouncementsQueued(_:)\":{\"role\":\"symbol\",\"title\":\"speechAnnouncementsQueued(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAnnouncementsQueued\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechAnnouncementsQueued(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/speechannouncementsqueued(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/itemProvider(_:)\":{\"role\":\"symbol\",\"title\":\"itemProvider(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"itemProvider\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Optional\",\"preciseIdentifier\":\"s:Sq\"},{\"kind\":\"text\",\"text\":\"<() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"?>) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/itemProvider(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/itemprovider(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/textContentType(_:)\":{\"role\":\"symbol\",\"title\":\"textContentType(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSTextContentType\",\"preciseIdentifier\":\"c:@T@NSTextContentType\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textContentType(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/textcontenttype(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/tabViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"tabViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tabViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tabviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAction(named:_:)-3lqsr\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(named:_:)-3lqsr\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(named:_:)-3lqsr\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/contrast(_:)\":{\"role\":\"symbol\",\"title\":\"contrast(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contrast\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contrast(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contrast(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/overlay(alignment:content:)\":{\"role\":\"symbol\",\"title\":\"overlay(alignment:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(alignment:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(alignment:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A9AnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle animation of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffleanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleDeckDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to shuffle deck content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckdisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(_:in:fillStyle:)-5xuxn\":{\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:in:fillStyle:)-5xuxn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:in:fillstyle:)-5xuxn\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryID:entryLabel:)-utor\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-utor\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-utor\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/safeAreaInset(edge:alignment:spacing:content:)-8nq8e\":{\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/safeAreaInset(edge:alignment:spacing:content:)-8nq8e\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/safeareainset(edge:alignment:spacing:content:)-8nq8e\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/safeAreaInset(edge:alignment:spacing:content:)-5p4xh\":{\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalEdge\",\"preciseIdentifier\":\"s:7SwiftUI12VerticalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/safeAreaInset(edge:alignment:spacing:content:)-5p4xh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/safeareainset(edge:alignment:spacing:content:)-5p4xh\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/submitLabel(_:)\":{\"role\":\"symbol\",\"title\":\"submitLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitLabel\",\"preciseIdentifier\":\"s:7SwiftUI11SubmitLabelV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/submitLabel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/submitlabel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrop(of:delegate:)-5rv2\":{\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:delegate:)-5rv2\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:delegate:)-5rv2\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:)-1c2au\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-1c2au\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-1c2au\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/userActivity(_:isActive:_:)\":{\"role\":\"symbol\",\"title\":\"userActivity(_:isActive:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isActive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/userActivity(_:isActive:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/useractivity(_:isactive:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/badge(_:)-8lj4d\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-8lj4d\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-8lj4d\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:actions:)-5d29j\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-5d29j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-5d29j\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/rotationEffect(_:anchor:)\":{\"role\":\"symbol\",\"title\":\"rotationEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotationEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/rotationEffect(_:anchor:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/rotationeffect(_:anchor:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityShowsLargeContentViewer()\":{\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityShowsLargeContentViewer()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityshowslargecontentviewer()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/tint(_:)\":{\"role\":\"symbol\",\"title\":\"tint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tint(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tint(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(_:in:fillStyle:)-4hb5h\":{\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:in:fillStyle:)-4hb5h\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:in:fillstyle:)-4hb5h\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onPreferenceChange(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onPreferenceChange(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPreferenceChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPreferenceChange(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpreferencechange(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/scenePadding(_:)\":{\"role\":\"symbol\",\"title\":\"scenePadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scenePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scenePadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scenepadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/keyboardShortcut(_:)-6bxt2\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:)-6bxt2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:)-6bxt2\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/frame()\":{\"role\":\"symbol\",\"title\":\"frame()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/frame()\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/frame()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityValue(_:)-5y8gy\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityValue(_:)-5y8gy\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityvalue(_:)-5y8gy\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/luminanceToAlpha()\":{\"role\":\"symbol\",\"title\":\"luminanceToAlpha()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"luminanceToAlpha\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/luminanceToAlpha()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/luminancetoalpha()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/compositingGroup()\":{\"role\":\"symbol\",\"title\":\"compositingGroup()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"compositingGroup\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/compositingGroup()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/compositinggroup()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/scaledToFit()\":{\"role\":\"symbol\",\"title\":\"scaledToFit()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaledToFit()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaledtofit()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrop(of:delegate:)-2phlc\":{\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:delegate:)-2phlc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:delegate:)-2phlc\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityValue(_:)-8ihs6\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityValue(_:)-8ihs6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityvalue(_:)-8ihs6\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityHidden(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityHidden(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHidden\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHidden(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhidden(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/padding(_:)-254fg\":{\"role\":\"symbol\",\"title\":\"padding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/padding(_:)-254fg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/padding(_:)-254fg\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityLabeledPair(role:id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityLabeledPair(role:id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabeledPair\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"role\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityLabeledPairRole\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityLabeledPairRoleO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabeledPair(role:id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabeledpair(role:id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-1u9b5\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-1u9b5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-1u9b5\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onCommand(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onCommand(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Selector\",\"preciseIdentifier\":\"s:10ObjectiveC8SelectorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCommand(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncommand(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onShuffleDeckTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeckTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeckTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while shuffling content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffleDeckTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffledecktranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/textFieldStyle(_:)\":{\"role\":\"symbol\",\"title\":\"textFieldStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textFieldStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textFieldStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/textfieldstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/menuIndicator(_:)\":{\"role\":\"symbol\",\"title\":\"menuIndicator(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuIndicator\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/menuIndicator(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/menuindicator(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileMover(isPresented:files:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileMover(isPresented:files:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"files\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileMover(isPresented:files:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/filemover(ispresented:files:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryLabel:)-4e9vu\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-4e9vu\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-4e9vu\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/brightness(_:)\":{\"role\":\"symbol\",\"title\":\"brightness(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"brightness\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/brightness(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/brightness(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A5StyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle style of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shufflestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchCompletion(_:)\":{\"role\":\"symbol\",\"title\":\"searchCompletion(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchCompletion\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchCompletion(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchcompletion(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationTitle(_:)-7209e\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-7209e\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-7209e\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationSubtitle(_:)-8lv93\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationSubtitle(_:)-8lv93\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationsubtitle(_:)-8lv93\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDisappear(perform:)\":{\"role\":\"symbol\",\"title\":\"onDisappear(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDisappear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDisappear(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondisappear(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onShuffleDeck(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeck(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeck\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A11DeckContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffleDeck(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffledeck(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alignmentGuide(_:computeValue:)-8e6vc\":{\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alignmentGuide(_:computeValue:)-8e6vc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alignmentguide(_:computevalue:)-8e6vc\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileExporter(isPresented:documents:contentType:onCompletion:)-vkdb\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-vkdb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-vkdb\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(identifier:)\":{\"role\":\"symbol\",\"title\":\"accessibility(identifier:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(identifier:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(identifier:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/environmentObject(_:)\":{\"role\":\"symbol\",\"title\":\"environmentObject(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environmentObject\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/environmentObject(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/environmentobject(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/symbolVariant(_:)\":{\"role\":\"symbol\",\"title\":\"symbolVariant(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolVariant\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolVariants\",\"preciseIdentifier\":\"s:7SwiftUI14SymbolVariantsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/symbolVariant(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/symbolvariant(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDeleteCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onDeleteCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDeleteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDeleteCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondeletecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityValue(_:)-5fw6g\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityValue(_:)-5fw6g\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityvalue(_:)-5fw6g\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onPasteCommand(of:validator:perform:)-1ws2h\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:validator:perform:)-1ws2h\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:validator:perform:)-1ws2h\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/hidden()\":{\"role\":\"symbol\",\"title\":\"hidden()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/hidden()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/hidden()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/interactiveDismissDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"interactiveDismissDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"interactiveDismissDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/interactiveDismissDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/interactivedismissdisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/mask(alignment:_:)\":{\"role\":\"symbol\",\"title\":\"mask(alignment:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/mask(alignment:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/mask(alignment:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/buttonBorderShape(_:)\":{\"role\":\"symbol\",\"title\":\"buttonBorderShape(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonBorderShape\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonBorderShape\",\"preciseIdentifier\":\"s:7SwiftUI17ButtonBorderShapeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/buttonBorderShape(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/buttonbordershape(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/touchBarItemPresence(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarItemPresence(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPresence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBarItemPresence\",\"preciseIdentifier\":\"s:7SwiftUI20TouchBarItemPresenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBarItemPresence(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbaritempresence(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/containerShape(_:)\":{\"role\":\"symbol\",\"title\":\"containerShape(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"containerShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/containerShape(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/containershape(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focused(_:)\":{\"role\":\"symbol\",\"title\":\"focused(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focused(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focused(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(isPresented:error:actions:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(isPresented:error:actions:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(ispresented:error:actions:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityTextContentType(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityTextContentType(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityTextContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTextContentType\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityTextContentTypeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityTextContentType(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitytextcontenttype(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-47g1f\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-47g1f\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-47g1f\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"carouselDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to carousel content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouseldisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"background(ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/mask(_:)\":{\"role\":\"symbol\",\"title\":\"mask(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/mask(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/mask(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/exportsItemProviders(_:onExport:onEdit:)\":{\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:onEdit:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onEdit\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/exportsItemProviders(_:onExport:onEdit:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/exportsitemproviders(_:onexport:onedit:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryID:entryLabel:)-4vvcg\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-4vvcg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-4vvcg\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityInputLabels(_:)-3feba\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityInputLabels(_:)-3feba\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityinputlabels(_:)-3feba\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fixedSize(horizontal:vertical:)\":{\"role\":\"symbol\",\"title\":\"fixedSize(horizontal:vertical:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"horizontal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"vertical\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fixedSize(horizontal:vertical:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fixedsize(horizontal:vertical:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:)-4pacb\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:)-4pacb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-4pacb\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/textCase(_:)\":{\"role\":\"symbol\",\"title\":\"textCase(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Case\",\"preciseIdentifier\":\"s:7SwiftUI4TextV4CaseO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textCase(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/textcase(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/redacted(reason:)\":{\"role\":\"symbol\",\"title\":\"redacted(reason:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"redacted\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"reason\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"RedactionReasons\",\"preciseIdentifier\":\"s:7SwiftUI16RedactionReasonsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/redacted(reason:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/redacted(reason:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationSubtitle(_:)-7xq4j\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationSubtitle(_:)-7xq4j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationsubtitle(_:)-7xq4j\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/tableStyle(_:)\":{\"role\":\"symbol\",\"title\":\"tableStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tableStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tableStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tablestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/sheet(isPresented:onDismiss:content:)\":{\"role\":\"symbol\",\"title\":\"sheet(isPresented:onDismiss:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/sheet(isPresented:onDismiss:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/sheet(ispresented:ondismiss:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/controlSize(_:)\":{\"role\":\"symbol\",\"title\":\"controlSize(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlSize\",\"preciseIdentifier\":\"s:7SwiftUI11ControlSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/controlSize(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/controlsize(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityLabel(_:)-8bin6\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabel(_:)-8bin6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabel(_:)-8bin6\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:presenting:actions:)-4uw7u\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:)-4uw7u\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:)-4uw7u\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:presenting:actions:)-4edmo\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:)-4edmo\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:)-4edmo\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/tabItem(_:)\":{\"role\":\"symbol\",\"title\":\"tabItem(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabItem\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tabItem(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tabitem(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/tag(_:)\":{\"role\":\"symbol\",\"title\":\"tag(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/tag(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tag(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotorEntry(id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRotorEntry(id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotorEntry\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotorEntry(id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotorentry(id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/listStyle(_:)\":{\"role\":\"symbol\",\"title\":\"listStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/liststyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onPasteCommand(of:validator:perform:)-18sg7\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:validator:perform:)-18sg7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:validator:perform:)-18sg7\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focusedSceneValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"focusedSceneValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedSceneValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusedSceneValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusedscenevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focusedValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"focusedValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusedValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusedvalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrop(of:isTargeted:perform:)-2dbsa\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-2dbsa\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-2dbsa\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityHint(_:)-37ope\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHint(_:)-37ope\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhint(_:)-37ope\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityIgnoresInvertColors(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityIgnoresInvertColors(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIgnoresInvertColors\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityIgnoresInvertColors(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityignoresinvertcolors(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRespondsToUserInteraction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRespondsToUserInteraction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRespondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRespondsToUserInteraction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrespondstouserinteraction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/backgroundPreferenceValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"backgroundPreferenceValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"backgroundPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/backgroundPreferenceValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/backgroundpreferencevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/controlGroupStyle(_:)\":{\"role\":\"symbol\",\"title\":\"controlGroupStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlGroupStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/controlGroupStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/controlgroupstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/sheet(item:onDismiss:content:)\":{\"role\":\"symbol\",\"title\":\"sheet(item:onDismiss:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/sheet(item:onDismiss:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/sheet(item:ondismiss:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchable(text:placement:prompt:)-5dpdp\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:)-5dpdp\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:)-5dpdp\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/listItemTint(_:)-w4ry\":{\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listItemTint(_:)-w4ry\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/listitemtint(_:)-w4ry\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(isPresented:error:actions:message:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(isPresented:error:actions:message:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(ispresented:error:actions:message:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/truncationMode(_:)\":{\"role\":\"symbol\",\"title\":\"truncationMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"truncationMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"TruncationMode\",\"preciseIdentifier\":\"s:7SwiftUI4TextV14TruncationModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/truncationMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/truncationmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/badge(_:)-10ceg\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-10ceg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-10ceg\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/handlesExternalEvents(preferring:allowing:)\":{\"role\":\"symbol\",\"title\":\"handlesExternalEvents(preferring:allowing:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"handlesExternalEvents\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"preferring\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/handlesExternalEvents(preferring:allowing:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/handlesexternalevents(preferring:allowing:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:presenting:actions:message:)-226oe\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:message:)-226oe\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:message:)-226oe\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onContinueUserActivity(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onContinueUserActivity(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onContinueUserActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onContinueUserActivity(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncontinueuseractivity(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/drawingGroup(opaque:colorMode:)\":{\"role\":\"symbol\",\"title\":\"drawingGroup(opaque:colorMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"drawingGroup\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"colorMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI18ColorRenderingModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/drawingGroup(opaque:colorMode:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/drawinggroup(opaque:colormode:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryLabel:)-3evdd\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-3evdd\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-3evdd\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/contextMenu(_:)\":{\"role\":\"symbol\",\"title\":\"contextMenu(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContextMenu\",\"preciseIdentifier\":\"s:7SwiftUI11ContextMenuV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contextMenu(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contextmenu(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/transformEffect(_:)\":{\"role\":\"symbol\",\"title\":\"transformEffect(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGAffineTransform\",\"preciseIdentifier\":\"c:@S@CGAffineTransform\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformEffect(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transformeffect(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onPlayPauseCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onPlayPauseCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPlayPauseCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPlayPauseCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onplaypausecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryID:entryLabel:)-5gz2c\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-5gz2c\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-5gz2c\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/headerProminence(_:)\":{\"role\":\"symbol\",\"title\":\"headerProminence(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"headerProminence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Prominence\",\"preciseIdentifier\":\"s:7SwiftUI10ProminenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/headerProminence(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/headerprominence(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/monospacedDigit()\":{\"role\":\"symbol\",\"title\":\"monospacedDigit()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"monospacedDigit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/monospacedDigit()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/monospaceddigit()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselPadding(_:)\":{\"role\":\"symbol\",\"title\":\"carouselPadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselPadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselPadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselpadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-65zoh\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-65zoh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-65zoh\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:textRanges:)-4jxor\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-4jxor\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-4jxor\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/colorScheme(_:)\":{\"role\":\"symbol\",\"title\":\"colorScheme(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/colorScheme(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/colorscheme(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/contentShape(_:_:eoFill:)\":{\"role\":\"symbol\",\"title\":\"contentShape(_:_:eoFill:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentShapeKinds\",\"preciseIdentifier\":\"s:7SwiftUI17ContentShapeKindsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contentShape(_:_:eoFill:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contentshape(_:_:eofill:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-9yu7k\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-9yu7k\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9yu7k\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shufflescale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(label:)\":{\"role\":\"symbol\",\"title\":\"accessibility(label:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(label:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(label:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/cornerRadius(_:antialiased:)\":{\"role\":\"symbol\",\"title\":\"cornerRadius(_:antialiased:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"cornerRadius\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/cornerRadius(_:antialiased:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/cornerradius(_:antialiased:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleDeckTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledecktrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(sortPriority:)\":{\"role\":\"symbol\",\"title\":\"accessibility(sortPriority:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(sortPriority:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(sortpriority:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-2m470\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-2m470\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2m470\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/scaleEffect(_:anchor:)-9chpl\":{\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaleEffect(_:anchor:)-9chpl\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaleeffect(_:anchor:)-9chpl\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationSubtitle(_:)-10991\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationSubtitle(_:)-10991\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationsubtitle(_:)-10991\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/touchBar(_:)\":{\"role\":\"symbol\",\"title\":\"touchBar(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBar\",\"preciseIdentifier\":\"s:7SwiftUI8TouchBarV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBar(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbar(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/listItemTint(_:)-9yojl\":{\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ListItemTint\",\"preciseIdentifier\":\"s:7SwiftUI12ListItemTintV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listItemTint(_:)-9yojl\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/listitemtint(_:)-9yojl\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityChartDescriptor(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityChartDescriptor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChartDescriptor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityChartDescriptor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitychartdescriptor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/dynamicTypeSize(_:)\":{\"role\":\"symbol\",\"title\":\"dynamicTypeSize(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"dynamicTypeSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"DynamicTypeSize\",\"preciseIdentifier\":\"s:7SwiftUI15DynamicTypeSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/dynamicTypeSize(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/dynamictypesize(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/scaledToFill()\":{\"role\":\"symbol\",\"title\":\"scaledToFill()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFill\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaledToFill()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaledtofill()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/keyboardShortcut(_:)-2vfia\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:)-2vfia\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:)-2vfia\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/border(_:width:)\":{\"role\":\"symbol\",\"title\":\"border(_:width:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"border\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/border(_:width:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/border(_:width:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onCarousel(_:)\":{\"role\":\"symbol\",\"title\":\"onCarousel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarousel\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselContext\",\"preciseIdentifier\":\"s:9ShuffleIt15CarouselContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens sliding events occurring on the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCarousel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncarousel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:actions:)-718e5\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-718e5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-718e5\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\":{\"role\":\"symbol\",\"title\":\"rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotation3DEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"axis\"},{\"kind\":\"text\",\"text\":\": (x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", z\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"), \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchorZ\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perspective\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/rotation3deffect(_:axis:anchor:anchorz:perspective:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onSubmit(of:_:)\":{\"role\":\"symbol\",\"title\":\"onSubmit(of:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onSubmit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitTriggers\",\"preciseIdentifier\":\"s:7SwiftUI14SubmitTriggersV\"},{\"kind\":\"text\",\"text\":\", (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onSubmit(of:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onsubmit(of:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onExitCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onExitCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onExitCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onExitCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onexitcommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/overlay(_:alignment:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(_:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(_:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/transaction(_:)\":{\"role\":\"symbol\",\"title\":\"transaction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transaction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Transaction\",\"preciseIdentifier\":\"s:7SwiftUI11TransactionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transaction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilitySortPriority(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilitySortPriority(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilitySortPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilitySortPriority(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitysortpriority(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/matchedGeometryEffect(id:in:properties:anchor:isSource:)\":{\"role\":\"symbol\",\"title\":\"matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"matchedGeometryEffect\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"properties\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"MatchedGeometryProperties\",\"preciseIdentifier\":\"s:7SwiftUI25MatchedGeometryPropertiesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isSource\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/matchedgeometryeffect(id:in:properties:anchor:issource:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/previewLayout(_:)\":{\"role\":\"symbol\",\"title\":\"previewLayout(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewLayout\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewLayout\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewLayoutO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewLayout(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewlayout(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/colorInvert()\":{\"role\":\"symbol\",\"title\":\"colorInvert()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorInvert\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/colorInvert()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/colorinvert()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/help(_:)-9mw1c\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/help(_:)-9mw1c\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/help(_:)-9mw1c\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/colorMultiply(_:)\":{\"role\":\"symbol\",\"title\":\"colorMultiply(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorMultiply\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/colorMultiply(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/colormultiply(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/imageScale(_:)\":{\"role\":\"symbol\",\"title\":\"imageScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"imageScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Image\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Scale\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV5ScaleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/imageScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/imagescale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/symbolRenderingMode(_:)\":{\"role\":\"symbol\",\"title\":\"symbolRenderingMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolRenderingMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI19SymbolRenderingModeV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/symbolRenderingMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/symbolrenderingmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/preference(key:value:)\":{\"role\":\"symbol\",\"title\":\"preference(key:value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/preference(key:value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/preference(key:value:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/animation(_:value:)\":{\"role\":\"symbol\",\"title\":\"animation(_:value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/animation(_:value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/animation(_:value:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shufflePadding(_:)\":{\"role\":\"symbol\",\"title\":\"shufflePadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shufflePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shufflePadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shufflepadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/aspectRatio(_:contentMode:)-72t0z\":{\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/aspectRatio(_:contentMode:)-72t0z\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/aspectratio(_:contentmode:)-72t0z\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:presenting:actions:message:)-7b0gl\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:message:)-7b0gl\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:message:)-7b0gl\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/foregroundStyle(_:_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundStyle(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundstyle(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/labelStyle(_:)\":{\"role\":\"symbol\",\"title\":\"labelStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/labelStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/labelstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(activationPoint:)-4y62\":{\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(activationPoint:)-4y62\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(activationpoint:)-4y62\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/id(_:)\":{\"role\":\"symbol\",\"title\":\"id(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/id(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/id(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(hint:)\":{\"role\":\"symbol\",\"title\":\"accessibility(hint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(hint:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(hint:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/presentedWindowStyle(_:)\":{\"role\":\"symbol\",\"title\":\"presentedWindowStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/presentedWindowStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/presentedwindowstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/padding(_:)-h9m6\":{\"role\":\"symbol\",\"title\":\"padding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/padding(_:)-h9m6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/padding(_:)-h9m6\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:presenting:actions:message:)-4tvm3\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:presenting:actions:message:)-4tvm3\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:message:)-4tvm3\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselScale(_:)\":{\"role\":\"symbol\",\"title\":\"carouselScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the contents right next to the current content of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/projectionEffect(_:)\":{\"role\":\"symbol\",\"title\":\"projectionEffect(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"projectionEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ProjectionTransform\",\"preciseIdentifier\":\"s:7SwiftUI19ProjectionTransformV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/projectionEffect(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/projectioneffect(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/ignoresSafeArea(_:edges:)\":{\"role\":\"symbol\",\"title\":\"ignoresSafeArea(_:edges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ignoresSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SafeAreaRegions\",\"preciseIdentifier\":\"s:7SwiftUI15SafeAreaRegionsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/ignoresSafeArea(_:edges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ignoressafearea(_:edges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/transformEnvironment(_:transform:)\":{\"role\":\"symbol\",\"title\":\"transformEnvironment(_:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEnvironment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformEnvironment(_:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transformenvironment(_:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityFocused(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityFocused(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityfocused(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/scaleEffect(x:y:anchor:)\":{\"role\":\"symbol\",\"title\":\"scaleEffect(x:y:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaleEffect(x:y:anchor:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaleeffect(x:y:anchor:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onHover(perform:)\":{\"role\":\"symbol\",\"title\":\"onHover(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onHover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onHover(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onhover(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/defaultAppStorage(_:)\":{\"role\":\"symbol\",\"title\":\"defaultAppStorage(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"defaultAppStorage\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UserDefaults\",\"preciseIdentifier\":\"c:objc(cs)NSUserDefaults\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/defaultAppStorage(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/defaultappstorage(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationTitle(_:)-8mmxy\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-8mmxy\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-8mmxy\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryLabel:)-59b0s\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-59b0s\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-59b0s\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(removeTraits:)\":{\"role\":\"symbol\",\"title\":\"accessibility(removeTraits:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"removeTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(removeTraits:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(removetraits:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/modifier(_:)\":{\"role\":\"symbol\",\"title\":\"modifier(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/modifier(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/modifier(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/simultaneousGesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"simultaneousGesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"simultaneousGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/simultaneousGesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/simultaneousgesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(hidden:)\":{\"role\":\"symbol\",\"title\":\"accessibility(hidden:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(hidden:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(hidden:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(in:fillStyle:)-2lcq8\":{\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(in:fillStyle:)-2lcq8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(in:fillstyle:)-2lcq8\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/foregroundColor(_:)\":{\"role\":\"symbol\",\"title\":\"foregroundColor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundColor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundcolor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:perform:onpressingchanged:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-2xo1j\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-2xo1j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-2xo1j\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-9o8j\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-9o8j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-9o8j\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onCutCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onCutCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCutCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCutCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncutcommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/touchBarCustomizationLabel(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarCustomizationLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarCustomizationLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBarCustomizationLabel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbarcustomizationlabel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/progressViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"progressViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"progressViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/progressViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/progressviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/clipShape(_:style:)\":{\"role\":\"symbol\",\"title\":\"clipShape(_:style:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/clipShape(_:style:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/clipshape(_:style:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/zIndex(_:)\":{\"role\":\"symbol\",\"title\":\"zIndex(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"zIndex\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/zIndex(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/zindex(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleDeckAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle animation of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:actions:)-1uzrt\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-1uzrt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-1uzrt\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrag(_:preview:)\":{\"role\":\"symbol\",\"title\":\"onDrag(_:preview:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"preview\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrag(_:preview:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrag(_:preview:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/keyboardShortcut(_:modifiers:)\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:modifiers:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:modifiers:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"carouselAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default carousel animation of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleDeckStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DeckStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle style of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDeckStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onLongPressGesture(minimumDuration:pressing:perform:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:pressing:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:pressing:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:pressing:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-3t2kq\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-3t2kq\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-3t2kq\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/groupBoxStyle(_:)\":{\"role\":\"symbol\",\"title\":\"groupBoxStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"groupBoxStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/groupBoxStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/groupboxstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/flipsForRightToLeftLayoutDirection(_:)\":{\"role\":\"symbol\",\"title\":\"flipsForRightToLeftLayoutDirection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"flipsForRightToLeftLayoutDirection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/flipsForRightToLeftLayoutDirection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/flipsforrighttoleftlayoutdirection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/touchBar(content:)\":{\"role\":\"symbol\",\"title\":\"touchBar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/touchBar(content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbar(content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/overlay(_:in:fillStyle:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(_:in:fillStyle:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(_:in:fillstyle:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/padding(_:_:)\":{\"role\":\"symbol\",\"title\":\"padding(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/padding(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/padding(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focusable(_:onFocusChange:)\":{\"role\":\"symbol\",\"title\":\"focusable(_:onFocusChange:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onFocusChange\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusable(_:onFocusChange:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusable(_:onfocuschange:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-g5bx\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-g5bx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-g5bx\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/scaleEffect(_:anchor:)-7oq71\":{\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/scaleEffect(_:anchor:)-7oq71\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaleeffect(_:anchor:)-7oq71\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(activationPoint:)-695kx\":{\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(activationPoint:)-695kx\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(activationpoint:)-695kx\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/font(_:)\":{\"role\":\"symbol\",\"title\":\"font(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Font\",\"preciseIdentifier\":\"s:7SwiftUI4FontV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/font(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/font(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/popover(item:attachmentAnchor:arrowEdge:content:)\":{\"role\":\"symbol\",\"title\":\"popover(item:attachmentAnchor:arrowEdge:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/popover(item:attachmentAnchor:arrowEdge:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/popover(item:attachmentanchor:arrowedge:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchable(text:placement:prompt:suggestions:)-8bmqj\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:suggestions:)-8bmqj\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:suggestions:)-8bmqj\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileExporter(isPresented:documents:contentType:onCompletion:)-9dfyf\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-9dfyf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-9dfyf\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityFocused(_:equals:)\":{\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:equals:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityFocused(_:equals:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityfocused(_:equals:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/speechAdjustedPitch(_:)\":{\"role\":\"symbol\",\"title\":\"speechAdjustedPitch(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAdjustedPitch\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechAdjustedPitch(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/speechadjustedpitch(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryLabel:)-25t4x\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryLabel:)-25t4x\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-25t4x\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchable(text:placement:prompt:suggestions:)-7bvn6\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:suggestions:)-7bvn6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:suggestions:)-7bvn6\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityShowsLargeContentViewer(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityShowsLargeContentViewer(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityshowslargecontentviewer(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/refreshable(action:)\":{\"role\":\"symbol\",\"title\":\"refreshable(action:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"refreshable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/refreshable(action:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/refreshable(action:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/gesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"gesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/gesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/gesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/edgesIgnoringSafeArea(_:)\":{\"role\":\"symbol\",\"title\":\"edgesIgnoringSafeArea(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"edgesIgnoringSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/edgesIgnoringSafeArea(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/edgesignoringsafearea(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/position(x:y:)\":{\"role\":\"symbol\",\"title\":\"position(x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/position(x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/position(x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/help(_:)-1f2w4\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/help(_:)-1f2w4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/help(_:)-1f2w4\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onShuffle(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffle\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A7ContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/clipped(antialiased:)\":{\"role\":\"symbol\",\"title\":\"clipped(antialiased:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipped\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/clipped(antialiased:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/clipped(antialiased:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/toggleStyle(_:)\":{\"role\":\"symbol\",\"title\":\"toggleStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toggleStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toggleStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/togglestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:textRanges:)-25npe\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-25npe\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-25npe\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:textRanges:)-3d2p8\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-3d2p8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-3d2p8\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-51cln\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-51cln\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-51cln\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/transformAnchorPreference(key:value:transform:)\":{\"role\":\"symbol\",\"title\":\"transformAnchorPreference(key:value:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformAnchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transformAnchorPreference(key:value:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transformanchorpreference(key:value:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onMoveCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onMoveCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onMoveCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"MoveCommandDirection\",\"preciseIdentifier\":\"s:7SwiftUI20MoveCommandDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onMoveCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onmovecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/toolbar(content:)-6zmlc\":{\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toolbar(content:)-6zmlc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/toolbar(content:)-6zmlc\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchable(text:placement:prompt:suggestions:)-2uz54\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:suggestions:)-2uz54\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:suggestions:)-2uz54\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/position(_:)\":{\"role\":\"symbol\",\"title\":\"position(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/position(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/position(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alignmentGuide(_:computeValue:)-4r6p\":{\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alignmentGuide(_:computeValue:)-4r6p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alignmentguide(_:computevalue:)-4r6p\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-46frq\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-46frq\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-46frq\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/contextMenu(menuItems:)\":{\"role\":\"symbol\",\"title\":\"contextMenu(menuItems:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"menuItems\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contextMenu(menuItems:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contextmenu(menuitems:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focusable(_:)\":{\"role\":\"symbol\",\"title\":\"focusable(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusable(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusable(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(inputLabels:)\":{\"role\":\"symbol\",\"title\":\"accessibility(inputLabels:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(inputLabels:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(inputlabels:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:actions:)-1q2gb\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:)-1q2gb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:)-1q2gb\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/textSelection(_:)\":{\"role\":\"symbol\",\"title\":\"textSelection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textSelection\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/textSelection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/textselection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/listRowBackground(_:)\":{\"role\":\"symbol\",\"title\":\"listRowBackground(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowBackground\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listRowBackground(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/listrowbackground(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onPasteCommand(of:perform:)-27ier\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:perform:)-27ier\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:perform:)-27ier\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onCarouselTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onCarouselTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarouselTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while sliding content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCarouselTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncarouseltranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:actions:)-76wk8\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:)-76wk8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:)-76wk8\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(_:alignment:)\":{\"role\":\"symbol\",\"title\":\"background(_:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityLinkedGroup(id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityLinkedGroup(id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLinkedGroup\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLinkedGroup(id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylinkedgroup(id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onReceive(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onReceive(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onReceive\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onReceive(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onreceive(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-5w70m\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-5w70m\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-5w70m\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityLabel(_:)-755g2\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabel(_:)-755g2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabel(_:)-755g2\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/previewContext(_:)\":{\"role\":\"symbol\",\"title\":\"previewContext(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewContext\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewContext(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewcontext(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/animation(_:)\":{\"role\":\"symbol\",\"title\":\"animation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/animation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/animation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/overlayPreferenceValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"overlayPreferenceValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlayPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlayPreferenceValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlaypreferencevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/disabled(_:)\":{\"role\":\"symbol\",\"title\":\"disabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/disabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/disabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:textRanges:)-9sgga\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:textRanges:)-9sgga\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-9sgga\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAction(named:_:)-rgyh\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(named:_:)-rgyh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(named:_:)-rgyh\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityScrollAction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityScrollAction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityScrollAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityScrollAction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityscrollaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(item:content:)\":{\"role\":\"symbol\",\"title\":\"alert(item:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(item:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(item:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/popover(isPresented:attachmentAnchor:arrowEdge:content:)\":{\"role\":\"symbol\",\"title\":\"popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/popover(ispresented:attachmentanchor:arrowedge:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityLabel(_:)-2tohn\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityLabel(_:)-2tohn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabel(_:)-2tohn\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/disableAutocorrection(_:)\":{\"role\":\"symbol\",\"title\":\"disableAutocorrection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disableAutocorrection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/disableAutocorrection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/disableautocorrection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/pageCommand(value:in:step:)\":{\"role\":\"symbol\",\"title\":\"pageCommand(value:in:step:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pageCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ClosedRange\",\"preciseIdentifier\":\"s:SN\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"step\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/pageCommand(value:in:step:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/pagecommand(value:in:step:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/allowsHitTesting(_:)\":{\"role\":\"symbol\",\"title\":\"allowsHitTesting(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsHitTesting\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/allowsHitTesting(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/allowshittesting(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:actions:message:)-9a4q7\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:message:)-9a4q7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:message:)-9a4q7\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(isPresented:content:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(isPresented:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(ispresented:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/offset(x:y:)\":{\"role\":\"symbol\",\"title\":\"offset(x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/offset(x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/offset(x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/speechAlwaysIncludesPunctuation(_:)\":{\"role\":\"symbol\",\"title\":\"speechAlwaysIncludesPunctuation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAlwaysIncludesPunctuation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechAlwaysIncludesPunctuation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/speechalwaysincludespunctuation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(addTraits:)\":{\"role\":\"symbol\",\"title\":\"accessibility(addTraits:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"addTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(addTraits:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(addtraits:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/frame(width:height:alignment:)\":{\"role\":\"symbol\",\"title\":\"frame(width:height:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"height\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/frame(width:height:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/frame(width:height:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onCopyCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onCopyCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCopyCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCopyCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncopycommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRepresentation(representation:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRepresentation(representation:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRepresentation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"representation\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRepresentation(representation:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrepresentation(representation:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAddTraits(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAddTraits(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAddTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAddTraits(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaddtraits(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/userActivity(_:element:_:)\":{\"role\":\"symbol\",\"title\":\"userActivity(_:element:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"element\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\"?, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/userActivity(_:element:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/useractivity(_:element:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationTitle(_:)-5xkgg\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-5xkgg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-5xkgg\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityActivationPoint(_:)-8dokx\":{\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityActivationPoint(_:)-8dokx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityactivationpoint(_:)-8dokx\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onShuffleTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while swiping content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onShuffleTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffletranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/environment(_:_:)\":{\"role\":\"symbol\",\"title\":\"environment(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/environment(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/environment(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/keyboardShortcut(_:modifiers:localization:)\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:localization:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"localization\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Localization\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV12LocalizationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/keyboardShortcut(_:modifiers:localization:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:modifiers:localization:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(in:fillStyle:)-6gtsb\":{\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(in:fillStyle:)-6gtsb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(in:fillstyle:)-6gtsb\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrop(of:isTargeted:perform:)-3z0u6\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-3z0u6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-3z0u6\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/hueRotation(_:)\":{\"role\":\"symbol\",\"title\":\"hueRotation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hueRotation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/hueRotation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/huerotation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/buttonStyle(_:)-8ljh4\":{\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/buttonStyle(_:)-8ljh4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/buttonstyle(_:)-8ljh4\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/lineSpacing(_:)\":{\"role\":\"symbol\",\"title\":\"lineSpacing(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/lineSpacing(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/linespacing(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/background(_:ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"background(_:ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/background(_:ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-5xqqc\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-5xqqc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-5xqqc\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/help(_:)-1g6m4\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/help(_:)-1g6m4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/help(_:)-1g6m4\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/minimumScaleFactor(_:)\":{\"role\":\"symbol\",\"title\":\"minimumScaleFactor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"minimumScaleFactor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/minimumScaleFactor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/minimumscalefactor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/overlay(_:ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/overlay(_:ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(_:ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAction(_:_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityActionKind\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityActionKindV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAdjustableAction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAdjustableAction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAdjustableAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAdjustmentDirection\",\"preciseIdentifier\":\"s:7SwiftUI32AccessibilityAdjustmentDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAdjustableAction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityadjustableaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/coordinateSpace(name:)\":{\"role\":\"symbol\",\"title\":\"coordinateSpace(name:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"coordinateSpace\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/coordinateSpace(name:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/coordinatespace(name:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/offset(_:)\":{\"role\":\"symbol\",\"title\":\"offset(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/offset(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/offset(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityInputLabels(_:)-95tn0\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">([\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityInputLabels(_:)-95tn0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityinputlabels(_:)-95tn0\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onOpenURL(perform:)\":{\"role\":\"symbol\",\"title\":\"onOpenURL(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onOpenURL\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onOpenURL(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onopenurl(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focusScope(_:)\":{\"role\":\"symbol\",\"title\":\"focusScope(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focusScope(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusscope(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/previewDisplayName(_:)\":{\"role\":\"symbol\",\"title\":\"previewDisplayName(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDisplayName\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewDisplayName(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewdisplayname(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/anchorPreference(key:value:transform:)\":{\"role\":\"symbol\",\"title\":\"anchorPreference(key:value:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"anchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/anchorPreference(key:value:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/anchorpreference(key:value:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/datePickerStyle(_:)\":{\"role\":\"symbol\",\"title\":\"datePickerStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"datePickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/datePickerStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/datepickerstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/layoutPriority(_:)\":{\"role\":\"symbol\",\"title\":\"layoutPriority(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"layoutPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/layoutPriority(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/layoutpriority(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-1586n\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-1586n\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-1586n\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/saturation(_:)\":{\"role\":\"symbol\",\"title\":\"saturation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"saturation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/saturation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/saturation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityHeading(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityHeading(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHeading\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityHeadingLevel\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityHeadingLevelO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHeading(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityheading(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/badge(_:)-7kz0m\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/badge(_:)-7kz0m\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-7kz0m\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/lineLimit(_:)\":{\"role\":\"symbol\",\"title\":\"lineLimit(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineLimit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/lineLimit(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/linelimit(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(selectionIdentifier:)\":{\"role\":\"symbol\",\"title\":\"accessibility(selectionIdentifier:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"selectionIdentifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyHashable\",\"preciseIdentifier\":\"s:s11AnyHashableV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(selectionIdentifier:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(selectionidentifier:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/highPriorityGesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"highPriorityGesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"highPriorityGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/highPriorityGesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/highprioritygesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/grayscale(_:)\":{\"role\":\"symbol\",\"title\":\"grayscale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"grayscale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/grayscale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/grayscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:actions:message:)-5s7hn\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:message:)-5s7hn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:message:)-5s7hn\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/allowsTightening(_:)\":{\"role\":\"symbol\",\"title\":\"allowsTightening(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsTightening\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/allowsTightening(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/allowstightening(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibility(value:)\":{\"role\":\"symbol\",\"title\":\"accessibility(value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibility(value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(value:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-8rfm7\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-8rfm7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-8rfm7\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrop(of:isTargeted:perform:)-1ne0m\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-1ne0m\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-1ne0m\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/toolbar(id:content:)\":{\"role\":\"symbol\",\"title\":\"toolbar(id:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/toolbar(id:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/toolbar(id:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/listRowInsets(_:)\":{\"role\":\"symbol\",\"title\":\"listRowInsets(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowInsets\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/listRowInsets(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/listrowinsets(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/unredacted()\":{\"role\":\"symbol\",\"title\":\"unredacted()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"unredacted\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/unredacted()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/unredacted()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that disables user interaction to shuffle content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/menuStyle(_:)\":{\"role\":\"symbol\",\"title\":\"menuStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/menuStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/menustyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/transition(_:)\":{\"role\":\"symbol\",\"title\":\"transition(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transition\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyTransition\",\"preciseIdentifier\":\"s:7SwiftUI13AnyTransitionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/transition(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transition(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/foregroundStyle(_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/foregroundStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fixedSize()\":{\"role\":\"symbol\",\"title\":\"fixedSize()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fixedSize()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fixedsize()\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onPasteCommand(of:perform:)-2cj5d\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onPasteCommand(of:perform:)-2cj5d\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:perform:)-2cj5d\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityIdentifier(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityIdentifier(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIdentifier\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityIdentifier(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityidentifier(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:actions:)-7wghk\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:)-7wghk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:)-7wghk\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselStyle(_:)\":{\"role\":\"symbol\",\"title\":\"carouselStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselStyle\",\"preciseIdentifier\":\"s:9ShuffleIt13CarouselStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default carousel style of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchable(text:placement:prompt:)-31g2u\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:)-31g2u\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:)-31g2u\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/alert(_:isPresented:actions:message:)-f5o2\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/alert(_:isPresented:actions:message:)-f5o2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:message:)-f5o2\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/presentedWindowToolbarStyle(_:)\":{\"role\":\"symbol\",\"title\":\"presentedWindowToolbarStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowToolbarStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/presentedWindowToolbarStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/presentedwindowtoolbarstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/submitScope(_:)\":{\"role\":\"symbol\",\"title\":\"submitScope(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/submitScope(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/submitscope(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/pickerStyle(_:)\":{\"role\":\"symbol\",\"title\":\"pickerStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/pickerStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/pickerstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-4fi9z\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-4fi9z\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-4fi9z\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileImporter(isPresented:allowedContentTypes:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/shuffleTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accpets events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/shuffleTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffletrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityCustomContent(_:_:importance:)-9cou3\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityCustomContent(_:_:importance:)-9cou3\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-9cou3\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityInputLabels(_:)-3p703\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityInputLabels(_:)-3p703\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityinputlabels(_:)-3p703\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/deleteDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"deleteDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"deleteDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/deleteDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/deletedisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/task(id:priority:_:)\":{\"role\":\"symbol\",\"title\":\"task(id:priority:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/task(id:priority:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/task(id:priority:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/contentShape(_:eoFill:)\":{\"role\":\"symbol\",\"title\":\"contentShape(_:eoFill:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/contentShape(_:eoFill:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contentshape(_:eofill:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRemoveTraits(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRemoveTraits(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRemoveTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRemoveTraits(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityremovetraits(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/swipeActions(edge:allowsFullSwipe:content:)\":{\"role\":\"symbol\",\"title\":\"swipeActions(edge:allowsFullSwipe:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"swipeActions\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"allowsFullSwipe\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/swipeActions(edge:allowsFullSwipe:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/swipeactions(edge:allowsfullswipe:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/speechSpellsOutCharacters(_:)\":{\"role\":\"symbol\",\"title\":\"speechSpellsOutCharacters(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechSpellsOutCharacters\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/speechSpellsOutCharacters(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/speechspellsoutcharacters(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityRotor(_:entries:entryID:entryLabel:)-1w44t\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-1w44t\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-1w44t\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityHint(_:)-7yi0h\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHint(_:)-7yi0h\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhint(_:)-7yi0h\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/prefersDefaultFocus(_:in:)\":{\"role\":\"symbol\",\"title\":\"prefersDefaultFocus(_:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/prefersDefaultFocus(_:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/prefersdefaultfocus(_:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityHint(_:)-2j7te\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityHint(_:)-2j7te\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhint(_:)-2j7te\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/opacity(_:)\":{\"role\":\"symbol\",\"title\":\"opacity(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/opacity(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/opacity(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileMover(isPresented:file:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileMover(isPresented:file:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"file\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileMover(isPresented:file:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/filemover(ispresented:file:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAction(action:label:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(action:label:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(action:label:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(action:label:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"navigationViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onAppear(perform:)\":{\"role\":\"symbol\",\"title\":\"onAppear(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onAppear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onAppear(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onappear(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/moveDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"moveDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"moveDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/moveDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/movedisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/exportsItemProviders(_:onExport:)\":{\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/exportsItemProviders(_:onExport:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/exportsitemproviders(_:onexport:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/menuButtonStyle(_:)\":{\"role\":\"symbol\",\"title\":\"menuButtonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuButtonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/menuButtonStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/menubuttonstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/previewDevice(_:)\":{\"role\":\"symbol\",\"title\":\"previewDevice(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDevice\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewDevice\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewDeviceV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/previewDevice(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewdevice(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityAction(named:_:)-69c69\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityAction(named:_:)-69c69\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(named:_:)-69c69\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/focused(_:equals:)\":{\"role\":\"symbol\",\"title\":\"focused(_:equals:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/focused(_:equals:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focused(_:equals:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"allowsMultipleSelection\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityChildren(children:)\":{\"role\":\"symbol\",\"title\":\"accessibilityChildren(children:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChildren\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityChildren(children:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitychildren(children:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/searchable(text:placement:prompt:)-9859\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/searchable(text:placement:prompt:)-9859\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:)-9859\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/navigationTitle(_:)-544cp\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/navigationTitle(_:)-544cp\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-544cp\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/blendMode(_:)\":{\"role\":\"symbol\",\"title\":\"blendMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"BlendMode\",\"preciseIdentifier\":\"s:7SwiftUI9BlendModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/blendMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/blendmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"carouselTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouseltrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/accessibilityElement(children:)\":{\"role\":\"symbol\",\"title\":\"accessibilityElement(children:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityElement\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityChildBehavior\",\"preciseIdentifier\":\"s:7SwiftUI26AccessibilityChildBehaviorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/accessibilityElement(children:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityelement(children:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onDrop(of:isTargeted:perform:)-7mvpm\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onDrop(of:isTargeted:perform:)-7mvpm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-7mvpm\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack/zindex(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"zIndex\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\\/zindex(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/zIndex(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.zIndex(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"zIndex(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"zIndex\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6zIndexyQrSdF::SYNTHESIZED::s:9ShuffleIt13CarouselStackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/zIndex(_:)\":{\"role\":\"symbol\",\"title\":\"zIndex(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"zIndex\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/zIndex(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/zindex(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstack.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"CarouselStack\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"title\":\"CarouselStack\",\"roleHeading\":\"Structure\",\"role\":\"symbol\",\"symbolKind\":\"struct\",\"externalID\":\"s:9ShuffleIt13CarouselStackV\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}]},\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"interfaceLanguage\":\"swift\"},\"relationshipsSections\":[{\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/7SwiftUI4ViewP\"],\"kind\":\"relationships\",\"title\":\"Conforms To\",\"type\":\"conformsTo\"}],\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Initializers\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/init(_:initialIndex:content:)-70npt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/init(_:initialIndex:content:)-7edjn\"]},{\"title\":\"Instance Properties\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/body\"]},{\"title\":\"Default Implementations\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\"],\"generated\":true}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstack\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"kind\":\"symbol\",\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"RandomAccessCollection\",\"preciseIdentifier\":\"s:Sk\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"Overview\",\"level\":2,\"type\":\"heading\",\"text\":\"Overview\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" is built on top of \"},{\"type\":\"codeVoice\",\"code\":\"ZStack\"},{\"type\":\"text\",\"text\":\" to renders carousel sliding view which only allocates at most five content views and reuses them when index changes. In case the data passed into the stack view is empty, there will be empty view on the screen.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet demonstrates the simple usage of \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" which creates a slide view of color cards with default carousel style and animation.\"}]},{\"type\":\"codeListing\",\"syntax\":null,\"code\":[\"struct ContentView: View {\",\"    let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"    var body: some View {\",\"        CarouselStack(\",\"            colors,\",\"            initialIndex: 0\",\"        ) { color in\",\"            color\",\"                .frame(height: 200)\",\"                .cornerRadius(16)\",\"        }\",\"    }\",\"}\"]},{\"anchor\":\"Customizing-default-behaviours\",\"level\":2,\"type\":\"heading\",\"text\":\"Customizing default behaviours\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" provides a wide range of modifiers to override default behaviour of the stack view so that it is easy to tailor to view with custom values such as animation, style, spacing, padding and scale factor.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following table shows a list of available modifiers that customizes the view.\"}]},{\"type\":\"table\",\"rows\":[[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Modifier\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Description\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselAnimation(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default carousel animation of the carousel stack view.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselStyle(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default carousel style of the carousel stack view.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselPadding(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the carousel stack view.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselScale(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the contents right next to the current content of the carousel stack view.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselSpacing(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that sets value which is used to add some spacing between carousel stack contents.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselDisabled(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to carousel content views.\"}]}]]],\"header\":\"row\"},{\"anchor\":\"Observing-sliding-events-and-swiping-translation\",\"level\":2,\"type\":\"heading\",\"text\":\"Observing sliding events and swiping translation\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" comes with useful modifiers that listens sliding events and swiping translation to perform a particular action based on those values after sliding succeeds or while swiping the views.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following modifiers helps to observe sliding events and translation changes.\"}]},{\"type\":\"table\",\"rows\":[[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Modifier\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Description\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCarousel(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that listens sliding events occurring on the carousel stack view.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCarouselTranslation(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while sliding content views.\"}]}]]],\"header\":\"row\"},{\"anchor\":\"Triggering-the-programmatic-sliding\",\"level\":2,\"type\":\"heading\",\"text\":\"Triggering the programmatic sliding\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" also allows programmatic sliding by accepting a series of events from the upstream publisher. Whenever the publisher fires an event, it blocks user interaction on the view and performs sliding action.\"}]},{\"type\":\"table\",\"rows\":[[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Modifier\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Description\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselTrigger(on:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic sliding.\"}]}]]],\"header\":\"row\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/7SwiftUI4ViewP\":{\"type\":\"unresolvable\",\"title\":\"SwiftUI.View\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/7SwiftUI4ViewP\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/init(_:initialIndex:content:)-7edjn\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"Content\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:content:)\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" and exposes translation value to child content through view builder.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/init(_:initialIndex:content:)-7edjn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/init(_:initialindex:content:)-7edjn\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"carouselDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to carousel content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouseldisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselPadding(_:)\":{\"role\":\"symbol\",\"title\":\"carouselPadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselPadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselPadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselpadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/init(_:initialIndex:content:)-70npt\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"Content\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:content:)\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/init(_:initialIndex:content:)-70npt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/init(_:initialindex:content:)-70npt\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle\":{\"role\":\"symbol\",\"title\":\"CarouselStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext\":{\"role\":\"symbol\",\"title\":\"CarouselContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onCarouselTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onCarouselTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarouselTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while sliding content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCarouselTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncarouseltranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/body\":{\"role\":\"symbol\",\"title\":\"body\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"var\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"body\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/body\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/body\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselStyle(_:)\":{\"role\":\"symbol\",\"title\":\"carouselStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselStyle\",\"preciseIdentifier\":\"s:9ShuffleIt13CarouselStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default carousel style of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"carouselTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouseltrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/onCarousel(_:)\":{\"role\":\"symbol\",\"title\":\"onCarousel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarousel\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselContext\",\"preciseIdentifier\":\"s:9ShuffleIt15CarouselContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens sliding events occurring on the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/onCarousel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncarousel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"carouselAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default carousel animation of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselSpacing(_:)\":{\"role\":\"symbol\",\"title\":\"carouselSpacing(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value which is used to add some spacing between carousel stack contents.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselSpacing(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselspacing(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack/carouselScale(_:)\":{\"role\":\"symbol\",\"title\":\"carouselScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the contents right next to the current content of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\\/carouselScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselscale(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstyle/!=(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"internalParam\",\"text\":\"lhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"internalParam\",\"text\":\"rhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstyle\\/!=(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/!=(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"Equatable.!=(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"roleHeading\":\"Operator\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"symbolKind\":\"op\",\"externalID\":\"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:9ShuffleIt13CarouselStyleO\",\"extendedModule\":\"Swift\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/Equatable-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle\":{\"role\":\"symbol\",\"title\":\"CarouselStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\\/equatable-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\\/!=(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstyle/equatable-implementations.json",
    "content": "{\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstyle\\/equatable-implementations\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/Equatable-Implementations\",\"interfaceLanguage\":\"swift\"},\"topicSections\":[{\"title\":\"Operators\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/!=(_:_:)\"],\"generated\":true}],\"kind\":\"article\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\"},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle\":{\"role\":\"symbol\",\"title\":\"CarouselStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\\/!=(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstyle/finitescroll.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"finiteScroll\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstyle\\/finitescroll\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/finiteScroll\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A carousel style which ends content views at both ends so that it cannot be scrolled infinitely.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"finiteScroll\"}],\"title\":\"CarouselStyle.finiteScroll\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt13CarouselStyleO12finiteScrollyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle\":{\"role\":\"symbol\",\"title\":\"CarouselStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle/finiteScroll\":{\"role\":\"symbol\",\"title\":\"CarouselStyle.finiteScroll\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"finiteScroll\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A carousel style which ends content views at both ends so that it cannot be scrolled infinitely.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/finiteScroll\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\\/finitescroll\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstyle/infinitescroll.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"infiniteScroll\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstyle\\/infinitescroll\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/infiniteScroll\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A carousel style which makes content views scroll in the loop without ending.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"infiniteScroll\"}],\"title\":\"CarouselStyle.infiniteScroll\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt13CarouselStyleO14infiniteScrollyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle/infiniteScroll\":{\"role\":\"symbol\",\"title\":\"CarouselStyle.infiniteScroll\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"infiniteScroll\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A carousel style which makes content views scroll in the loop without ending.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/infiniteScroll\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\\/infinitescroll\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle\":{\"role\":\"symbol\",\"title\":\"CarouselStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/carouselstyle.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"CarouselStack\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"title\":\"CarouselStyle\",\"roleHeading\":\"Enumeration\",\"role\":\"symbol\",\"symbolKind\":\"enum\",\"externalID\":\"s:9ShuffleIt13CarouselStyleO\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}]},\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"interfaceLanguage\":\"swift\"},\"relationshipsSections\":[{\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/SQ\",\"doc:\\/\\/ShuffleIt\\/SH\"],\"kind\":\"relationships\",\"title\":\"Conforms To\",\"type\":\"conformsTo\"}],\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Enumeration Cases\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/finiteScroll\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/infiniteScroll\"]},{\"title\":\"Default Implementations\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/Equatable-Implementations\"],\"generated\":true}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/carouselstyle\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"kind\":\"symbol\",\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle\":{\"role\":\"symbol\",\"title\":\"CarouselStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\"},\"doc://ShuffleIt/SH\":{\"type\":\"unresolvable\",\"title\":\"Swift.Hashable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SH\"},\"doc://ShuffleIt/SQ\":{\"type\":\"unresolvable\",\"title\":\"Swift.Equatable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SQ\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\\/equatable-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle/infiniteScroll\":{\"role\":\"symbol\",\"title\":\"CarouselStyle.infiniteScroll\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"infiniteScroll\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A carousel style which makes content views scroll in the loop without ending.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/infiniteScroll\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\\/infinitescroll\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle/finiteScroll\":{\"role\":\"symbol\",\"title\":\"CarouselStyle.finiteScroll\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"finiteScroll\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A carousel style which ends content views at both ends so that it cannot be scrolled infinitely.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\\/finiteScroll\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\\/finitescroll\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext\":{\"role\":\"symbol\",\"title\":\"CarouselContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffleanimation/!=(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"internalParam\",\"text\":\"lhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"internalParam\",\"text\":\"rhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffleanimation\\/!=(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/!=(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"Equatable.!=(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"roleHeading\":\"Operator\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"symbolKind\":\"op\",\"externalID\":\"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:9ShuffleIt0A9AnimationO\",\"extendedModule\":\"Swift\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/Equatable-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/!=(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/equatable-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffleanimation/easein.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeIn\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffleanimation\\/easein\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/easeIn\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in animation.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeIn\"}],\"title\":\"ShuffleAnimation.easeIn\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A9AnimationO6easeInyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation/easeIn\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation.easeIn\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeIn\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/easeIn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/easein\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffleanimation/easeinout.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeInOut\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffleanimation\\/easeinout\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/easeInOut\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in-out animation.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeInOut\"}],\"title\":\"ShuffleAnimation.easeInOut\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A9AnimationO9easeInOutyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation/easeInOut\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation.easeInOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeInOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in-out animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/easeInOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/easeinout\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffleanimation/easeout.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeOut\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffleanimation\\/easeout\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/easeOut\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-out animation.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeOut\"}],\"title\":\"ShuffleAnimation.easeOut\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A9AnimationO7easeOutyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation/easeOut\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation.easeOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-out animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/easeOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/easeout\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffleanimation/equatable-implementations.json",
    "content": "{\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffleanimation\\/equatable-implementations\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/Equatable-Implementations\",\"interfaceLanguage\":\"swift\"},\"topicSections\":[{\"title\":\"Operators\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/!=(_:_:)\"],\"generated\":true}],\"kind\":\"article\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\"},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/!=(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffleanimation/linear.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"linear\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffleanimation\\/linear\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/linear\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A linear animation.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"linear\"}],\"title\":\"ShuffleAnimation.linear\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A9AnimationO6linearyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation/linear\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation.linear\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"linear\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A linear animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/linear\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/linear\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffleanimation.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"ShuffleStack\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"title\":\"ShuffleAnimation\",\"roleHeading\":\"Enumeration\",\"role\":\"symbol\",\"symbolKind\":\"enum\",\"externalID\":\"s:9ShuffleIt0A9AnimationO\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}]},\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"interfaceLanguage\":\"swift\"},\"relationshipsSections\":[{\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/SQ\",\"doc:\\/\\/ShuffleIt\\/SH\"],\"kind\":\"relationships\",\"title\":\"Conforms To\",\"type\":\"conformsTo\"}],\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Enumeration Cases\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/easeIn\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/easeInOut\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/easeOut\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/linear\"]},{\"title\":\"Default Implementations\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/Equatable-Implementations\"],\"generated\":true}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffleanimation\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"kind\":\"symbol\",\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"},\"doc://ShuffleIt/SQ\":{\"type\":\"unresolvable\",\"title\":\"Swift.Equatable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SQ\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"},\"doc://ShuffleIt/SH\":{\"type\":\"unresolvable\",\"title\":\"Swift.Hashable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SH\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation/easeInOut\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation.easeInOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeInOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in-out animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/easeInOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/easeinout\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation/linear\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation.linear\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"linear\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A linear animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/linear\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/linear\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation/easeOut\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation.easeOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-out animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/easeOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/easeout\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext\":{\"role\":\"symbol\",\"title\":\"ShuffleContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation/easeIn\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation.easeIn\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeIn\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/easeIn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/easein\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/equatable-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflecontext/direction.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"direction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DirectionO\",\"text\":\"ShuffleDirection\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflecontext\\/direction\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\\/direction\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A property of shuffling direction to which content view was swiped.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"direction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DirectionO\"}],\"title\":\"direction\",\"roleHeading\":\"Instance Property\",\"role\":\"symbol\",\"symbolKind\":\"property\",\"externalID\":\"s:9ShuffleIt0A7ContextV9directionAA0A9DirectionOvp\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext/direction\":{\"role\":\"symbol\",\"title\":\"direction\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"direction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DirectionO\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of shuffling direction to which content view was swiped.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\\/direction\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\\/direction\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext\":{\"role\":\"symbol\",\"title\":\"ShuffleContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflecontext/index.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"index\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflecontext\\/index\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\\/index\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A property of current index of shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"index\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"title\":\"index\",\"roleHeading\":\"Instance Property\",\"role\":\"symbol\",\"symbolKind\":\"property\",\"externalID\":\"s:9ShuffleIt0A7ContextV5indexSivp\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext/index\":{\"role\":\"symbol\",\"title\":\"index\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"index\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of current index of shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\\/index\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\\/index\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext\":{\"role\":\"symbol\",\"title\":\"ShuffleContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflecontext/previousindex.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previousIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflecontext\\/previousindex\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\\/previousIndex\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A property of previous index of shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previousIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"title\":\"previousIndex\",\"roleHeading\":\"Instance Property\",\"role\":\"symbol\",\"symbolKind\":\"property\",\"externalID\":\"s:9ShuffleIt0A7ContextV13previousIndexSivp\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext\":{\"role\":\"symbol\",\"title\":\"ShuffleContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext/previousIndex\":{\"role\":\"symbol\",\"title\":\"previousIndex\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previousIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of previous index of shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\\/previousIndex\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\\/previousindex\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflecontext.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"ShuffleStack\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflecontext\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"title\":\"ShuffleContext\",\"roleHeading\":\"Structure\",\"role\":\"symbol\",\"symbolKind\":\"struct\",\"externalID\":\"s:9ShuffleIt0A7ContextV\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Instance Properties\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\\/direction\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\\/index\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\\/previousIndex\"]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext/index\":{\"role\":\"symbol\",\"title\":\"index\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"index\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of current index of shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\\/index\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\\/index\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext\":{\"role\":\"symbol\",\"title\":\"ShuffleContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext/direction\":{\"role\":\"symbol\",\"title\":\"direction\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"direction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DirectionO\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of shuffling direction to which content view was swiped.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\\/direction\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\\/direction\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext/previousIndex\":{\"role\":\"symbol\",\"title\":\"previousIndex\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previousIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of previous index of shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\\/previousIndex\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\\/previousindex\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accentcolor(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accentcolor(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accentColor(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accentColor(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accentColor(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11accentColoryQrAA0E0VSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use the asset catalog's accent color or View.tint(_:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use the asset catalog's accent color or View.tint(_:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use the asset catalog's accent color or View.tint(_:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use the asset catalog's accent color or View.tint(_:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use the asset catalog's accent color or View.tint(_:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accentColor(_:)\":{\"role\":\"symbol\",\"title\":\"accentColor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accentColor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accentcolor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibility(activationpoint:)-5yxv.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(activationpoint:)-5yxv\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(activationPoint:)-5yxv\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(activationPoint:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility15activationPointAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA04UnitF0V_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(activationPoint:)-5yxv\":{\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(activationPoint:)-5yxv\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(activationpoint:)-5yxv\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibility(activationpoint:)-6f80.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(activationpoint:)-6f80\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(activationPoint:)-6f80\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(activationPoint:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility15activationPointAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSo7CGPointV_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(activationPoint:)-6f80\":{\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(activationPoint:)-6f80\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(activationpoint:)-6f80\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibility(addtraits:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"addTraits\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"traits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(addtraits:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(addTraits:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(addTraits:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(addTraits:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"addTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility9addTraitsAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0V_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityAddTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityAddTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityAddTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityAddTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(addTraits:)\":{\"role\":\"symbol\",\"title\":\"accessibility(addTraits:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"addTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(addTraits:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(addtraits:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibility(hidden:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(hidden:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(hidden:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(hidden:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(hidden:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility6hiddenAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSb_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHidden(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHidden(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHidden(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHidden(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(hidden:)\":{\"role\":\"symbol\",\"title\":\"accessibility(hidden:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(hidden:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(hidden:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibility(hint:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(hint:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(hint:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(hint:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(hint:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility4hintAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHint(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHint(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(hint:)\":{\"role\":\"symbol\",\"title\":\"accessibility(hint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(hint:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(hint:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibility(identifier:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(identifier:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(identifier:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(identifier:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(identifier:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility10identifierAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSS_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityIdentifier(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityIdentifier(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityIdentifier(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityIdentifier(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(identifier:)\":{\"role\":\"symbol\",\"title\":\"accessibility(identifier:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(identifier:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(identifier:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibility(inputlabels:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(inputlabels:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(inputLabels:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(inputLabels:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(inputLabels:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility11inputLabelsAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayAA4TextVG_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityInputLabels(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityInputLabels(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityInputLabels(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityInputLabels(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(inputLabels:)\":{\"role\":\"symbol\",\"title\":\"accessibility(inputLabels:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(inputLabels:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(inputlabels:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibility(label:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(label:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(label:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(label:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(label:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility5labelAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityLabel(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityLabel(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityLabel(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityLabel(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(label:)\":{\"role\":\"symbol\",\"title\":\"accessibility(label:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(label:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(label:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibility(removetraits:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"removeTraits\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"traits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(removetraits:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(removeTraits:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(removeTraits:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(removeTraits:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"removeTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility12removeTraitsAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0V_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityRemoveTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityRemoveTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityRemoveTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityRemoveTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(removeTraits:)\":{\"role\":\"symbol\",\"title\":\"accessibility(removeTraits:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"removeTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(removeTraits:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(removetraits:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibility(selectionidentifier:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"selectionIdentifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyHashable\",\"preciseIdentifier\":\"s:s11AnyHashableV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(selectionidentifier:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(selectionIdentifier:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(selectionIdentifier:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(selectionIdentifier:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"selectionIdentifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyHashable\",\"preciseIdentifier\":\"s:s11AnyHashableV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility19selectionIdentifierAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGs11AnyHashableV_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":true},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":true},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":true},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":true}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(selectionIdentifier:)\":{\"role\":\"symbol\",\"title\":\"accessibility(selectionIdentifier:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"selectionIdentifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyHashable\",\"preciseIdentifier\":\"s:s11AnyHashableV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(selectionIdentifier:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(selectionidentifier:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibility(sortpriority:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(sortpriority:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(sortPriority:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(sortPriority:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(sortPriority:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility12sortPriorityAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSd_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilitySortPriority(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilitySortPriority(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilitySortPriority(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilitySortPriority(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(sortPriority:)\":{\"role\":\"symbol\",\"title\":\"accessibility(sortPriority:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(sortPriority:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(sortpriority:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibility(value:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(value:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(value:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(value:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(value:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility5valueAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityValue(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityValue(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityValue(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityValue(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(value:)\":{\"role\":\"symbol\",\"title\":\"accessibility(value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(value:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityaction(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"actionKind\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityActionKind\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityActionKindV\"},{\"kind\":\"text\",\"text\":\" = .default, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityActionKind\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityActionKindV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityActionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0hE4KindV_yyctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAction(_:_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityActionKind\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityActionKindV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityaction(action:label:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(action:label:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(action:label:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(action:label:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(action:label:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityAction6action5labelQryyc_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAction(action:label:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(action:label:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(action:label:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(action:label:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityaction(named:_:)-5vajk.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(named:_:)-5vajk\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(named:_:)-5vajk\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(named:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityAction5named_AA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_yyctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAction(named:_:)-5vajk\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(named:_:)-5vajk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(named:_:)-5vajk\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityaction(named:_:)-7cvr0.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(named:_:)-7cvr0\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(named:_:)-7cvr0\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(named:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityAction5named_AA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd___yyctSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAction(named:_:)-7cvr0\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(named:_:)-7cvr0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(named:_:)-7cvr0\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityaction(named:_:)-7d1bz.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"nameKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(named:_:)-7d1bz\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(named:_:)-7d1bz\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(named:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityAction5named_AA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_yyctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAction(named:_:)-7d1bz\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(named:_:)-7d1bz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(named:_:)-7d1bz\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityactivationpoint(_:)-4i64i.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityactivationpoint(_:)-4i64i\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityActivationPoint(_:)-4i64i\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityActivationPoint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE28accessibilityActivationPointyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSo7CGPointVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityActivationPoint(_:)-4i64i\":{\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityActivationPoint(_:)-4i64i\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityactivationpoint(_:)-4i64i\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityactivationpoint(_:)-8rijn.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityactivationpoint(_:)-8rijn\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityActivationPoint(_:)-8rijn\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityActivationPoint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE28accessibilityActivationPointyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA04UnitF0VF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityActivationPoint(_:)-8rijn\":{\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityActivationPoint(_:)-8rijn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityactivationpoint(_:)-8rijn\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityaddtraits(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAddTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"traits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaddtraits(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAddTraits(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAddTraits(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAddTraits(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAddTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE22accessibilityAddTraitsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0VF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAddTraits(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAddTraits(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAddTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAddTraits(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaddtraits(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityadjustableaction(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAdjustableAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAdjustmentDirection\",\"preciseIdentifier\":\"s:7SwiftUI32AccessibilityAdjustmentDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityadjustableaction(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAdjustableAction(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAdjustableAction(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAdjustableAction(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAdjustableAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAdjustmentDirection\",\"preciseIdentifier\":\"s:7SwiftUI32AccessibilityAdjustmentDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE29accessibilityAdjustableActionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGyAA0I19AdjustmentDirectionOcF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAdjustableAction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAdjustableAction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAdjustableAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAdjustmentDirection\",\"preciseIdentifier\":\"s:7SwiftUI32AccessibilityAdjustmentDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAdjustableAction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityadjustableaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitychartdescriptor(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChartDescriptor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"representable\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXChartDescriptorRepresentable\",\"preciseIdentifier\":\"s:7SwiftUI30AXChartDescriptorRepresentableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitychartdescriptor(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityChartDescriptor(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityChartDescriptor(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityChartDescriptor(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChartDescriptor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE28accessibilityChartDescriptoryQrqd__AA07AXChartF13RepresentableRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityChartDescriptor(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityChartDescriptor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChartDescriptor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityChartDescriptor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitychartdescriptor(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitychildren(children:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChildren\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitychildren(children:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityChildren(children:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityChildren(children:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityChildren(children:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChildren\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21accessibilityChildren8childrenQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityChildren(children:)\":{\"role\":\"symbol\",\"title\":\"accessibilityChildren(children:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChildren\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityChildren(children:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitychildren(children:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-1dnrk.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-1dnrk\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-1dnrk\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_qd__So08AXCustomF10ImportanceVtSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-1dnrk\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-1dnrk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-1dnrk\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-1ucuw.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-1ucuw\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-1ucuw\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0ieF3KeyV_qd__So08AXCustomF10ImportanceVtSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-1ucuw\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-1ucuw\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-1ucuw\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-2nazk.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-2nazk\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-2nazk\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_AA4TextVSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-2nazk\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-2nazk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-2nazk\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-3pllm.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-3pllm\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-3pllm\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0ieF3KeyV_AA4TextVSgSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-3pllm\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-3pllm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-3pllm\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-3pod7.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"valueKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-3pod7\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-3pod7\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0ieF3KeyV_AA015LocalizedStringL0VSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-3pod7\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-3pod7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-3pod7\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-4xdb3.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"valueKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-4xdb3\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-4xdb3\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_ALSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-4xdb3\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-4xdb3\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-4xdb3\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-5vxjo.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-5vxjo\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-5vxjo\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA4TextV_ALSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-5vxjo\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-5vxjo\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-5vxjo\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-qwm7.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-qwm7\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-qwm7\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGqd___qd_0_So08AXCustomF10ImportanceVtSyRd__SyRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Using non-localized strings for labels is not directly supported. Instead, wrap both the label and the value in a Text struct.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-qwm7\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-qwm7\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-qwm7\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityelement(children:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityElement\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityChildBehavior\",\"preciseIdentifier\":\"s:7SwiftUI26AccessibilityChildBehaviorV\"},{\"kind\":\"text\",\"text\":\" = .ignore) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityelement(children:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityElement(children:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityElement(children:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityElement(children:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityElement\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityChildBehavior\",\"preciseIdentifier\":\"s:7SwiftUI26AccessibilityChildBehaviorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20accessibilityElement8childrenQrAA26AccessibilityChildBehaviorV_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityElement(children:)\":{\"role\":\"symbol\",\"title\":\"accessibilityElement(children:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityElement\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityChildBehavior\",\"preciseIdentifier\":\"s:7SwiftUI26AccessibilityChildBehaviorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityElement(children:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityelement(children:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityfocused(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"condition\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityfocused(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityFocused(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityFocused(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20accessibilityFocusedyQrAA23AccessibilityFocusStateV7BindingVySb_GF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityFocused(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityFocused(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityfocused(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityfocused(_:equals:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"binding\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityfocused(_:equals:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityFocused(_:equals:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityFocused(_:equals:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:equals:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20accessibilityFocused_6equalsQrAA23AccessibilityFocusStateV7BindingVyqd___G_qd__tSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityFocused(_:equals:)\":{\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:equals:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityFocused(_:equals:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityfocused(_:equals:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityheading(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHeading\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"level\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityHeadingLevel\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityHeadingLevelO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityheading(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHeading(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHeading(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHeading(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHeading\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityHeadingLevel\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityHeadingLevelO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20accessibilityHeadingyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0hE5LevelOF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityHeading(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityHeading(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHeading\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityHeadingLevel\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityHeadingLevelO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHeading(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityheading(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityhidden(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHidden\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhidden(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHidden(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHidden(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHidden(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHidden\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityHiddenyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityHidden(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityHidden(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHidden\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHidden(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhidden(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityhint(_:)-1rrl0.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"hintKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhint(_:)-1rrl0\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHint(_:)-1rrl0\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17accessibilityHintyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityHint(_:)-1rrl0\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHint(_:)-1rrl0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhint(_:)-1rrl0\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityhint(_:)-5nt5z.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhint(_:)-5nt5z\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHint(_:)-5nt5z\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17accessibilityHintyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityHint(_:)-5nt5z\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHint(_:)-5nt5z\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhint(_:)-5nt5z\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityhint(_:)-v4ao.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhint(_:)-v4ao\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHint(_:)-v4ao\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17accessibilityHintyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityHint(_:)-v4ao\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHint(_:)-v4ao\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhint(_:)-v4ao\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityidentifier(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIdentifier\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityidentifier(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityIdentifier(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityIdentifier(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityIdentifier(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIdentifier\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE23accessibilityIdentifieryAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSSF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityIdentifier(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityIdentifier(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIdentifier\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityIdentifier(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityidentifier(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityignoresinvertcolors(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIgnoresInvertColors\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"active\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityignoresinvertcolors(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityIgnoresInvertColors(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityIgnoresInvertColors(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityIgnoresInvertColors(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIgnoresInvertColors\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE32accessibilityIgnoresInvertColorsyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityIgnoresInvertColors(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityIgnoresInvertColors(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIgnoresInvertColors\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityIgnoresInvertColors(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityignoresinvertcolors(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityinputlabels(_:)-3x55a.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityinputlabels(_:)-3x55a\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityInputLabels(_:)-3x55a\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityInputLabels(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityInputLabelsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayAA4TextVGF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityInputLabels(_:)-3x55a\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityInputLabels(_:)-3x55a\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityinputlabels(_:)-3x55a\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityinputlabels(_:)-6n0d7.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"inputLabelKeys\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityinputlabels(_:)-6n0d7\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityInputLabels(_:)-6n0d7\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityInputLabels(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityInputLabelsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayAA18LocalizedStringKeyVGF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityInputLabels(_:)-6n0d7\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityInputLabels(_:)-6n0d7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityinputlabels(_:)-6n0d7\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityinputlabels(_:)-8jm4t.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityinputlabels(_:)-8jm4t\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityInputLabels(_:)-8jm4t\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityInputLabels(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">([\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityInputLabelsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayqd__GSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityInputLabels(_:)-8jm4t\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">([\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityInputLabels(_:)-8jm4t\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityinputlabels(_:)-8jm4t\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitylabel(_:)-3ly3t.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabel(_:)-3ly3t\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabel(_:)-3ly3t\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityLabelyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityLabel(_:)-3ly3t\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabel(_:)-3ly3t\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabel(_:)-3ly3t\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitylabel(_:)-4h91y.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabel(_:)-4h91y\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabel(_:)-4h91y\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityLabelyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityLabel(_:)-4h91y\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabel(_:)-4h91y\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabel(_:)-4h91y\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitylabel(_:)-6a6no.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabel(_:)-6a6no\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabel(_:)-6a6no\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityLabelyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityLabel(_:)-6a6no\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabel(_:)-6a6no\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabel(_:)-6a6no\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitylabeledpair(role:id:in:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabeledPair\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"role\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityLabeledPairRole\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityLabeledPairRoleO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabeledpair(role:id:in:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabeledPair(role:id:in:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLabeledPair(role:id:in:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLabeledPair(role:id:in:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabeledPair\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"role\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityLabeledPairRole\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityLabeledPairRoleO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityLabeledPair4role2id2inQrAA013AccessibilityeF4RoleO_qd__AA9NamespaceV2IDVtSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityLabeledPair(role:id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityLabeledPair(role:id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabeledPair\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"role\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityLabeledPairRole\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityLabeledPairRoleO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabeledPair(role:id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabeledpair(role:id:in:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitylinkedgroup(id:in:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLinkedGroup\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylinkedgroup(id:in:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLinkedGroup(id:in:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLinkedGroup(id:in:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLinkedGroup(id:in:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLinkedGroup\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityLinkedGroup2id2inQrqd___AA9NamespaceV2IDVtSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityLinkedGroup(id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityLinkedGroup(id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLinkedGroup\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLinkedGroup(id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylinkedgroup(id:in:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityremovetraits(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRemoveTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"traits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityremovetraits(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRemoveTraits(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRemoveTraits(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRemoveTraits(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRemoveTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25accessibilityRemoveTraitsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0VF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRemoveTraits(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRemoveTraits(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRemoveTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRemoveTraits(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityremovetraits(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrepresentation(representation:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRepresentation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"representation\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrepresentation(representation:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRepresentation(representation:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRepresentation(representation:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRepresentation(representation:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRepresentation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"representation\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE27accessibilityRepresentation14representationQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRepresentation(representation:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRepresentation(representation:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRepresentation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"representation\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRepresentation(representation:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrepresentation(representation:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrespondstouserinteraction(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRespondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"respondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrespondstouserinteraction(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRespondsToUserInteraction(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRespondsToUserInteraction(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRespondsToUserInteraction(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRespondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE38accessibilityRespondsToUserInteractionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRespondsToUserInteraction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRespondsToUserInteraction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRespondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRespondsToUserInteraction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrespondstouserinteraction(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:)-1orax.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityRotorContent\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityRotorContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-1orax\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-1orax\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrqd___qd_0_yctSyRd__AA013AccessibilityE7ContentRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:)-1orax\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-1orax\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-1orax\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:)-2p5bh.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityRotorContent\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityRotorContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-2p5bh\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-2p5bh\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrAA4TextV_qd__yctAA013AccessibilityE7ContentRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:)-2p5bh\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-2p5bh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-2p5bh\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:)-5mxjh.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"systemRotor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityRotorContent\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityRotorContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-5mxjh\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-5mxjh\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrAA019AccessibilitySystemE0V_qd__yctAA0gE7ContentRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:)-5mxjh\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-5mxjh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-5mxjh\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:)-7dolw.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityRotorContent\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityRotorContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-7dolw\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-7dolw\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrAA18LocalizedStringKeyV_qd__yctAA013AccessibilityE7ContentRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:)-7dolw\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-7dolw\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-7dolw\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entryid:entrylabel:)-10oqf.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-10oqf\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-10oqf\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryID:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrAA4TextV_Sayqd__Gs7KeyPathCyqd__qd_0_GALyqd__SSGtSHRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryID:entryLabel:)-10oqf\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-10oqf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-10oqf\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entryid:entrylabel:)-25d98.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-25d98\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-25d98\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryID:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrAA18LocalizedStringKeyV_Sayqd__Gs0L4PathCyqd__qd_0_GALyqd__SSGtSHRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryID:entryLabel:)-25d98\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-25d98\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-25d98\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entryid:entrylabel:)-51dnw.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"systemRotor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-51dnw\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-51dnw\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryID:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrAA019AccessibilitySystemE0V_Sayqd__Gs7KeyPathCyqd__qd_0_GALyqd__SSGtSHRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryID:entryLabel:)-51dnw\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-51dnw\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-51dnw\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entryid:entrylabel:)-6jn71.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-6jn71\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-6jn71\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryID:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrqd___Sayqd_0_Gs7KeyPathCyqd_0_qd_1_GAJyqd_0_SSGtSyRd__SHRd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryID:entryLabel:)-6jn71\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-6jn71\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-6jn71\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entrylabel:)-3f3j9.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-3f3j9\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-3f3j9\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrAA18LocalizedStringKeyV_Sayqd__Gs0K4PathCyqd__SSGts12IdentifiableRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryLabel:)-3f3j9\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-3f3j9\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-3f3j9\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entrylabel:)-3lh2p.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-3lh2p\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-3lh2p\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrqd___Sayqd_0_Gs7KeyPathCyqd_0_SSGtSyRd__s12IdentifiableRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryLabel:)-3lh2p\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-3lh2p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-3lh2p\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entrylabel:)-6wf02.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"systemRotor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-6wf02\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-6wf02\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrAA019AccessibilitySystemE0V_Sayqd__Gs7KeyPathCyqd__SSGts12IdentifiableRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryLabel:)-6wf02\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-6wf02\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-6wf02\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entrylabel:)-7t24j.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-7t24j\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-7t24j\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrAA4TextV_Sayqd__Gs7KeyPathCyqd__SSGts12IdentifiableRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryLabel:)-7t24j\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-7t24j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-7t24j\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:textranges:)-6nczq.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"systemRotor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-6nczq\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-6nczq\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:textRanges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrAA019AccessibilitySystemE0V_SaySnySS5IndexVGGtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:textRanges:)-6nczq\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-6nczq\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-6nczq\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:textranges:)-8d4es.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-8d4es\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-8d4es\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:textRanges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrAA4TextV_SaySnySS5IndexVGGtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:textRanges:)-8d4es\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-8d4es\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-8d4es\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:textranges:)-8l6zm.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-8l6zm\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-8l6zm\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:textRanges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrAA18LocalizedStringKeyV_SaySnySS5IndexVGGtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:textRanges:)-8l6zm\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-8l6zm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-8l6zm\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotor(_:textranges:)-964n8.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-964n8\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-964n8\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:textRanges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrqd___SaySnySS5IndexVGGtSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:textRanges:)-964n8\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-964n8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-964n8\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityrotorentry(id:in:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotorEntry\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotorentry(id:in:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotorEntry(id:in:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotorEntry(id:in:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotorEntry(id:in:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotorEntry\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE23accessibilityRotorEntry2id2inQrqd___AA9NamespaceV2IDVtSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotorEntry(id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRotorEntry(id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotorEntry\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotorEntry(id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotorentry(id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityscrollaction(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityScrollAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityscrollaction(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityScrollAction(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityScrollAction(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityScrollAction(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityScrollAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25accessibilityScrollActionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGyAA4EdgeOcF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityScrollAction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityScrollAction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityScrollAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityScrollAction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityscrollaction(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityshowslargecontentviewer().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityshowslargecontentviewer()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityShowsLargeContentViewer()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityShowsLargeContentViewer()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE36accessibilityShowsLargeContentViewerQryF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityShowsLargeContentViewer()\":{\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityShowsLargeContentViewer()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityshowslargecontentviewer()\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityshowslargecontentviewer(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"largeContentView\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityshowslargecontentviewer(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityShowsLargeContentViewer(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityShowsLargeContentViewer(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE36accessibilityShowsLargeContentVieweryQrqd__yXEAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityShowsLargeContentViewer(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityShowsLargeContentViewer(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityshowslargecontentviewer(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitysortpriority(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilitySortPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitysortpriority(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilitySortPriority(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilitySortPriority(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilitySortPriority(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilitySortPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25accessibilitySortPriorityyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSdF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilitySortPriority(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilitySortPriority(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilitySortPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilitySortPriority(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitysortpriority(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilitytextcontenttype(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityTextContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTextContentType\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityTextContentTypeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitytextcontenttype(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityTextContentType(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityTextContentType(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityTextContentType(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityTextContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTextContentType\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityTextContentTypeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE28accessibilityTextContentTypeyAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0iefG0VF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityTextContentType(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityTextContentType(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityTextContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTextContentType\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityTextContentTypeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityTextContentType(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitytextcontenttype(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityvalue(_:)-3kff4.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityvalue(_:)-3kff4\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityValue(_:)-3kff4\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityValue(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityValueyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityValue(_:)-3kff4\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityValue(_:)-3kff4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityvalue(_:)-3kff4\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityvalue(_:)-7dd6l.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"valueKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityvalue(_:)-7dd6l\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityValue(_:)-7dd6l\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityValue(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityValueyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityValue(_:)-7dd6l\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityValue(_:)-7dd6l\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityvalue(_:)-7dd6l\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/accessibilityvalue(_:)-7tnqf.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"valueDescription\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityvalue(_:)-7tnqf\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityValue(_:)-7tnqf\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityValue(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityValueyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityValue(_:)-7tnqf\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityValue(_:)-7tnqf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityvalue(_:)-7tnqf\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(_:ispresented:actions:)-2i24c.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:)-2i24c\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:)-2i24c\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:actions:)-2i24c\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:)-2i24c\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:)-2i24c\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(_:ispresented:actions:)-6i5wg.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:)-6i5wg\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:)-6i5wg\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actionsQrqd___AA7BindingVySbGqd_0_yXEtSyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:actions:)-6i5wg\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:)-6i5wg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:)-6i5wg\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(_:ispresented:actions:)-6mdoc.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:)-6mdoc\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:)-6mdoc\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actionsQrAA4TextV_AA7BindingVySbGqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:actions:)-6mdoc\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:)-6mdoc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:)-6mdoc\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(_:ispresented:actions:message:)-5j65x.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:message:)-5j65x\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:message:)-5j65x\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actions7messageQrqd___AA7BindingVySbGqd_0_yXEqd_1_yXEtSyRd__AaBRd_0_AaBRd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:actions:message:)-5j65x\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:message:)-5j65x\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:message:)-5j65x\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(_:ispresented:actions:message:)-6iohl.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:message:)-6iohl\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:message:)-6iohl\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:actions:message:)-6iohl\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:message:)-6iohl\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:message:)-6iohl\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(_:ispresented:actions:message:)-8x9o0.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:message:)-8x9o0\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:message:)-8x9o0\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actions7messageQrAA4TextV_AA7BindingVySbGqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:actions:message:)-8x9o0\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:message:)-8x9o0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:message:)-8x9o0\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(_:ispresented:presenting:actions:)-43fim.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:)-43fim\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:)-43fim\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actionsQrAA4TextV_AA7BindingVySbGqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:presenting:actions:)-43fim\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:)-43fim\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:)-43fim\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(_:ispresented:presenting:actions:)-6dwv5.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:)-6dwv5\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:)-6dwv5\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actionsQrqd___AA7BindingVySbGqd_1_Sgqd_0_qd_1_XEtSyRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:presenting:actions:)-6dwv5\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:)-6dwv5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:)-6dwv5\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(_:ispresented:presenting:actions:)-77clm.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:)-77clm\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:)-77clm\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:presenting:actions:)-77clm\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:)-77clm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:)-77clm\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(_:ispresented:presenting:actions:message:)-7p8yz.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:message:)-7p8yz\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:message:)-7p8yz\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:presenting:actions:message:)-7p8yz\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:message:)-7p8yz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:message:)-7p8yz\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(_:ispresented:presenting:actions:message:)-7ptxx.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:message:)-7ptxx\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:message:)-7ptxx\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actions7messageQrqd___AA7BindingVySbGqd_2_Sgqd_0_qd_2_XEqd_1_qd_2_XEtSyRd__AaBRd_0_AaBRd_1_r2_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:presenting:actions:message:)-7ptxx\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:message:)-7ptxx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:message:)-7ptxx\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(_:ispresented:presenting:actions:message:)-88es2.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:message:)-88es2\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:message:)-88es2\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actions7messageQrAA4TextV_AA7BindingVySbGqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:presenting:actions:message:)-88es2\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:message:)-88es2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:message:)-88es2\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(ispresented:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(ispresented:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(isPresented:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(isPresented:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(isPresented:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert11isPresented7contentQrAA7BindingVySbG_AA5AlertVyXEtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"use `alert(title:isPresented:presenting::actions:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(isPresented:content:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(isPresented:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(ispresented:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(ispresented:error:actions:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedError\",\"preciseIdentifier\":\"s:10Foundation14LocalizedErrorP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(ispresented:error:actions:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(isPresented:error:actions:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(isPresented:error:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert11isPresented5error7actionsQrAA7BindingVySbG_qd__Sgqd_0_yXEt10Foundation14LocalizedErrorRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(isPresented:error:actions:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(isPresented:error:actions:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(ispresented:error:actions:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(ispresented:error:actions:message:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedError\",\"preciseIdentifier\":\"s:10Foundation14LocalizedErrorP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(ispresented:error:actions:message:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(isPresented:error:actions:message:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(isPresented:error:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert11isPresented5error7actions7messageQrAA7BindingVySbG_qd__Sgqd_0_qd__XEqd_1_qd__XEt10Foundation14LocalizedErrorRd__AaBRd_0_AaBRd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(isPresented:error:actions:message:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(isPresented:error:actions:message:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(ispresented:error:actions:message:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alert(item:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(item:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(item:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(item:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(item:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert4item7contentQrAA7BindingVyqd__SgG_AA5AlertVqd__XEts12IdentifiableRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"use `alert(title:isPresented:presenting::actions:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(item:content:)\":{\"role\":\"symbol\",\"title\":\"alert(item:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(item:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(item:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alignmentguide(_:computevalue:)-5dc06.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"g\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alignmentguide(_:computevalue:)-5dc06\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alignmentGuide(_:computeValue:)-5dc06\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alignmentGuide(_:computeValue:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14alignmentGuide_12computeValueQrAA19HorizontalAlignmentV_12CoreGraphics7CGFloatVAA0C10DimensionsVctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alignmentGuide(_:computeValue:)-5dc06\":{\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alignmentGuide(_:computeValue:)-5dc06\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alignmentguide(_:computevalue:)-5dc06\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/alignmentguide(_:computevalue:)-98bnf.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"g\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/alignmentguide(_:computevalue:)-98bnf\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alignmentGuide(_:computeValue:)-98bnf\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alignmentGuide(_:computeValue:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14alignmentGuide_12computeValueQrAA17VerticalAlignmentV_12CoreGraphics7CGFloatVAA0C10DimensionsVctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alignmentGuide(_:computeValue:)-98bnf\":{\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alignmentGuide(_:computeValue:)-98bnf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alignmentguide(_:computevalue:)-98bnf\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/allowshittesting(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsHitTesting\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"enabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/allowshittesting(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/allowsHitTesting(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.allowsHitTesting(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"allowsHitTesting(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsHitTesting\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16allowsHitTestingyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/allowsHitTesting(_:)\":{\"role\":\"symbol\",\"title\":\"allowsHitTesting(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsHitTesting\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/allowsHitTesting(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/allowshittesting(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/allowstightening(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsTightening\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"flag\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/allowstightening(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/allowsTightening(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.allowsTightening(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"allowsTightening(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsTightening\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16allowsTighteningyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/allowsTightening(_:)\":{\"role\":\"symbol\",\"title\":\"allowsTightening(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsTightening\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/allowsTightening(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/allowstightening(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/anchorpreference(key:value:transform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"anchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/anchorpreference(key:value:transform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/anchorPreference(key:value:transform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.anchorPreference(key:value:transform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"anchorPreference(key:value:transform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"anchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16anchorPreference3key5value9transformQrqd_0_m_AA6AnchorV6SourceVyqd___G5ValueQyd_0_AIyqd__GctAA0E3KeyRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/anchorPreference(key:value:transform:)\":{\"role\":\"symbol\",\"title\":\"anchorPreference(key:value:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"anchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/anchorPreference(key:value:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/anchorpreference(key:value:transform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/animation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/animation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/animation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.animation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"animation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9animationyQrAA9AnimationVSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"15.0\",\"message\":\"Use withAnimation or animation(_:value:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"12.0\",\"message\":\"Use withAnimation or animation(_:value:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"15.0\",\"message\":\"Use withAnimation or animation(_:value:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"8.0\",\"message\":\"Use withAnimation or animation(_:value:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use withAnimation or animation(_:value:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/animation(_:)\":{\"role\":\"symbol\",\"title\":\"animation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/animation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/animation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/animation(_:value:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Equatable\",\"preciseIdentifier\":\"s:SQ\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/animation(_:value:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/animation(_:value:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.animation(_:value:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"animation(_:value:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9animation_5valueQrAA9AnimationVSg_qd__tSQRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/animation(_:value:)\":{\"role\":\"symbol\",\"title\":\"animation(_:value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/animation(_:value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/animation(_:value:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/aspectratio(_:contentmode:)-7qpsf.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/aspectratio(_:contentmode:)-7qpsf\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/aspectRatio(_:contentMode:)-7qpsf\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.aspectRatio(_:contentMode:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11aspectRatio_11contentModeQr12CoreGraphics7CGFloatVSg_AA07ContentG0OtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/aspectRatio(_:contentMode:)-7qpsf\":{\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/aspectRatio(_:contentMode:)-7qpsf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/aspectratio(_:contentmode:)-7qpsf\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/aspectratio(_:contentmode:)-98csp.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/aspectratio(_:contentmode:)-98csp\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/aspectRatio(_:contentMode:)-98csp\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.aspectRatio(_:contentMode:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11aspectRatio_11contentModeQrSo6CGSizeV_AA07ContentG0OtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/aspectRatio(_:contentMode:)-98csp\":{\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/aspectRatio(_:contentMode:)-98csp\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/aspectratio(_:contentmode:)-98csp\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/background(_:alignment:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:alignment:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:alignment:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(_:alignment:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(_:alignment:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background_9alignmentQrqd___AA9AlignmentVtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `background(alignment:content:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `background(alignment:content:)` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `background(alignment:content:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `background(alignment:content:)` instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use `background(alignment:content:)` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(_:alignment:)\":{\"role\":\"symbol\",\"title\":\"background(_:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/background(_:ignoressafeareaedges:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:ignoressafeareaedges:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:ignoresSafeAreaEdges:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(_:ignoresSafeAreaEdges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(_:ignoresSafeAreaEdges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background_20ignoresSafeAreaEdgesQrqd___AA4EdgeO3SetVtAA10ShapeStyleRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(_:ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"background(_:ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/background(_:in:fillstyle:)-16mk7.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:in:fillstyle:)-16mk7\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:in:fillStyle:)-16mk7\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(_:in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background_2in9fillStyleQrqd___qd_0_AA04FillG0VtAA05ShapeG0Rd__AA0I0Rd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(_:in:fillStyle:)-16mk7\":{\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:in:fillStyle:)-16mk7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:in:fillstyle:)-16mk7\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/background(_:in:fillstyle:)-3xtjy.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"InsettableShape\",\"preciseIdentifier\":\"s:7SwiftUI15InsettableShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:in:fillstyle:)-3xtjy\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:in:fillStyle:)-3xtjy\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(_:in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background_2in9fillStyleQrqd___qd_0_AA04FillG0VtAA05ShapeG0Rd__AA010InsettableI0Rd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(_:in:fillStyle:)-3xtjy\":{\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:in:fillStyle:)-3xtjy\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:in:fillstyle:)-3xtjy\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/background(alignment:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(alignment:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(alignment:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(alignment:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(alignment:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background9alignment7contentQrAA9AlignmentV_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(alignment:content:)\":{\"role\":\"symbol\",\"title\":\"background(alignment:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(alignment:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(alignment:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/background(ignoressafeareaedges:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(ignoressafeareaedges:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(ignoresSafeAreaEdges:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(ignoresSafeAreaEdges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(ignoresSafeAreaEdges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background20ignoresSafeAreaEdgesQrAA4EdgeO3SetV_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"background(ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/background(in:fillstyle:)-22zkr.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"InsettableShape\",\"preciseIdentifier\":\"s:7SwiftUI15InsettableShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(in:fillstyle:)-22zkr\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(in:fillStyle:)-22zkr\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background2in9fillStyleQrqd___AA04FillG0VtAA15InsettableShapeRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(in:fillStyle:)-22zkr\":{\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(in:fillStyle:)-22zkr\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(in:fillstyle:)-22zkr\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/background(in:fillstyle:)-pkki.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(in:fillstyle:)-pkki\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(in:fillStyle:)-pkki\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background2in9fillStyleQrqd___AA04FillG0VtAA5ShapeRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(in:fillStyle:)-pkki\":{\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(in:fillStyle:)-pkki\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(in:fillstyle:)-pkki\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/backgroundpreferencevalue(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"backgroundPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type = Key.self, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/backgroundpreferencevalue(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/backgroundPreferenceValue(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.backgroundPreferenceValue(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"backgroundPreferenceValue(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"backgroundPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25backgroundPreferenceValueyQrqd__m_qd_0_0F0Qyd__ctAA0E3KeyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/backgroundPreferenceValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"backgroundPreferenceValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"backgroundPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/backgroundPreferenceValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/backgroundpreferencevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/badge(_:)-23vvh.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-23vvh\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-23vvh\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.badge(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"badge(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5badgeyQrSiF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/badge(_:)-23vvh\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-23vvh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-23vvh\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/badge(_:)-3b7a5.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-3b7a5\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-3b7a5\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.badge(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"badge(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5badgeyQrAA18LocalizedStringKeyVSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/badge(_:)-3b7a5\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-3b7a5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-3b7a5\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/badge(_:)-4eyh0.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-4eyh0\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-4eyh0\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.badge(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"badge(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5badgeyQrqd__SgSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/badge(_:)-4eyh0\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-4eyh0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-4eyh0\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/badge(_:)-5yfrj.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-5yfrj\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-5yfrj\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.badge(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"badge(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5badgeyQrAA4TextVSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/badge(_:)-5yfrj\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-5yfrj\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-5yfrj\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/blendmode(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"BlendMode\",\"preciseIdentifier\":\"s:7SwiftUI9BlendModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/blendmode(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/blendMode(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.blendMode(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"blendMode(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"BlendMode\",\"preciseIdentifier\":\"s:7SwiftUI9BlendModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9blendModeyQrAA05BlendE0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/blendMode(_:)\":{\"role\":\"symbol\",\"title\":\"blendMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"BlendMode\",\"preciseIdentifier\":\"s:7SwiftUI9BlendModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/blendMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/blendmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/blur(radius:opaque:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blur\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/blur(radius:opaque:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/blur(radius:opaque:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.blur(radius:opaque:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"blur(radius:opaque:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blur\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4blur6radius6opaqueQr12CoreGraphics7CGFloatV_SbtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/blur(radius:opaque:)\":{\"role\":\"symbol\",\"title\":\"blur(radius:opaque:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blur\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/blur(radius:opaque:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/blur(radius:opaque:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/body.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"var\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"body\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" { \"},{\"kind\":\"keyword\",\"text\":\"get\"},{\"kind\":\"text\",\"text\":\" }\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/body\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/body\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.body\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"var\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"body\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"title\":\"body\",\"roleHeading\":\"Instance Property\",\"role\":\"symbol\",\"symbolKind\":\"property\",\"externalID\":\"s:9ShuffleIt0A4DeckV4bodyQrvp\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/body\":{\"role\":\"symbol\",\"title\":\"body\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"var\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"body\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/body\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/body\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/border(_:width:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"border\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 1) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/border(_:width:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/border(_:width:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.border(_:width:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"border(_:width:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"border\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6border_5widthQrqd___12CoreGraphics7CGFloatVtAA10ShapeStyleRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/border(_:width:)\":{\"role\":\"symbol\",\"title\":\"border(_:width:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"border\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/border(_:width:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/border(_:width:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/brightness(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"brightness\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"amount\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/brightness(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/brightness(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.brightness(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"brightness(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"brightness\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10brightnessyQrSdF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/brightness(_:)\":{\"role\":\"symbol\",\"title\":\"brightness(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"brightness\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/brightness(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/brightness(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/buttonbordershape(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonBorderShape\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonBorderShape\",\"preciseIdentifier\":\"s:7SwiftUI17ButtonBorderShapeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/buttonbordershape(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/buttonBorderShape(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.buttonBorderShape(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"buttonBorderShape(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonBorderShape\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonBorderShape\",\"preciseIdentifier\":\"s:7SwiftUI17ButtonBorderShapeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17buttonBorderShapeyQrAA06ButtoneF0VF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/buttonBorderShape(_:)\":{\"role\":\"symbol\",\"title\":\"buttonBorderShape(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonBorderShape\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonBorderShape\",\"preciseIdentifier\":\"s:7SwiftUI17ButtonBorderShapeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/buttonBorderShape(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/buttonbordershape(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/buttonstyle(_:)-1hkio.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonStyle\",\"preciseIdentifier\":\"s:7SwiftUI11ButtonStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/buttonstyle(_:)-1hkio\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/buttonStyle(_:)-1hkio\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.buttonStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11buttonStyleyQrqd__AA06ButtonE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/buttonStyle(_:)-1hkio\":{\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/buttonStyle(_:)-1hkio\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/buttonstyle(_:)-1hkio\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/buttonstyle(_:)-1mobg.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PrimitiveButtonStyle\",\"preciseIdentifier\":\"s:7SwiftUI20PrimitiveButtonStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/buttonstyle(_:)-1mobg\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/buttonStyle(_:)-1mobg\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.buttonStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11buttonStyleyQrqd__AA015PrimitiveButtonE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/buttonStyle(_:)-1mobg\":{\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/buttonStyle(_:)-1mobg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/buttonstyle(_:)-1mobg\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/carouselanimation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselAnimationO\",\"text\":\"CarouselAnimation\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given carousel animation.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"animation\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle animation for carousel stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" comes with \"},{\"type\":\"codeVoice\",\"code\":\"linear\"},{\"type\":\"text\",\"text\":\" animation to animate scrolling behaviour. With \"},{\"type\":\"codeVoice\",\"code\":\"carouselAnimation(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can be overridden with the given animation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example shows the usage of overriding default carousel animation with \"},{\"type\":\"codeVoice\",\"code\":\"easeInOut\"},{\"type\":\"text\",\"text\":\" animation that will be used while shuffling.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselAnimation(.easeInOut)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselanimation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselAnimation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default carousel animation of the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselAnimation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE17carouselAnimationyQrAD08CarouselG0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"carouselAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default carousel animation of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/carouseldisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given boolean.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"disabled\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A boolean value to decide whether it should be disabled or not.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Based on the boolean passing into the modifier, the user interaction will be disabled accordingly. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"true\"},{\"type\":\"text\",\"text\":\", it will no longer turn on the interaction to UI. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"false\"},{\"type\":\"text\",\"text\":\", it allows to carousel content views.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following piece of code show how to disable the user interaction on the shuffle stack view.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselDisabled(false)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouseldisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to carousel content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"carouselDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE16carouselDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"carouselDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to carousel content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouseldisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/carouselpadding(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselPadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given padding.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"padding\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A padding value for a carousel stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" come with 20 pixels to add extra space between its frame and its content views. To be overriden, it can be done by passing the desired padding value through \"},{\"type\":\"codeVoice\",\"code\":\"carouselPadding(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"carouselPadding(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselPadding(15)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselpadding(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselPadding(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselPadding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselPadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE15carouselPaddingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselPadding(_:)\":{\"role\":\"symbol\",\"title\":\"carouselPadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselPadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselPadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselpadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/carouselscale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given scaling factor.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"scale\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A scaling factor to shrink or enlarge the size of content views.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" allows to scale up (set value above 1) and scale down (set value below 1) contents so that the desired ui can be achieved by passing the value through \"},{\"type\":\"codeVoice\",\"code\":\"carouselScale(_:)\"},{\"type\":\"text\",\"text\":\" modifier. By defaults, it comes with the value of 1.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"carouselScale(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselScale(1.2)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselscale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselScale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the contents right next to the current content of the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselScale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE13carouselScaleyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselScale(_:)\":{\"role\":\"symbol\",\"title\":\"carouselScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the contents right next to the current content of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselscale(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/carouselspacing(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given spacing.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"spacing\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A spacing value between the content views of the carousel stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To add spacing between carousel stack contents, it can be achieved by passing the value through \"},{\"type\":\"codeVoice\",\"code\":\"carouselSpacing(_:)\"},{\"type\":\"text\",\"text\":\" modifier. By default, it uses 10 pixels to make a gap between contents.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code sample shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"carouselSpacing(_:)\"},{\"type\":\"text\",\"text\":\" modifier by adding the space of 15 pixels to see a gap between stack contents.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselSpacing(15)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselspacing(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselSpacing(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value which is used to add some spacing between carousel stack contents.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselSpacing(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE15carouselSpacingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselSpacing(_:)\":{\"role\":\"symbol\",\"title\":\"carouselSpacing(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value which is used to add some spacing between carousel stack contents.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselSpacing(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselspacing(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/carouselstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"preciseIdentifier\":\"s:9ShuffleIt13CarouselStyleO\",\"text\":\"CarouselStyle\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given carousel style.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"style\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A carousel style for carousel stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" provides two different carousel styles - \"},{\"type\":\"codeVoice\",\"code\":\"finiteScroll\"},{\"type\":\"text\",\"text\":\" (default) and \"},{\"type\":\"codeVoice\",\"code\":\"infiniteScroll\"},{\"type\":\"text\",\"text\":\". To apply style as desired, it can be overridden with \"},{\"type\":\"codeVoice\",\"code\":\"carouselStyle(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet demonstrates how to override the carousel style to be able to scroll infinitely left and right.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselStyle(.infiniteScroll)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default carousel style of the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselStyle\",\"preciseIdentifier\":\"s:9ShuffleIt13CarouselStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE13carouselStyleyQrAD08CarouselG0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle\":{\"role\":\"symbol\",\"title\":\"CarouselStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselStyle(_:)\":{\"role\":\"symbol\",\"title\":\"carouselStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselStyle\",\"preciseIdentifier\":\"s:9ShuffleIt13CarouselStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default carousel style of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/carouseltrigger(on:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"publisher\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Publisher\",\"preciseIdentifier\":\"s:7Combine9PublisherP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Failure\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"Never\",\"preciseIdentifier\":\"s:s5NeverO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselDirectionO\",\"text\":\"CarouselDirection\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given publisher object.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"publisher\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A publisher object that fires \"},{\"type\":\"codeVoice\",\"code\":\"CarouselDirection\"},{\"type\":\"text\",\"text\":\" values.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"In purpose of programmatic sliding such as using timer, \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" accepts events via \"},{\"type\":\"codeVoice\",\"code\":\"carouselTrigger(on:)\"},{\"type\":\"text\",\"text\":\" modifier which is needed to inject an instance of publisher with \"},{\"type\":\"codeVoice\",\"code\":\"CarouselDirection\"},{\"type\":\"text\",\"text\":\" output type and \"},{\"type\":\"codeVoice\",\"code\":\"Never\"},{\"type\":\"text\",\"text\":\" failure type.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the programmatic approach of triggering slide event by sending \"},{\"type\":\"codeVoice\",\"code\":\"CarouselDirection\"},{\"type\":\"text\",\"text\":\" value through the publisher.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"let carouselPublisher = PassthroughSubject<CarouselDirection, Never>()\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselPublisher(on: carouselPublisher)\",\"}\",\"carouselPublisher.send(.left)\",\"carouselPublisher.send(.right)\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouseltrigger(on:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselTrigger(on:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic sliding.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselTrigger(on:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE15carouselTrigger2onQrqd___t7Combine9PublisherRd__s5NeverO7FailureRtd__AD17CarouselDirectionO6OutputRtd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"carouselTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouseltrigger(on:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/clipped(antialiased:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipped\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/clipped(antialiased:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/clipped(antialiased:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.clipped(antialiased:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"clipped(antialiased:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipped\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7clipped11antialiasedQrSb_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/clipped(antialiased:)\":{\"role\":\"symbol\",\"title\":\"clipped(antialiased:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipped\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/clipped(antialiased:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/clipped(antialiased:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/clipshape(_:style:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/clipshape(_:style:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/clipShape(_:style:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.clipShape(_:style:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"clipShape(_:style:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9clipShape_5styleQrqd___AA9FillStyleVtAA0E0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/clipShape(_:style:)\":{\"role\":\"symbol\",\"title\":\"clipShape(_:style:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/clipShape(_:style:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/clipshape(_:style:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/colorinvert().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorInvert\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/colorinvert()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/colorInvert()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.colorInvert()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"colorInvert()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorInvert\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11colorInvertQryF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/colorInvert()\":{\"role\":\"symbol\",\"title\":\"colorInvert()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorInvert\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/colorInvert()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/colorinvert()\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/colormultiply(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorMultiply\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/colormultiply(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/colorMultiply(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.colorMultiply(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"colorMultiply(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorMultiply\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13colorMultiplyyQrAA5ColorVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/colorMultiply(_:)\":{\"role\":\"symbol\",\"title\":\"colorMultiply(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorMultiply\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/colorMultiply(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/colormultiply(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/colorscheme(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/colorscheme(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/colorScheme(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.colorScheme(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"colorScheme(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11colorSchemeyQrAA05ColorE0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"preferredColorScheme(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"preferredColorScheme(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"preferredColorScheme(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"preferredColorScheme(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/colorScheme(_:)\":{\"role\":\"symbol\",\"title\":\"colorScheme(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/colorScheme(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/colorscheme(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/compositinggroup().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"compositingGroup\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/compositinggroup()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/compositingGroup()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.compositingGroup()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"compositingGroup()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"compositingGroup\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16compositingGroupQryF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/compositingGroup()\":{\"role\":\"symbol\",\"title\":\"compositingGroup()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"compositingGroup\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/compositingGroup()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/compositinggroup()\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:actions:)-7c2i9.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-7c2i9\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-7c2i9\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actionsQrqd___AA7BindingVySbGAA0I0Oqd_0_yXEtSyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:actions:)-7c2i9\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-7c2i9\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-7c2i9\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:actions:)-7p1mg.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-7p1mg\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-7p1mg\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actionsQrAA4TextV_AA7BindingVySbGAA0I0Oqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:actions:)-7p1mg\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-7p1mg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-7p1mg\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:actions:)-9t8f5.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-9t8f5\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-9t8f5\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:actions:)-9t8f5\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-9t8f5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-9t8f5\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-592a8.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-592a8\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-592a8\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-592a8\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-592a8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-592a8\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-6sq5i.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-6sq5i\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-6sq5i\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actions7messageQrqd___AA7BindingVySbGAA0I0Oqd_0_yXEqd_1_yXEtSyRd__AaBRd_0_AaBRd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-6sq5i\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-6sq5i\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-6sq5i\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-8ffij.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-8ffij\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-8ffij\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actions7messageQrAA4TextV_AA7BindingVySbGAA0I0Oqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-8ffij\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-8ffij\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-8ffij\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-455gp.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-455gp\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-455gp\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actionsQrqd___AA7BindingVySbGAA0I0Oqd_1_Sgqd_0_qd_1_XEtSyRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-455gp\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-455gp\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-455gp\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pvn4.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pvn4\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7pvn4\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actionsQrAA4TextV_AA7BindingVySbGAA0I0Oqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7pvn4\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7pvn4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pvn4\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-8fhv.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-8fhv\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-8fhv\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-8fhv\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-8fhv\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-8fhv\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4bg57.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4bg57\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-4bg57\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-4bg57\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-4bg57\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4bg57\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4pxpc.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4pxpc\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-4pxpc\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actions7messageQrqd___AA7BindingVySbGAA0I0Oqd_2_Sgqd_0_qd_2_XEqd_1_qd_2_XEtSyRd__AaBRd_0_AaBRd_1_r2_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-4pxpc\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-4pxpc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4pxpc\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-50r8e.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-50r8e\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-50r8e\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actions7messageQrAA4TextV_AA7BindingVySbGAA0I0Oqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-50r8e\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-50r8e\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-50r8e\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/containershape(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"containerShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"InsettableShape\",\"preciseIdentifier\":\"s:7SwiftUI15InsettableShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/containershape(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/containerShape(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.containerShape(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"containerShape(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"containerShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14containerShapeyQrqd__AA010InsettableE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/containerShape(_:)\":{\"role\":\"symbol\",\"title\":\"containerShape(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"containerShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/containerShape(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/containershape(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/contentshape(_:_:eofill:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"kind\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentShapeKinds\",\"preciseIdentifier\":\"s:7SwiftUI17ContentShapeKindsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/contentshape(_:_:eofill:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contentShape(_:_:eoFill:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contentShape(_:_:eoFill:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contentShape(_:_:eoFill:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentShapeKinds\",\"preciseIdentifier\":\"s:7SwiftUI17ContentShapeKindsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12contentShape__6eoFillQrAA07ContentE5KindsV_qd__SbtAA0E0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/contentShape(_:_:eoFill:)\":{\"role\":\"symbol\",\"title\":\"contentShape(_:_:eoFill:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentShapeKinds\",\"preciseIdentifier\":\"s:7SwiftUI17ContentShapeKindsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contentShape(_:_:eoFill:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contentshape(_:_:eofill:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/contentshape(_:eofill:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/contentshape(_:eofill:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contentShape(_:eoFill:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contentShape(_:eoFill:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contentShape(_:eoFill:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12contentShape_6eoFillQrqd___SbtAA0E0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/contentShape(_:eoFill:)\":{\"role\":\"symbol\",\"title\":\"contentShape(_:eoFill:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contentShape(_:eoFill:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contentshape(_:eofill:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/contextmenu(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContextMenu\",\"preciseIdentifier\":\"s:7SwiftUI11ContextMenuV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/contextmenu(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contextMenu(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contextMenu(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contextMenu(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContextMenu\",\"preciseIdentifier\":\"s:7SwiftUI11ContextMenuV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11contextMenuyQrAA07ContextE0Vyqd__GSgAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `contextMenu(menuItems:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `contextMenu(menuItems:)` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"deprecatedAt\":\"7.0\",\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use `contextMenu(menuItems:)` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/contextMenu(_:)\":{\"role\":\"symbol\",\"title\":\"contextMenu(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContextMenu\",\"preciseIdentifier\":\"s:7SwiftUI11ContextMenuV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contextMenu(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contextmenu(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/contextmenu(menuitems:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"menuItems\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/contextmenu(menuitems:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contextMenu(menuItems:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contextMenu(menuItems:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contextMenu(menuItems:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"menuItems\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11contextMenu9menuItemsQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"deprecatedAt\":\"7.0\",\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/contextMenu(menuItems:)\":{\"role\":\"symbol\",\"title\":\"contextMenu(menuItems:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"menuItems\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contextMenu(menuItems:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contextmenu(menuitems:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/contrast(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contrast\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"amount\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/contrast(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contrast(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contrast(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contrast(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contrast\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8contrastyQrSdF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/contrast(_:)\":{\"role\":\"symbol\",\"title\":\"contrast(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contrast\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contrast(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contrast(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/controlgroupstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlGroupStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlGroupStyle\",\"preciseIdentifier\":\"s:7SwiftUI17ControlGroupStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/controlgroupstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/controlGroupStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.controlGroupStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"controlGroupStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlGroupStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17controlGroupStyleyQrqd__AA07ControleF0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/controlGroupStyle(_:)\":{\"role\":\"symbol\",\"title\":\"controlGroupStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlGroupStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/controlGroupStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/controlgroupstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/controlsize(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlSize\",\"preciseIdentifier\":\"s:7SwiftUI11ControlSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/controlsize(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/controlSize(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.controlSize(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"controlSize(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlSize\",\"preciseIdentifier\":\"s:7SwiftUI11ControlSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11controlSizeyQrAA07ControlE0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/controlSize(_:)\":{\"role\":\"symbol\",\"title\":\"controlSize(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlSize\",\"preciseIdentifier\":\"s:7SwiftUI11ControlSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/controlSize(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/controlsize(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/coordinatespace(name:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"coordinateSpace\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/coordinatespace(name:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/coordinateSpace(name:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.coordinateSpace(name:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"coordinateSpace(name:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"coordinateSpace\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15coordinateSpace4nameQrqd___tSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/coordinateSpace(name:)\":{\"role\":\"symbol\",\"title\":\"coordinateSpace(name:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"coordinateSpace\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/coordinateSpace(name:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/coordinatespace(name:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/cornerradius(_:antialiased:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"cornerRadius\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/cornerradius(_:antialiased:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/cornerRadius(_:antialiased:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.cornerRadius(_:antialiased:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"cornerRadius(_:antialiased:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"cornerRadius\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12cornerRadius_11antialiasedQr12CoreGraphics7CGFloatV_SbtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/cornerRadius(_:antialiased:)\":{\"role\":\"symbol\",\"title\":\"cornerRadius(_:antialiased:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"cornerRadius\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/cornerRadius(_:antialiased:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/cornerradius(_:antialiased:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/datepickerstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"datePickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"DatePickerStyle\",\"preciseIdentifier\":\"s:7SwiftUI15DatePickerStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/datepickerstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/datePickerStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.datePickerStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"datePickerStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"datePickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15datePickerStyleyQrqd__AA04DateeF0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/datePickerStyle(_:)\":{\"role\":\"symbol\",\"title\":\"datePickerStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"datePickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/datePickerStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/datepickerstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/defaultappstorage(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"defaultAppStorage\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"store\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UserDefaults\",\"preciseIdentifier\":\"c:objc(cs)NSUserDefaults\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/defaultappstorage(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/defaultAppStorage(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.defaultAppStorage(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"defaultAppStorage(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"defaultAppStorage\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UserDefaults\",\"preciseIdentifier\":\"c:objc(cs)NSUserDefaults\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17defaultAppStorageyQrSo14NSUserDefaultsCF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/defaultAppStorage(_:)\":{\"role\":\"symbol\",\"title\":\"defaultAppStorage(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"defaultAppStorage\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UserDefaults\",\"preciseIdentifier\":\"c:objc(cs)NSUserDefaults\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/defaultAppStorage(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/defaultappstorage(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/deletedisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"deleteDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isDisabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/deletedisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/deleteDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.deleteDisabled(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"deleteDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"deleteDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14deleteDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/deleteDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"deleteDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"deleteDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/deleteDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/deletedisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/disableautocorrection(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disableAutocorrection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disable\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/disableautocorrection(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/disableAutocorrection(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.disableAutocorrection(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"disableAutocorrection(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disableAutocorrection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21disableAutocorrectionyQrSbSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/disableAutocorrection(_:)\":{\"role\":\"symbol\",\"title\":\"disableAutocorrection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disableAutocorrection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/disableAutocorrection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/disableautocorrection(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/disabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/disabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/disabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.disabled(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"disabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8disabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/disabled(_:)\":{\"role\":\"symbol\",\"title\":\"disabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/disabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/disabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/drawinggroup(opaque:colormode:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"drawingGroup\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false, \"},{\"kind\":\"externalParam\",\"text\":\"colorMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI18ColorRenderingModeO\"},{\"kind\":\"text\",\"text\":\" = .nonLinear) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/drawinggroup(opaque:colormode:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/drawingGroup(opaque:colorMode:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.drawingGroup(opaque:colorMode:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"drawingGroup(opaque:colorMode:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"drawingGroup\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"colorMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI18ColorRenderingModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12drawingGroup6opaque9colorModeQrSb_AA014ColorRenderingH0OtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/drawingGroup(opaque:colorMode:)\":{\"role\":\"symbol\",\"title\":\"drawingGroup(opaque:colorMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"drawingGroup\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"colorMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI18ColorRenderingModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/drawingGroup(opaque:colorMode:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/drawinggroup(opaque:colormode:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/dynamictypesize(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"dynamicTypeSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"size\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DynamicTypeSize\",\"preciseIdentifier\":\"s:7SwiftUI15DynamicTypeSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/dynamictypesize(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/dynamicTypeSize(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.dynamicTypeSize(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"dynamicTypeSize(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"dynamicTypeSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"DynamicTypeSize\",\"preciseIdentifier\":\"s:7SwiftUI15DynamicTypeSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15dynamicTypeSizeyQrAA07DynamiceF0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/dynamicTypeSize(_:)\":{\"role\":\"symbol\",\"title\":\"dynamicTypeSize(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"dynamicTypeSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"DynamicTypeSize\",\"preciseIdentifier\":\"s:7SwiftUI15DynamicTypeSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/dynamicTypeSize(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/dynamictypesize(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/edgesignoringsafearea(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"edgesIgnoringSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/edgesignoringsafearea(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/edgesIgnoringSafeArea(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.edgesIgnoringSafeArea(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"edgesIgnoringSafeArea(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"edgesIgnoringSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21edgesIgnoringSafeAreayQrAA4EdgeO3SetVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use ignoresSafeArea(_:edges:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use ignoresSafeArea(_:edges:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use ignoresSafeArea(_:edges:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use ignoresSafeArea(_:edges:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use ignoresSafeArea(_:edges:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/edgesIgnoringSafeArea(_:)\":{\"role\":\"symbol\",\"title\":\"edgesIgnoringSafeArea(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"edgesIgnoringSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/edgesIgnoringSafeArea(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/edgesignoringsafearea(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/environment(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"keyPath\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/environment(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/environment(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.environment(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"environment(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11environmentyQrs15WritableKeyPathCyAA17EnvironmentValuesVqd__G_qd__tlF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/environment(_:_:)\":{\"role\":\"symbol\",\"title\":\"environment(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/environment(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/environment(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/environmentobject(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environmentObject\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"object\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ObservableObject\",\"preciseIdentifier\":\"s:7Combine16ObservableObjectP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/environmentobject(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/environmentObject(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.environmentObject(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"environmentObject(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environmentObject\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17environmentObjectyQrqd__7Combine010ObservableE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/environmentObject(_:)\":{\"role\":\"symbol\",\"title\":\"environmentObject(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environmentObject\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/environmentObject(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/environmentobject(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/exportsitemproviders(_:onexport:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"contentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/exportsitemproviders(_:onexport:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/exportsItemProviders(_:onExport:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.exportsItemProviders(_:onExport:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20exportsItemProviders_8onExportQrSay22UniformTypeIdentifiers6UTTypeVG_SaySo14NSItemProviderCGyctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/exportsItemProviders(_:onExport:)\":{\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/exportsItemProviders(_:onExport:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/exportsitemproviders(_:onexport:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/exportsitemproviders(_:onexport:onedit:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"contentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onEdit\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/exportsitemproviders(_:onexport:onedit:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/exportsItemProviders(_:onExport:onEdit:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.exportsItemProviders(_:onExport:onEdit:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:onEdit:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onEdit\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20exportsItemProviders_8onExport0G4EditQrSay22UniformTypeIdentifiers6UTTypeVG_SaySo14NSItemProviderCGycSbAMctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/exportsItemProviders(_:onExport:onEdit:)\":{\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:onEdit:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onEdit\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/exportsItemProviders(_:onExport:onEdit:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/exportsitemproviders(_:onexport:onedit:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-54p9i.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"FileDocument\",\"preciseIdentifier\":\"s:7SwiftUI12FileDocumentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-54p9i\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-54p9i\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileExporter11isPresented8document11contentType15defaultFilename12onCompletionQrAA7BindingVySbG_qd__Sg07UniformJ11Identifiers6UTTypeVSSSgys6ResultOy10Foundation3URLVs5Error_pGctAA12FileDocumentRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-54p9i\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-54p9i\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-54p9i\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-z1af.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ReferenceFileDocument\",\"preciseIdentifier\":\"s:7SwiftUI21ReferenceFileDocumentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-z1af\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-z1af\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileExporter11isPresented8document11contentType15defaultFilename12onCompletionQrAA7BindingVySbG_qd__Sg07UniformJ11Identifiers6UTTypeVSSSgys6ResultOy10Foundation3URLVs5Error_pGctAA21ReferenceFileDocumentRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-z1af\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-z1af\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-z1af\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/fileexporter(ispresented:documents:contenttype:oncompletion:)-4ixib.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Collection\",\"preciseIdentifier\":\"s:Sl\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ReferenceFileDocument\",\"preciseIdentifier\":\"s:7SwiftUI21ReferenceFileDocumentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-4ixib\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:documents:contentType:onCompletion:)-4ixib\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileExporter(isPresented:documents:contentType:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileExporter11isPresented9documents11contentType12onCompletionQrAA7BindingVySbG_qd__07UniformJ11Identifiers6UTTypeVys6ResultOySay10Foundation3URLVGs5Error_pGctSlRd__AA21ReferenceFileDocument7ElementRpd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileExporter(isPresented:documents:contentType:onCompletion:)-4ixib\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:documents:contentType:onCompletion:)-4ixib\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-4ixib\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/fileexporter(ispresented:documents:contenttype:oncompletion:)-72o0w.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Collection\",\"preciseIdentifier\":\"s:Sl\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"FileDocument\",\"preciseIdentifier\":\"s:7SwiftUI12FileDocumentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-72o0w\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:documents:contentType:onCompletion:)-72o0w\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileExporter(isPresented:documents:contentType:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileExporter11isPresented9documents11contentType12onCompletionQrAA7BindingVySbG_qd__07UniformJ11Identifiers6UTTypeVys6ResultOySay10Foundation3URLVGs5Error_pGctSlRd__AA12FileDocument7ElementRpd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileExporter(isPresented:documents:contentType:onCompletion:)-72o0w\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:documents:contentType:onCompletion:)-72o0w\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-72o0w\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"allowsMultipleSelection\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"allowsMultipleSelection\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileImporter11isPresented19allowedContentTypes23allowsMultipleSelection12onCompletionQrAA7BindingVySbG_Say22UniformTypeIdentifiers6UTTypeVGSbys6ResultOySay10Foundation3URLVGs5Error_pGctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"allowsMultipleSelection\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/fileimporter(ispresented:allowedcontenttypes:oncompletion:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileImporter(isPresented:allowedContentTypes:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileImporter11isPresented19allowedContentTypes12onCompletionQrAA7BindingVySbG_Say22UniformTypeIdentifiers6UTTypeVGys6ResultOy10Foundation3URLVs5Error_pGctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileImporter(isPresented:allowedContentTypes:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/filemover(ispresented:file:oncompletion:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"file\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/filemover(ispresented:file:oncompletion:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileMover(isPresented:file:onCompletion:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileMover(isPresented:file:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileMover(isPresented:file:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"file\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9fileMover11isPresented0D012onCompletionQrAA7BindingVySbG_10Foundation3URLVSgys6ResultOyAMs5Error_pGctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileMover(isPresented:file:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileMover(isPresented:file:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"file\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileMover(isPresented:file:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/filemover(ispresented:file:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/filemover(ispresented:files:oncompletion:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"files\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Collection\",\"preciseIdentifier\":\"s:Sl\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/filemover(ispresented:files:oncompletion:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileMover(isPresented:files:onCompletion:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileMover(isPresented:files:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileMover(isPresented:files:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"files\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9fileMover11isPresented5files12onCompletionQrAA7BindingVySbG_qd__ys6ResultOySay10Foundation3URLVGs5Error_pGctSlRd__AO7ElementRtd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileMover(isPresented:files:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileMover(isPresented:files:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"files\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileMover(isPresented:files:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/filemover(ispresented:files:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/fixedsize().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/fixedsize()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fixedSize()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fixedSize()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fixedSize()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9fixedSizeQryF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fixedSize()\":{\"role\":\"symbol\",\"title\":\"fixedSize()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fixedSize()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fixedsize()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/fixedsize(horizontal:vertical:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"horizontal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"vertical\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/fixedsize(horizontal:vertical:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fixedSize(horizontal:vertical:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fixedSize(horizontal:vertical:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fixedSize(horizontal:vertical:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"horizontal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"vertical\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9fixedSize10horizontal8verticalQrSb_SbtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fixedSize(horizontal:vertical:)\":{\"role\":\"symbol\",\"title\":\"fixedSize(horizontal:vertical:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"horizontal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"vertical\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fixedSize(horizontal:vertical:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fixedsize(horizontal:vertical:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/flipsforrighttoleftlayoutdirection(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"flipsForRightToLeftLayoutDirection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"enabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/flipsforrighttoleftlayoutdirection(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/flipsForRightToLeftLayoutDirection(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.flipsForRightToLeftLayoutDirection(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"flipsForRightToLeftLayoutDirection(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"flipsForRightToLeftLayoutDirection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE34flipsForRightToLeftLayoutDirectionyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/flipsForRightToLeftLayoutDirection(_:)\":{\"role\":\"symbol\",\"title\":\"flipsForRightToLeftLayoutDirection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"flipsForRightToLeftLayoutDirection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/flipsForRightToLeftLayoutDirection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/flipsforrighttoleftlayoutdirection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/focusable(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isFocusable\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusable(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusable(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusable(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusable(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9focusableyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focusable(_:)\":{\"role\":\"symbol\",\"title\":\"focusable(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusable(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusable(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/focusable(_:onfocuschange:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isFocusable\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true, \"},{\"kind\":\"externalParam\",\"text\":\"onFocusChange\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\" = { _ in }) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusable(_:onfocuschange:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusable(_:onFocusChange:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusable(_:onFocusChange:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusable(_:onFocusChange:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onFocusChange\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9focusable_13onFocusChangeQrSb_ySbctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"12.0\",\"message\":\"Use FocusState<T> and View.focused(_:equals) for functionality previously provided by the onChange parameter.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"15.0\",\"message\":\"Use FocusState<T> and View.focused(_:equals) for functionality previously provided by the onChange parameter.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"8.0\",\"message\":\"Use FocusState<T> and View.focused(_:equals) for functionality previously provided by the onChange parameter.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use FocusState<T> and View.focused(_:equals) for functionality previously provided by the onChange parameter.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focusable(_:onFocusChange:)\":{\"role\":\"symbol\",\"title\":\"focusable(_:onFocusChange:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onFocusChange\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusable(_:onFocusChange:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusable(_:onfocuschange:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/focused(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"condition\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/focused(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focused(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focused(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focused(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7focusedyQrAA10FocusStateV7BindingVySb_GF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focused(_:)\":{\"role\":\"symbol\",\"title\":\"focused(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focused(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focused(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/focused(_:equals:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"binding\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/focused(_:equals:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focused(_:equals:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focused(_:equals:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focused(_:equals:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7focused_6equalsQrAA10FocusStateV7BindingVyqd___G_qd__tSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focused(_:equals:)\":{\"role\":\"symbol\",\"title\":\"focused(_:equals:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focused(_:equals:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focused(_:equals:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/focusedscenevalue(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedSceneValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"keyPath\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusedscenevalue(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusedSceneValue(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusedSceneValue(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusedSceneValue(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedSceneValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17focusedSceneValueyQrs15WritableKeyPathCyAA13FocusedValuesVqd__SgG_qd__tlF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focusedSceneValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"focusedSceneValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedSceneValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusedSceneValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusedscenevalue(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/focusedvalue(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"keyPath\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusedvalue(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusedValue(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusedValue(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusedValue(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12focusedValueyQrs15WritableKeyPathCyAA13FocusedValuesVqd__SgG_qd__tlF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focusedValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"focusedValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusedValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusedvalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/focusscope(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusscope(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusScope(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusScope(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusScope(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10focusScopeyQrAA9NamespaceV2IDVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focusScope(_:)\":{\"role\":\"symbol\",\"title\":\"focusScope(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusScope(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusscope(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/font(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Font\",\"preciseIdentifier\":\"s:7SwiftUI4FontV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/font(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/font(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.font(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"font(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Font\",\"preciseIdentifier\":\"s:7SwiftUI4FontV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4fontyQrAA4FontVSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/font(_:)\":{\"role\":\"symbol\",\"title\":\"font(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Font\",\"preciseIdentifier\":\"s:7SwiftUI4FontV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/font(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/font(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/foregroundcolor(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundcolor(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundColor(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.foregroundColor(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"foregroundColor(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15foregroundColoryQrAA0E0VSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/foregroundColor(_:)\":{\"role\":\"symbol\",\"title\":\"foregroundColor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundColor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundcolor(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/foregroundstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.foregroundStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"foregroundStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15foregroundStyleyQrqd__AA05ShapeE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/foregroundStyle(_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/foregroundstyle(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"primary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"secondary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundstyle(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundStyle(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.foregroundStyle(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15foregroundStyleyQrqd___qd_0_tAA05ShapeE0Rd__AaERd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/foregroundStyle(_:_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundStyle(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundstyle(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/foregroundstyle(_:_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"primary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"secondary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tertiary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundstyle(_:_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundStyle(_:_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.foregroundStyle(_:_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15foregroundStyleyQrqd___qd_0_qd_1_tAA05ShapeE0Rd__AaERd_0_AaERd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/foregroundStyle(_:_:_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundStyle(_:_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundstyle(_:_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/frame().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/frame()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/frame()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.frame()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"frame()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5frameQryF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Please pass one or more parameters.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/frame()\":{\"role\":\"symbol\",\"title\":\"frame()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/frame()\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/frame()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"idealWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"maxWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"minHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"idealHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"maxHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"minHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5frame8minWidth05idealF003maxF00E6Height0gI00hI09alignmentQr12CoreGraphics7CGFloatVSg_A5oA9AlignmentVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\":{\"role\":\"symbol\",\"title\":\"frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"minHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/frame(width:height:alignment:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"height\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/frame(width:height:alignment:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/frame(width:height:alignment:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.frame(width:height:alignment:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"frame(width:height:alignment:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"height\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5frame5width6height9alignmentQr12CoreGraphics7CGFloatVSg_AkA9AlignmentVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/frame(width:height:alignment:)\":{\"role\":\"symbol\",\"title\":\"frame(width:height:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"height\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/frame(width:height:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/frame(width:height:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/gesture(_:including:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Gesture\",\"preciseIdentifier\":\"s:7SwiftUI7GestureP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/gesture(_:including:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/gesture(_:including:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.gesture(_:including:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"gesture(_:including:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7gesture_9includingQrqd___AA11GestureMaskVtAA0F0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/gesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"gesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/gesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/gesture(_:including:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/grayscale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"grayscale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"amount\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/grayscale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/grayscale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.grayscale(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"grayscale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"grayscale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9grayscaleyQrSdF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/grayscale(_:)\":{\"role\":\"symbol\",\"title\":\"grayscale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"grayscale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/grayscale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/grayscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/groupboxstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"groupBoxStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"GroupBoxStyle\",\"preciseIdentifier\":\"s:7SwiftUI13GroupBoxStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/groupboxstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/groupBoxStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.groupBoxStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"groupBoxStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"groupBoxStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13groupBoxStyleyQrqd__AA05GroupeF0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/groupBoxStyle(_:)\":{\"role\":\"symbol\",\"title\":\"groupBoxStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"groupBoxStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/groupBoxStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/groupboxstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/handlesexternalevents(preferring:allowing:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"handlesExternalEvents\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"preferring\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/handlesexternalevents(preferring:allowing:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/handlesExternalEvents(preferring:allowing:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.handlesExternalEvents(preferring:allowing:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"handlesExternalEvents(preferring:allowing:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"handlesExternalEvents\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"preferring\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21handlesExternalEvents10preferring8allowingQrShySSG_AGtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/handlesExternalEvents(preferring:allowing:)\":{\"role\":\"symbol\",\"title\":\"handlesExternalEvents(preferring:allowing:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"handlesExternalEvents\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"preferring\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/handlesExternalEvents(preferring:allowing:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/handlesexternalevents(preferring:allowing:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/headerprominence(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"headerProminence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"prominence\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Prominence\",\"preciseIdentifier\":\"s:7SwiftUI10ProminenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/headerprominence(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/headerProminence(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.headerProminence(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"headerProminence(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"headerProminence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Prominence\",\"preciseIdentifier\":\"s:7SwiftUI10ProminenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16headerProminenceyQrAA0E0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/headerProminence(_:)\":{\"role\":\"symbol\",\"title\":\"headerProminence(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"headerProminence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Prominence\",\"preciseIdentifier\":\"s:7SwiftUI10ProminenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/headerProminence(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/headerprominence(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/help(_:)-4gfc1.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/help(_:)-4gfc1\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/help(_:)-4gfc1\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.help(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"help(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4helpyQrAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/help(_:)-4gfc1\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/help(_:)-4gfc1\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/help(_:)-4gfc1\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/help(_:)-57kg7.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"textKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/help(_:)-57kg7\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/help(_:)-57kg7\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.help(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"help(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4helpyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/help(_:)-57kg7\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/help(_:)-57kg7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/help(_:)-57kg7\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/help(_:)-5c7gg.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/help(_:)-5c7gg\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/help(_:)-5c7gg\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.help(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"help(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4helpyQrqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/help(_:)-5c7gg\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/help(_:)-5c7gg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/help(_:)-5c7gg\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/hidden().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/hidden()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/hidden()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.hidden()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"hidden()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6hiddenQryF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/hidden()\":{\"role\":\"symbol\",\"title\":\"hidden()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/hidden()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/hidden()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/highprioritygesture(_:including:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"highPriorityGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Gesture\",\"preciseIdentifier\":\"s:7SwiftUI7GestureP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/highprioritygesture(_:including:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/highPriorityGesture(_:including:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.highPriorityGesture(_:including:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"highPriorityGesture(_:including:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"highPriorityGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19highPriorityGesture_9includingQrqd___AA0F4MaskVtAA0F0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/highPriorityGesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"highPriorityGesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"highPriorityGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/highPriorityGesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/highprioritygesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/horizontalradiogrouplayout().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"horizontalRadioGroupLayout\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/horizontalradiogrouplayout()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/horizontalRadioGroupLayout()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.horizontalRadioGroupLayout()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"horizontalRadioGroupLayout()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"horizontalRadioGroupLayout\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26horizontalRadioGroupLayoutQryF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/horizontalRadioGroupLayout()\":{\"role\":\"symbol\",\"title\":\"horizontalRadioGroupLayout()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"horizontalRadioGroupLayout\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/horizontalRadioGroupLayout()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/horizontalradiogrouplayout()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/huerotation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hueRotation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"angle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/huerotation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/hueRotation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.hueRotation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"hueRotation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hueRotation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11hueRotationyQrAA5AngleVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/hueRotation(_:)\":{\"role\":\"symbol\",\"title\":\"hueRotation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hueRotation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/hueRotation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/huerotation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/id(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/id(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/id(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.id(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"id(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE2idyQrqd__SHRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/id(_:)\":{\"role\":\"symbol\",\"title\":\"id(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/id(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/id(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/ignoressafearea(_:edges:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ignoresSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"regions\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SafeAreaRegions\",\"preciseIdentifier\":\"s:7SwiftUI15SafeAreaRegionsV\"},{\"kind\":\"text\",\"text\":\" = .all, \"},{\"kind\":\"externalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/ignoressafearea(_:edges:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/ignoresSafeArea(_:edges:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.ignoresSafeArea(_:edges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"ignoresSafeArea(_:edges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ignoresSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SafeAreaRegions\",\"preciseIdentifier\":\"s:7SwiftUI15SafeAreaRegionsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15ignoresSafeArea_5edgesQrAA0eF7RegionsV_AA4EdgeO3SetVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/ignoresSafeArea(_:edges:)\":{\"role\":\"symbol\",\"title\":\"ignoresSafeArea(_:edges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ignoresSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SafeAreaRegions\",\"preciseIdentifier\":\"s:7SwiftUI15SafeAreaRegionsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/ignoresSafeArea(_:edges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ignoressafearea(_:edges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/imagescale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"imageScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Image\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Scale\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV5ScaleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/imagescale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/imageScale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.imageScale(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"imageScale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"imageScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Image\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Scale\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV5ScaleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10imageScaleyQrAA5ImageV0E0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/imageScale(_:)\":{\"role\":\"symbol\",\"title\":\"imageScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"imageScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Image\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Scale\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV5ScaleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/imageScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/imagescale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/importsitemproviders(_:onimport:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"importsItemProviders\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"contentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onImport\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/importsitemproviders(_:onimport:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/importsItemProviders(_:onImport:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.importsItemProviders(_:onImport:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"importsItemProviders(_:onImport:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"importsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onImport\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20importsItemProviders_8onImportQrSay22UniformTypeIdentifiers6UTTypeVG_SbSaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/importsItemProviders(_:onImport:)\":{\"role\":\"symbol\",\"title\":\"importsItemProviders(_:onImport:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"importsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onImport\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/importsItemProviders(_:onImport:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/importsitemproviders(_:onimport:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/init(_:initialindex:content:)-6ou47.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"data\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A collection of data that will be provided to content views through closure.\"}]}]},{\"name\":\"initialIndex\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"An initial index of data for which content view will be rendered first.\"}]}]},{\"name\":\"content\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view builder that dynamically renders content view based on current index and data provided.\"}]}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/init(_:initialindex:content:)-6ou47\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/init(_:initialIndex:content:)-6ou47\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"Content\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:content:)\",\"roleHeading\":\"Initializer\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"symbolKind\":\"init\",\"externalID\":\"s:9ShuffleIt0A4DeckV_12initialIndex7contentACyxq_Gx_0E0QzSgq_7ElementQzctcfc\",\"extendedModule\":\"ShuffleIt\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/init(_:initialIndex:content:)-6ou47\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"Content\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:content:)\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/init(_:initialIndex:content:)-6ou47\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/init(_:initialindex:content:)-6ou47\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/init(_:initialindex:content:)-9osfg.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"data\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A collection of data that will be provided to content views through closure.\"}]}]},{\"name\":\"initialIndex\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"An initial index of data for which content view will be rendered first.\"}]}]},{\"name\":\"content\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view builder that dynamically renders content view based on current index and data provided. It also exposes the translation value of how much view is been dragging while shuffling.\"}]}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/init(_:initialindex:content:)-9osfg\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/init(_:initialIndex:content:)-9osfg\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" and exposes translation value to child content through view builder.\"}],\"kind\":\"symbol\",\"metadata\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"Content\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:content:)\",\"roleHeading\":\"Initializer\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"symbolKind\":\"init\",\"externalID\":\"s:9ShuffleIt0A4DeckV_12initialIndex7contentACyxq_Gx_0E0QzSgq_7ElementQz_12CoreGraphics7CGFloatVtctcfc\",\"extendedModule\":\"ShuffleIt\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/init(_:initialIndex:content:)-9osfg\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"Content\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:content:)\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" and exposes translation value to child content through view builder.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/init(_:initialIndex:content:)-9osfg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/init(_:initialindex:content:)-9osfg\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/interactivedismissdisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"interactiveDismissDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isDisabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/interactivedismissdisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/interactiveDismissDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.interactiveDismissDisabled(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"interactiveDismissDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"interactiveDismissDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26interactiveDismissDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/interactiveDismissDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"interactiveDismissDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"interactiveDismissDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/interactiveDismissDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/interactivedismissdisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/itemprovider(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"itemProvider\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Optional\",\"preciseIdentifier\":\"s:Sq\"},{\"kind\":\"text\",\"text\":\"<() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"?>) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/itemprovider(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/itemProvider(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.itemProvider(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"itemProvider(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"itemProvider\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Optional\",\"preciseIdentifier\":\"s:Sq\"},{\"kind\":\"text\",\"text\":\"<() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"?>) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12itemProvideryQrSo06NSItemE0CSgycSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/itemProvider(_:)\":{\"role\":\"symbol\",\"title\":\"itemProvider(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"itemProvider\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Optional\",\"preciseIdentifier\":\"s:Sq\"},{\"kind\":\"text\",\"text\":\"<() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"?>) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/itemProvider(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/itemprovider(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/keyboardshortcut(_:)-8kg9p.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shortcut\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:)-8kg9p\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:)-8kg9p\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.keyboardShortcut(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16keyboardShortcutyQrAA08KeyboardE0VSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.4\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.3\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/keyboardShortcut(_:)-8kg9p\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:)-8kg9p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:)-8kg9p\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/keyboardshortcut(_:)-92las.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shortcut\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:)-92las\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:)-92las\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.keyboardShortcut(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16keyboardShortcutyQrAA08KeyboardE0VF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/keyboardShortcut(_:)-92las\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:)-92las\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:)-92las\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/keyboardshortcut(_:modifiers:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\" = .command) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:modifiers:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:modifiers:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.keyboardShortcut(_:modifiers:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16keyboardShortcut_9modifiersQrAA13KeyEquivalentV_AA14EventModifiersVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/keyboardShortcut(_:modifiers:)\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:modifiers:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:modifiers:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/keyboardshortcut(_:modifiers:localization:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\" = .command, \"},{\"kind\":\"externalParam\",\"text\":\"localization\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Localization\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV12LocalizationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:modifiers:localization:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:modifiers:localization:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.keyboardShortcut(_:modifiers:localization:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:localization:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"localization\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Localization\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV12LocalizationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16keyboardShortcut_9modifiers12localizationQrAA13KeyEquivalentV_AA14EventModifiersVAA08KeyboardE0V12LocalizationVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/keyboardShortcut(_:modifiers:localization:)\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:localization:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"localization\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Localization\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV12LocalizationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:modifiers:localization:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:modifiers:localization:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/labelshidden().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelsHidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/labelshidden()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/labelsHidden()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.labelsHidden()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"labelsHidden()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelsHidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12labelsHiddenQryF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/labelsHidden()\":{\"role\":\"symbol\",\"title\":\"labelsHidden()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelsHidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/labelsHidden()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/labelshidden()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/labelstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"LabelStyle\",\"preciseIdentifier\":\"s:7SwiftUI10LabelStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/labelstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/labelStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.labelStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"labelStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10labelStyleyQrqd__AA05LabelE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/labelStyle(_:)\":{\"role\":\"symbol\",\"title\":\"labelStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/labelStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/labelstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/layoutpriority(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"layoutPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/layoutpriority(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/layoutPriority(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.layoutPriority(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"layoutPriority(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"layoutPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14layoutPriorityyQrSdF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/layoutPriority(_:)\":{\"role\":\"symbol\",\"title\":\"layoutPriority(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"layoutPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/layoutPriority(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/layoutpriority(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/linelimit(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineLimit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"number\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/linelimit(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/lineLimit(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.lineLimit(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"lineLimit(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineLimit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9lineLimityQrSiSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/lineLimit(_:)\":{\"role\":\"symbol\",\"title\":\"lineLimit(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineLimit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/lineLimit(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/linelimit(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/linespacing(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/linespacing(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/lineSpacing(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.lineSpacing(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"lineSpacing(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11lineSpacingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/lineSpacing(_:)\":{\"role\":\"symbol\",\"title\":\"lineSpacing(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/lineSpacing(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/linespacing(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/listitemtint(_:)-4okc6.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/listitemtint(_:)-4okc6\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listItemTint(_:)-4okc6\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listItemTint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12listItemTintyQrAA5ColorVSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/listItemTint(_:)-4okc6\":{\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listItemTint(_:)-4okc6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/listitemtint(_:)-4okc6\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/listitemtint(_:)-8uys6.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ListItemTint\",\"preciseIdentifier\":\"s:7SwiftUI12ListItemTintV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/listitemtint(_:)-8uys6\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listItemTint(_:)-8uys6\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listItemTint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ListItemTint\",\"preciseIdentifier\":\"s:7SwiftUI12ListItemTintV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12listItemTintyQrAA04ListeF0VSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/listItemTint(_:)-8uys6\":{\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ListItemTint\",\"preciseIdentifier\":\"s:7SwiftUI12ListItemTintV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listItemTint(_:)-8uys6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/listitemtint(_:)-8uys6\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/listrowbackground(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowBackground\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"view\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/listrowbackground(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listRowBackground(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listRowBackground(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listRowBackground(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowBackground\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17listRowBackgroundyQrqd__SgAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/listRowBackground(_:)\":{\"role\":\"symbol\",\"title\":\"listRowBackground(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowBackground\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listRowBackground(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/listrowbackground(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/listrowinsets(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowInsets\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"insets\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/listrowinsets(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listRowInsets(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listRowInsets(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listRowInsets(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowInsets\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13listRowInsetsyQrAA04EdgeF0VSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/listRowInsets(_:)\":{\"role\":\"symbol\",\"title\":\"listRowInsets(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowInsets\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listRowInsets(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/listrowinsets(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/liststyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ListStyle\",\"preciseIdentifier\":\"s:7SwiftUI9ListStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/liststyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9listStyleyQrqd__AA04ListE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/listStyle(_:)\":{\"role\":\"symbol\",\"title\":\"listStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/liststyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/luminancetoalpha().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"luminanceToAlpha\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/luminancetoalpha()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/luminanceToAlpha()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.luminanceToAlpha()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"luminanceToAlpha()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"luminanceToAlpha\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16luminanceToAlphaQryF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/luminanceToAlpha()\":{\"role\":\"symbol\",\"title\":\"luminanceToAlpha()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"luminanceToAlpha\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/luminanceToAlpha()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/luminancetoalpha()\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/mask(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/mask(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/mask(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.mask(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"mask(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4maskyQrqd__AaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use overload where mask accepts a @ViewBuilder instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use overload where mask accepts a @ViewBuilder instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use overload where mask accepts a @ViewBuilder instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use overload where mask accepts a @ViewBuilder instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use overload where mask accepts a @ViewBuilder instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/mask(_:)\":{\"role\":\"symbol\",\"title\":\"mask(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/mask(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/mask(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/mask(alignment:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/mask(alignment:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/mask(alignment:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.mask(alignment:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"mask(alignment:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4mask9alignment_QrAA9AlignmentV_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/mask(alignment:_:)\":{\"role\":\"symbol\",\"title\":\"mask(alignment:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/mask(alignment:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/mask(alignment:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/matchedgeometryeffect(id:in:properties:anchor:issource:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"matchedGeometryEffect\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"properties\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"MatchedGeometryProperties\",\"preciseIdentifier\":\"s:7SwiftUI25MatchedGeometryPropertiesV\"},{\"kind\":\"text\",\"text\":\" = .frame, \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"isSource\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/matchedgeometryeffect(id:in:properties:anchor:issource:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.matchedGeometryEffect(id:in:properties:anchor:isSource:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"matchedGeometryEffect\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"properties\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"MatchedGeometryProperties\",\"preciseIdentifier\":\"s:7SwiftUI25MatchedGeometryPropertiesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isSource\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21matchedGeometryEffect2id2in10properties6anchor8isSourceQrqd___AA9NamespaceV2IDVAA07MatchedE10PropertiesVAA9UnitPointVSbtSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/matchedGeometryEffect(id:in:properties:anchor:isSource:)\":{\"role\":\"symbol\",\"title\":\"matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"matchedGeometryEffect\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"properties\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"MatchedGeometryProperties\",\"preciseIdentifier\":\"s:7SwiftUI25MatchedGeometryPropertiesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isSource\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/matchedgeometryeffect(id:in:properties:anchor:issource:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/menubuttonstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuButtonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuButtonStyle\",\"preciseIdentifier\":\"s:7SwiftUI15MenuButtonStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/menubuttonstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/menuButtonStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.menuButtonStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"menuButtonStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuButtonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15menuButtonStyleyQrqd__AA04MenueF0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `menuStyle(_:)` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use `menuStyle(_:)` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/menuButtonStyle(_:)\":{\"role\":\"symbol\",\"title\":\"menuButtonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuButtonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/menuButtonStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/menubuttonstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/menuindicator(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuIndicator\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"visibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/menuindicator(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/menuIndicator(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.menuIndicator(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"menuIndicator(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuIndicator\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13menuIndicatoryQrAA10VisibilityOF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/menuIndicator(_:)\":{\"role\":\"symbol\",\"title\":\"menuIndicator(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuIndicator\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/menuIndicator(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/menuindicator(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/menustyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuStyle\",\"preciseIdentifier\":\"s:7SwiftUI9MenuStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/menustyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/menuStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.menuStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"menuStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9menuStyleyQrqd__AA04MenuE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/menuStyle(_:)\":{\"role\":\"symbol\",\"title\":\"menuStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/menuStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/menustyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/minimumscalefactor(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"minimumScaleFactor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"factor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/minimumscalefactor(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/minimumScaleFactor(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.minimumScaleFactor(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"minimumScaleFactor(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"minimumScaleFactor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18minimumScaleFactoryQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/minimumScaleFactor(_:)\":{\"role\":\"symbol\",\"title\":\"minimumScaleFactor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"minimumScaleFactor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/minimumScaleFactor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/minimumscalefactor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/modifier(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/modifier(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/modifier(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.modifier(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"modifier(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8modifieryAA15ModifiedContentVyxqd__Gqd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/modifier(_:)\":{\"role\":\"symbol\",\"title\":\"modifier(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/modifier(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/modifier(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/monospaceddigit().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"monospacedDigit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/monospaceddigit()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/monospacedDigit()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.monospacedDigit()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"monospacedDigit()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"monospacedDigit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15monospacedDigitQryF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/monospacedDigit()\":{\"role\":\"symbol\",\"title\":\"monospacedDigit()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"monospacedDigit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/monospacedDigit()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/monospaceddigit()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/movedisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"moveDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isDisabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/movedisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/moveDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.moveDisabled(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"moveDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"moveDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12moveDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/moveDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"moveDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"moveDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/moveDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/movedisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/multilinetextalignment(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"multilineTextAlignment\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TextAlignment\",\"preciseIdentifier\":\"s:7SwiftUI13TextAlignmentO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/multilinetextalignment(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/multilineTextAlignment(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.multilineTextAlignment(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"multilineTextAlignment(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"multilineTextAlignment\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TextAlignment\",\"preciseIdentifier\":\"s:7SwiftUI13TextAlignmentO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE22multilineTextAlignmentyQrAA0eF0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/multilineTextAlignment(_:)\":{\"role\":\"symbol\",\"title\":\"multilineTextAlignment(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"multilineTextAlignment\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TextAlignment\",\"preciseIdentifier\":\"s:7SwiftUI13TextAlignmentO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/multilineTextAlignment(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/multilinetextalignment(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/navigationsubtitle(_:)-4xcr1.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"subtitleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationsubtitle(_:)-4xcr1\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationSubtitle(_:)-4xcr1\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationSubtitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18navigationSubtitleyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"Mac Catalyst\",\"introducedAt\":\"14.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationSubtitle(_:)-4xcr1\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationSubtitle(_:)-4xcr1\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationsubtitle(_:)-4xcr1\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/navigationsubtitle(_:)-62wq4.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"subtitle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationsubtitle(_:)-62wq4\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationSubtitle(_:)-62wq4\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationSubtitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18navigationSubtitleyQrqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"Mac Catalyst\",\"introducedAt\":\"14.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationSubtitle(_:)-62wq4\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationSubtitle(_:)-62wq4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationsubtitle(_:)-62wq4\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/navigationsubtitle(_:)-89wf8.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"subtitle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationsubtitle(_:)-89wf8\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationSubtitle(_:)-89wf8\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationSubtitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18navigationSubtitleyQrAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"Mac Catalyst\",\"introducedAt\":\"14.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationSubtitle(_:)-89wf8\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationSubtitle(_:)-89wf8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationsubtitle(_:)-89wf8\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/navigationtitle(_:)-15ycd.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-15ycd\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-15ycd\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationTitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15navigationTitleyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationTitle(_:)-15ycd\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-15ycd\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-15ycd\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/navigationtitle(_:)-3gz4j.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-3gz4j\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-3gz4j\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationTitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15navigationTitleyQrAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationTitle(_:)-3gz4j\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-3gz4j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-3gz4j\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/navigationtitle(_:)-6t67o.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-6t67o\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-6t67o\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationTitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15navigationTitleyQrqd__yXEAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationTitle(_:)-6t67o\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-6t67o\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-6t67o\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/navigationtitle(_:)-8moj6.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-8moj6\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-8moj6\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationTitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15navigationTitleyQrqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationTitle(_:)-8moj6\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-8moj6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-8moj6\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/navigationviewstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"NavigationViewStyle\",\"preciseIdentifier\":\"s:7SwiftUI19NavigationViewStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationviewstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationViewStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationViewStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationViewStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE010navigationC5StyleyQrqd__AA010NavigationcE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"navigationViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/offset(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/offset(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/offset(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.offset(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"offset(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6offsetyQrSo6CGSizeVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/offset(_:)\":{\"role\":\"symbol\",\"title\":\"offset(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/offset(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/offset(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/offset(x:y:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0, \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/offset(x:y:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/offset(x:y:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.offset(x:y:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"offset(x:y:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6offset1x1yQr12CoreGraphics7CGFloatV_AItF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/offset(x:y:)\":{\"role\":\"symbol\",\"title\":\"offset(x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/offset(x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/offset(x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onappear(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onAppear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onappear(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onAppear(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onAppear(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onAppear(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onAppear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8onAppear7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onAppear(perform:)\":{\"role\":\"symbol\",\"title\":\"onAppear(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onAppear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onAppear(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onappear(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/oncarousel(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarousel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"preciseIdentifier\":\"s:9ShuffleIt15CarouselContextV\",\"text\":\"CarouselContext\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action for side effect of sliding.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes carousel context to perform everytime sliding occurs.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Using \"},{\"type\":\"codeVoice\",\"code\":\"onCarousel(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can be injected with a closure that exposes sliding information - \"},{\"type\":\"codeVoice\",\"code\":\"CarouselContext\"},{\"type\":\"text\",\"text\":\" through its parameter to perform a particular task whenever the user slides content views or sliding is executed programmatically.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following piece of code provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onCarousel(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .onCarousel { (context: CarouselContext) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncarousel(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCarousel(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens sliding events occurring on the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onCarousel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarousel\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselContext\",\"preciseIdentifier\":\"s:9ShuffleIt15CarouselContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE10onCarouselyQryAD0G7ContextVcF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext\":{\"role\":\"symbol\",\"title\":\"CarouselContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onCarousel(_:)\":{\"role\":\"symbol\",\"title\":\"onCarousel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarousel\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselContext\",\"preciseIdentifier\":\"s:9ShuffleIt15CarouselContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens sliding events occurring on the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCarousel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncarousel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/oncarouseltranslation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarouselTranslation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action to listen translation changes.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes translation changes while sliding.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To listen translation value of content views while sliding, \"},{\"type\":\"codeVoice\",\"code\":\"onCarouselTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier can be used by passing a closure in order to perform a specific task based on the translation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onCarouselTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .onCarouselTranslation { (translation: CGFloat) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Besides, you can also directly listen translation value through the initializer instead of using this modifier.\"}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncarouseltranslation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCarouselTranslation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while sliding content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onCarouselTranslation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarouselTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE21onCarouselTranslationyQry12CoreGraphics7CGFloatVcF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onCarouselTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onCarouselTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarouselTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while sliding content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCarouselTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncarouseltranslation(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onchange(of:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Equatable\",\"preciseIdentifier\":\"s:SQ\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onchange(of:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onChange(of:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onChange(of:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onChange(of:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8onChange2of7performQrqd___yqd__ctSQRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onChange(of:perform:)\":{\"role\":\"symbol\",\"title\":\"onChange(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onChange(of:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onchange(of:perform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/oncommand(_:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"selector\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Selector\",\"preciseIdentifier\":\"s:10ObjectiveC8SelectorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncommand(_:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCommand(_:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onCommand(_:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onCommand(_:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Selector\",\"preciseIdentifier\":\"s:10ObjectiveC8SelectorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9onCommand_7performQr10ObjectiveC8SelectorV_yycSgtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onCommand(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onCommand(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Selector\",\"preciseIdentifier\":\"s:10ObjectiveC8SelectorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCommand(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncommand(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/oncontinueuseractivity(_:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onContinueUserActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activityType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncontinueuseractivity(_:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onContinueUserActivity(_:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onContinueUserActivity(_:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onContinueUserActivity(_:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onContinueUserActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE22onContinueUserActivity_7performQrSS_ySo06NSUserG0CctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onContinueUserActivity(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onContinueUserActivity(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onContinueUserActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onContinueUserActivity(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncontinueuseractivity(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/oncopycommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCopyCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncopycommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCopyCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onCopyCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onCopyCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCopyCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13onCopyCommand7performQrSaySo14NSItemProviderCGycSg_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onCopyCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onCopyCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCopyCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCopyCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncopycommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/oncutcommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCutCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncutcommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCutCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onCutCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onCutCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCutCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12onCutCommand7performQrSaySo14NSItemProviderCGycSg_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onCutCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onCutCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCutCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCutCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncutcommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/ondeletecommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDeleteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondeletecommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDeleteCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDeleteCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDeleteCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDeleteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15onDeleteCommand7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDeleteCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onDeleteCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDeleteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDeleteCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondeletecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/ondisappear(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDisappear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondisappear(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDisappear(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDisappear(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDisappear(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDisappear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11onDisappear7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDisappear(perform:)\":{\"role\":\"symbol\",\"title\":\"onDisappear(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDisappear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDisappear(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondisappear(perform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/ondrag(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrag(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrag(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrag(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrag(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDragyQrSo14NSItemProviderCycF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.4\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrag(_:)\":{\"role\":\"symbol\",\"title\":\"onDrag(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrag(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrag(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/ondrag(_:preview:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"preview\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrag(_:preview:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrag(_:preview:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrag(_:preview:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrag(_:preview:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"preview\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrag_7previewQrSo14NSItemProviderCyc_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrag(_:preview:)\":{\"role\":\"symbol\",\"title\":\"onDrag(_:preview:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"preview\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrag(_:preview:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrag(_:preview:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/ondrop(of:delegate:)-55jbd.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:delegate:)-55jbd\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:delegate:)-55jbd\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:delegate:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of8delegateQrSaySSG_AA0E8Delegate_ptF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"13.4\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrop(of:delegate:)-55jbd\":{\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:delegate:)-55jbd\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:delegate:)-55jbd\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/ondrop(of:delegate:)-9xy3o.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:delegate:)-9xy3o\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:delegate:)-9xy3o\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:delegate:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of8delegateQrSay22UniformTypeIdentifiers6UTTypeVG_AA0E8Delegate_ptF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrop(of:delegate:)-9xy3o\":{\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:delegate:)-9xy3o\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:delegate:)-9xy3o\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/ondrop(of:istargeted:perform:)-2wosm.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-2wosm\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-2wosm\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:isTargeted:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSay22UniformTypeIdentifiers6UTTypeVG_AA7BindingVySbGSgSbSaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrop(of:isTargeted:perform:)-2wosm\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-2wosm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-2wosm\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/ondrop(of:istargeted:perform:)-4zd72.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-4zd72\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-4zd72\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:isTargeted:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSay22UniformTypeIdentifiers6UTTypeVG_AA7BindingVySbGSgSbSaySo14NSItemProviderCG_So7CGPointVtctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrop(of:isTargeted:perform:)-4zd72\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-4zd72\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-4zd72\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/ondrop(of:istargeted:perform:)-6o6wo.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-6o6wo\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-6o6wo\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:isTargeted:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSaySSG_AA7BindingVySbGSgSbSaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"13.4\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrop(of:isTargeted:perform:)-6o6wo\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-6o6wo\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-6o6wo\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/ondrop(of:istargeted:perform:)-btgb.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-btgb\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-btgb\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:isTargeted:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSaySSG_AA7BindingVySbGSgSbSaySo14NSItemProviderCG_So7CGPointVtctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"13.4\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrop(of:isTargeted:perform:)-btgb\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-btgb\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-btgb\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onexitcommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onExitCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onexitcommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onExitCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onExitCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onExitCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onExitCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13onExitCommand7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onExitCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onExitCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onExitCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onExitCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onexitcommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onhover(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onHover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onhover(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onHover(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onHover(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onHover(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onHover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7onHover7performQrySbc_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.4\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onHover(perform:)\":{\"role\":\"symbol\",\"title\":\"onHover(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onHover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onHover(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onhover(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\" = 0.5, \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 10, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration15maximumDistance7perform0D15PressingChangedQrSd_12CoreGraphics7CGFloatVyycySbcSgtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\" = 0.5, \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 10, \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration15maximumDistance8pressing7performQrSd_12CoreGraphics7CGFloatVySbcSgyyctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"onLongPressGesture(minimumDuration:maximumDuration:perform:onPressingChanged:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"onLongPressGesture(minimumDuration:maximumDuration:perform:onPressingChanged:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"onLongPressGesture(minimumDuration:maximumDuration:perform:onPressingChanged:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onlongpressgesture(minimumduration:perform:onpressingchanged:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\" = 0.5, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:perform:onpressingchanged:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onLongPressGesture(minimumDuration:perform:onPressingChanged:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration7perform0D15PressingChangedQrSd_yycySbcSgtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:perform:onpressingchanged:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onlongpressgesture(minimumduration:pressing:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\" = 0.5, \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:pressing:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:pressing:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onLongPressGesture(minimumDuration:pressing:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:pressing:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration8pressing7performQrSd_ySbcSgyyctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"deprecated\":false,\"introducedAt\":\"14.0\",\"name\":\"tvOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onLongPressGesture(minimumDuration:pressing:perform:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:pressing:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:pressing:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:pressing:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onmovecommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onMoveCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"MoveCommandDirection\",\"preciseIdentifier\":\"s:7SwiftUI20MoveCommandDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onmovecommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onMoveCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onMoveCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onMoveCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onMoveCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"MoveCommandDirection\",\"preciseIdentifier\":\"s:7SwiftUI20MoveCommandDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13onMoveCommand7performQryAA0eF9DirectionOcSg_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onMoveCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onMoveCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onMoveCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"MoveCommandDirection\",\"preciseIdentifier\":\"s:7SwiftUI20MoveCommandDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onMoveCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onmovecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onopenurl(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onOpenURL\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onopenurl(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onOpenURL(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onOpenURL(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onOpenURL(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onOpenURL\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9onOpenURL7performQry10Foundation0F0Vc_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onOpenURL(perform:)\":{\"role\":\"symbol\",\"title\":\"onOpenURL(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onOpenURL\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onOpenURL(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onopenurl(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onpastecommand(of:perform:)-3phpt.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:perform:)-3phpt\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:perform:)-3phpt\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPasteCommand(of:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14onPasteCommand2of7performQrSaySSG_ySaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onPasteCommand(of:perform:)-3phpt\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:perform:)-3phpt\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:perform:)-3phpt\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onpastecommand(of:perform:)-7nzf4.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:perform:)-7nzf4\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:perform:)-7nzf4\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPasteCommand(of:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14onPasteCommand2of7performQrSay22UniformTypeIdentifiers6UTTypeVG_ySaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onPasteCommand(of:perform:)-7nzf4\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:perform:)-7nzf4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:perform:)-7nzf4\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onpastecommand(of:validator:perform:)-5h2lv.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:validator:perform:)-5h2lv\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:validator:perform:)-5h2lv\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPasteCommand(of:validator:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14onPasteCommand2of9validator7performQrSaySSG_qd__SgSaySo14NSItemProviderCGcyqd__ctlF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onPasteCommand(of:validator:perform:)-5h2lv\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:validator:perform:)-5h2lv\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:validator:perform:)-5h2lv\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onpastecommand(of:validator:perform:)-7k6qm.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:validator:perform:)-7k6qm\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:validator:perform:)-7k6qm\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPasteCommand(of:validator:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14onPasteCommand2of9validator7performQrSay22UniformTypeIdentifiers6UTTypeVG_qd__SgSaySo14NSItemProviderCGcyqd__ctlF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onPasteCommand(of:validator:perform:)-7k6qm\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:validator:perform:)-7k6qm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:validator:perform:)-7k6qm\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onplaypausecommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPlayPauseCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onplaypausecommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPlayPauseCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPlayPauseCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPlayPauseCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPlayPauseCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onPlayPauseCommand7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onPlayPauseCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onPlayPauseCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPlayPauseCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPlayPauseCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onplaypausecommand(perform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onpreferencechange(_:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPreferenceChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Equatable\",\"preciseIdentifier\":\"s:SQ\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpreferencechange(_:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPreferenceChange(_:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPreferenceChange(_:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPreferenceChange(_:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPreferenceChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onPreferenceChange_7performQrqd__m_y5ValueQyd__ctAA0E3KeyRd__SQAGRQlF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onPreferenceChange(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onPreferenceChange(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPreferenceChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPreferenceChange(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpreferencechange(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onreceive(_:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onReceive\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"publisher\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Publisher\",\"preciseIdentifier\":\"s:7Combine9PublisherP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Failure\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"Never\",\"preciseIdentifier\":\"s:s5NeverO\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onreceive(_:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onReceive(_:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onReceive(_:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onReceive(_:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onReceive\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9onReceive_7performQrqd___y6OutputQyd__ct7Combine9PublisherRd__s5NeverO7FailureRtd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onReceive(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onReceive(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onReceive\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onReceive(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onreceive(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onshuffle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A7ContextV\",\"text\":\"ShuffleContext\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action for side effect of shuffling.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes shuffle context to perform everytime shuffling happens.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Using \"},{\"type\":\"codeVoice\",\"code\":\"onShuffle(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can be injected wtih a closure that exposes shuffling information - \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleContext\"},{\"type\":\"text\",\"text\":\" through its parameter to perform a particular task whenever the user swipes content views or shuffling is triggered programmatically.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onShuffle(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .onShuffle { (context: ShuffleContext) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onShuffle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffle\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A7ContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE02onD0yQryAD0D7ContextVcF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onShuffle(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffle\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A7ContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext\":{\"role\":\"symbol\",\"title\":\"ShuffleContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onshuffledeck(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeck\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A11DeckContextV\",\"text\":\"ShuffleDeckContext\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action for side effect of shuffling.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes shuffle deck context to perform everytime shuffling occurs.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Using \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleDeck(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can inject a closure that exposes shuffling information - \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeckContext\"},{\"type\":\"text\",\"text\":\" through its parameter to perform a particular task whenever the user shuffle content views or shuffling is triggered programmatically.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following piece of code provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleDeck(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .onShuffleDeck { (context: ShuffleDeckContext) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffledeck(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleDeck(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onShuffleDeck(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeck\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A11DeckContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE02onD4DeckyQryAD0dG7ContextVcF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onShuffleDeck(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeck(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeck\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A11DeckContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleDeck(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffledeck(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onshuffledecktranslation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeckTranslation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action to listen translation changes.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes translation changes while shuffling.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To listen translation value of content views, \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleDeckTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier can be used by passing a closure in order to perform a specific task based on the translation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleDeckTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .onShuffleDeckTranslation { (translation: CGFloat) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Besides, you can also directly listen translation value through the view builder instead.\"}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffledecktranslation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleDeckTranslation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while shuffling content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onShuffleDeckTranslation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeckTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE02onD15DeckTranslationyQry12CoreGraphics7CGFloatVcF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onShuffleDeckTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeckTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeckTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while shuffling content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleDeckTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffledecktranslation(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onshuffletranslation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleTranslation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action to listen translation changes.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes translation changes while swiping.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To listen translation value of content views while shuffling, \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier can be used by passing a closure in order to perform a specific task based on the translation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .onShuffleTranslation { (translation: CGFloat) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Besides, you can also directly listen translation value through the initializer instead of using this modifier.\"}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffletranslation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleTranslation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while swiping content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onShuffleTranslation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE02onD11TranslationyQry12CoreGraphics7CGFloatVcF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onShuffleTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while swiping content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffletranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/onsubmit(of:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onSubmit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"triggers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitTriggers\",\"preciseIdentifier\":\"s:7SwiftUI14SubmitTriggersV\"},{\"kind\":\"text\",\"text\":\" = .text, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/onsubmit(of:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onSubmit(of:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onSubmit(of:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onSubmit(of:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onSubmit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitTriggers\",\"preciseIdentifier\":\"s:7SwiftUI14SubmitTriggersV\"},{\"kind\":\"text\",\"text\":\", (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8onSubmit2of_QrAA0E8TriggersV_yyctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onSubmit(of:_:)\":{\"role\":\"symbol\",\"title\":\"onSubmit(of:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onSubmit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitTriggers\",\"preciseIdentifier\":\"s:7SwiftUI14SubmitTriggersV\"},{\"kind\":\"text\",\"text\":\", (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onSubmit(of:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onsubmit(of:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/ontapgesture(count:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onTapGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\" = 1, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/ontapgesture(count:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onTapGesture(count:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onTapGesture(count:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onTapGesture(count:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onTapGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12onTapGesture5count7performQrSi_yyctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onTapGesture(count:perform:)\":{\"role\":\"symbol\",\"title\":\"onTapGesture(count:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onTapGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onTapGesture(count:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ontapgesture(count:perform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/opacity(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/opacity(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/opacity(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.opacity(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"opacity(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7opacityyQrSdF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/opacity(_:)\":{\"role\":\"symbol\",\"title\":\"opacity(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/opacity(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/opacity(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/overlay(_:alignment:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(_:alignment:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(_:alignment:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlay(_:alignment:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlay(_:alignment:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7overlay_9alignmentQrqd___AA9AlignmentVtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `overlay(alignment:content:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `overlay(alignment:content:)` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `overlay(alignment:content:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `overlay(alignment:content:)` instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use `overlay(alignment:content:)` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/overlay(_:alignment:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(_:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(_:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/overlay(_:ignoressafeareaedges:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(_:ignoressafeareaedges:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(_:ignoresSafeAreaEdges:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlay(_:ignoresSafeAreaEdges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlay(_:ignoresSafeAreaEdges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7overlay_20ignoresSafeAreaEdgesQrqd___AA4EdgeO3SetVtAA10ShapeStyleRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/overlay(_:ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(_:ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(_:ignoressafeareaedges:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/overlay(_:in:fillstyle:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(_:in:fillstyle:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(_:in:fillStyle:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlay(_:in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlay(_:in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7overlay_2in9fillStyleQrqd___qd_0_AA04FillG0VtAA05ShapeG0Rd__AA0I0Rd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/overlay(_:in:fillStyle:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(_:in:fillStyle:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(_:in:fillstyle:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/overlay(alignment:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(alignment:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(alignment:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlay(alignment:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlay(alignment:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7overlay9alignment7contentQrAA9AlignmentV_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/overlay(alignment:content:)\":{\"role\":\"symbol\",\"title\":\"overlay(alignment:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(alignment:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(alignment:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/overlaypreferencevalue(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlayPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type = Key.self, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlaypreferencevalue(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlayPreferenceValue(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlayPreferenceValue(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlayPreferenceValue(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlayPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE22overlayPreferenceValueyQrqd__m_qd_0_0F0Qyd__ctAA0E3KeyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/overlayPreferenceValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"overlayPreferenceValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlayPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlayPreferenceValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlaypreferencevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/padding(_:)-5f3wf.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"insets\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/padding(_:)-5f3wf\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/padding(_:)-5f3wf\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.padding(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"padding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7paddingyQrAA10EdgeInsetsVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/padding(_:)-5f3wf\":{\"role\":\"symbol\",\"title\":\"padding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/padding(_:)-5f3wf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/padding(_:)-5f3wf\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/padding(_:)-7cp9q.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"length\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/padding(_:)-7cp9q\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/padding(_:)-7cp9q\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.padding(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"padding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7paddingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/padding(_:)-7cp9q\":{\"role\":\"symbol\",\"title\":\"padding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/padding(_:)-7cp9q\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/padding(_:)-7cp9q\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/padding(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"length\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/padding(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/padding(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.padding(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"padding(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7paddingyQrAA4EdgeO3SetV_12CoreGraphics7CGFloatVSgtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/padding(_:_:)\":{\"role\":\"symbol\",\"title\":\"padding(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/padding(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/padding(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/pagecommand(value:in:step:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pageCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"bounds\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ClosedRange\",\"preciseIdentifier\":\"s:SN\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"step\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" = 1) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"BinaryInteger\",\"preciseIdentifier\":\"s:Sz\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/pagecommand(value:in:step:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/pageCommand(value:in:step:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.pageCommand(value:in:step:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"pageCommand(value:in:step:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pageCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ClosedRange\",\"preciseIdentifier\":\"s:SN\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"step\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11pageCommand5value2in4stepQrAA7BindingVyqd__G_SNyqd__Gqd__tSzRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.3\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/pageCommand(value:in:step:)\":{\"role\":\"symbol\",\"title\":\"pageCommand(value:in:step:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pageCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ClosedRange\",\"preciseIdentifier\":\"s:SN\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"step\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/pageCommand(value:in:step:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/pagecommand(value:in:step:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/pickerstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PickerStyle\",\"preciseIdentifier\":\"s:7SwiftUI11PickerStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/pickerstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/pickerStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.pickerStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"pickerStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11pickerStyleyQrqd__AA06PickerE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/pickerStyle(_:)\":{\"role\":\"symbol\",\"title\":\"pickerStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/pickerStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/pickerstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/popover(ispresented:attachmentanchor:arrowedge:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\" = .rect(.bounds), \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\" = .top, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/popover(ispresented:attachmentanchor:arrowedge:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.popover(isPresented:attachmentAnchor:arrowEdge:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7popover11isPresented16attachmentAnchor9arrowEdge7contentQrAA7BindingVySbG_AA017PopoverAttachmentH0OAA0J0Oqd__yctAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/popover(isPresented:attachmentAnchor:arrowEdge:content:)\":{\"role\":\"symbol\",\"title\":\"popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/popover(ispresented:attachmentanchor:arrowedge:content:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/popover(item:attachmentanchor:arrowedge:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\" = .rect(.bounds), \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\" = .top, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/popover(item:attachmentanchor:arrowedge:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/popover(item:attachmentAnchor:arrowEdge:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.popover(item:attachmentAnchor:arrowEdge:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"popover(item:attachmentAnchor:arrowEdge:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7popover4item16attachmentAnchor9arrowEdge7contentQrAA7BindingVyqd__SgG_AA017PopoverAttachmentG0OAA0I0Oqd_0_qd__cts12IdentifiableRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/popover(item:attachmentAnchor:arrowEdge:content:)\":{\"role\":\"symbol\",\"title\":\"popover(item:attachmentAnchor:arrowEdge:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/popover(item:attachmentAnchor:arrowEdge:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/popover(item:attachmentanchor:arrowedge:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/position(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/position(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/position(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.position(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"position(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8positionyQrSo7CGPointVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/position(_:)\":{\"role\":\"symbol\",\"title\":\"position(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/position(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/position(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/position(x:y:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0, \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/position(x:y:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/position(x:y:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.position(x:y:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"position(x:y:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8position1x1yQr12CoreGraphics7CGFloatV_AItF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/position(x:y:)\":{\"role\":\"symbol\",\"title\":\"position(x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/position(x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/position(x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/preference(key:value:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/preference(key:value:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/preference(key:value:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.preference(key:value:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"preference(key:value:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10preference3key5valueQrqd__m_5ValueQyd__tAA13PreferenceKeyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/preference(key:value:)\":{\"role\":\"symbol\",\"title\":\"preference(key:value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/preference(key:value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/preference(key:value:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/preferredcolorscheme(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preferredColorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/preferredcolorscheme(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/preferredColorScheme(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.preferredColorScheme(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"preferredColorScheme(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preferredColorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20preferredColorSchemeyQrAA0eF0OSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/preferredColorScheme(_:)\":{\"role\":\"symbol\",\"title\":\"preferredColorScheme(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preferredColorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/preferredColorScheme(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/preferredcolorscheme(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/prefersdefaultfocus(_:in:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/prefersdefaultfocus(_:in:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/prefersDefaultFocus(_:in:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.prefersDefaultFocus(_:in:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"prefersDefaultFocus(_:in:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19prefersDefaultFocus_2inQrSb_AA9NamespaceV2IDVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/prefersDefaultFocus(_:in:)\":{\"role\":\"symbol\",\"title\":\"prefersDefaultFocus(_:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/prefersDefaultFocus(_:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/prefersdefaultfocus(_:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/presentedwindowstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"WindowStyle\",\"preciseIdentifier\":\"s:7SwiftUI11WindowStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/presentedwindowstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/presentedWindowStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.presentedWindowStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"presentedWindowStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20presentedWindowStyleyQrqd__AA0eF0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/presentedWindowStyle(_:)\":{\"role\":\"symbol\",\"title\":\"presentedWindowStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/presentedWindowStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/presentedwindowstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/presentedwindowtoolbarstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowToolbarStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"WindowToolbarStyle\",\"preciseIdentifier\":\"s:7SwiftUI18WindowToolbarStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/presentedwindowtoolbarstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/presentedWindowToolbarStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.presentedWindowToolbarStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"presentedWindowToolbarStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowToolbarStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE27presentedWindowToolbarStyleyQrqd__AA0efG0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/presentedWindowToolbarStyle(_:)\":{\"role\":\"symbol\",\"title\":\"presentedWindowToolbarStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowToolbarStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/presentedWindowToolbarStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/presentedwindowtoolbarstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/previewcontext(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewContext\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewContext\",\"preciseIdentifier\":\"s:7SwiftUI14PreviewContextP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewcontext(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewContext(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewContext(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewContext(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewContext\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14previewContextyQrqd__AA07PreviewE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/previewContext(_:)\":{\"role\":\"symbol\",\"title\":\"previewContext(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewContext\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewContext(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewcontext(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/previewdevice(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDevice\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewDevice\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewDeviceV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewdevice(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewDevice(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewDevice(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewDevice(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDevice\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewDevice\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewDeviceV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13previewDeviceyQrAA07PreviewE0VSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/previewDevice(_:)\":{\"role\":\"symbol\",\"title\":\"previewDevice(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDevice\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewDevice\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewDeviceV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewDevice(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewdevice(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/previewdisplayname(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDisplayName\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewdisplayname(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewDisplayName(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewDisplayName(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewDisplayName(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDisplayName\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18previewDisplayNameyQrSSSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/previewDisplayName(_:)\":{\"role\":\"symbol\",\"title\":\"previewDisplayName(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDisplayName\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewDisplayName(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewdisplayname(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/previewinterfaceorientation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewInterfaceOrientation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"InterfaceOrientation\",\"preciseIdentifier\":\"s:7SwiftUI20InterfaceOrientationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewinterfaceorientation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewInterfaceOrientation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewInterfaceOrientation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewInterfaceOrientation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewInterfaceOrientation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"InterfaceOrientation\",\"preciseIdentifier\":\"s:7SwiftUI20InterfaceOrientationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE27previewInterfaceOrientationyQrAA0eF0VF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/previewInterfaceOrientation(_:)\":{\"role\":\"symbol\",\"title\":\"previewInterfaceOrientation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewInterfaceOrientation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"InterfaceOrientation\",\"preciseIdentifier\":\"s:7SwiftUI20InterfaceOrientationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewInterfaceOrientation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewinterfaceorientation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/previewlayout(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewLayout\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewLayout\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewLayoutO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewlayout(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewLayout(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewLayout(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewLayout(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewLayout\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewLayout\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewLayoutO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13previewLayoutyQrAA07PreviewE0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/previewLayout(_:)\":{\"role\":\"symbol\",\"title\":\"previewLayout(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewLayout\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewLayout\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewLayoutO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewLayout(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewlayout(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/privacysensitive(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"privacySensitive\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"sensitive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/privacysensitive(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/privacySensitive(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.privacySensitive(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"privacySensitive(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"privacySensitive\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16privacySensitiveyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/privacySensitive(_:)\":{\"role\":\"symbol\",\"title\":\"privacySensitive(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"privacySensitive\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/privacySensitive(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/privacysensitive(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/progressviewstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"progressViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ProgressViewStyle\",\"preciseIdentifier\":\"s:7SwiftUI17ProgressViewStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/progressviewstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/progressViewStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.progressViewStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"progressViewStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"progressViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE08progressC5StyleyQrqd__AA08ProgresscE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/progressViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"progressViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"progressViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/progressViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/progressviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/projectioneffect(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"projectionEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ProjectionTransform\",\"preciseIdentifier\":\"s:7SwiftUI19ProjectionTransformV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/projectioneffect(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/projectionEffect(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.projectionEffect(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"projectionEffect(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"projectionEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ProjectionTransform\",\"preciseIdentifier\":\"s:7SwiftUI19ProjectionTransformV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16projectionEffectyQrAA19ProjectionTransformVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/projectionEffect(_:)\":{\"role\":\"symbol\",\"title\":\"projectionEffect(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"projectionEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ProjectionTransform\",\"preciseIdentifier\":\"s:7SwiftUI19ProjectionTransformV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/projectionEffect(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/projectioneffect(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/redacted(reason:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"redacted\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"reason\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"RedactionReasons\",\"preciseIdentifier\":\"s:7SwiftUI16RedactionReasonsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/redacted(reason:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/redacted(reason:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.redacted(reason:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"redacted(reason:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"redacted\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"reason\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"RedactionReasons\",\"preciseIdentifier\":\"s:7SwiftUI16RedactionReasonsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8redacted6reasonQrAA16RedactionReasonsV_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/redacted(reason:)\":{\"role\":\"symbol\",\"title\":\"redacted(reason:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"redacted\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"reason\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"RedactionReasons\",\"preciseIdentifier\":\"s:7SwiftUI16RedactionReasonsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/redacted(reason:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/redacted(reason:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/refreshable(action:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"refreshable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/refreshable(action:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/refreshable(action:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.refreshable(action:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"refreshable(action:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"refreshable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11refreshable6actionQryyYaYbc_tF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/refreshable(action:)\":{\"role\":\"symbol\",\"title\":\"refreshable(action:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"refreshable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/refreshable(action:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/refreshable(action:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/rotation3deffect(_:axis:anchor:anchorz:perspective:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotation3DEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"angle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"axis\"},{\"kind\":\"text\",\"text\":\": (x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", z\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"), \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"anchorZ\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0, \"},{\"kind\":\"externalParam\",\"text\":\"perspective\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 1) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/rotation3deffect(_:axis:anchor:anchorz:perspective:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotation3DEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"axis\"},{\"kind\":\"text\",\"text\":\": (x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", z\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"), \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchorZ\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perspective\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16rotation3DEffect_4axis6anchor0G1Z11perspectiveQrAA5AngleV_12CoreGraphics7CGFloatV1x_AM1yAM1ztAA9UnitPointVA2MtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\":{\"role\":\"symbol\",\"title\":\"rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotation3DEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"axis\"},{\"kind\":\"text\",\"text\":\": (x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", z\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"), \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchorZ\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perspective\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/rotation3deffect(_:axis:anchor:anchorz:perspective:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/rotationeffect(_:anchor:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotationEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"angle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/rotationeffect(_:anchor:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/rotationEffect(_:anchor:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.rotationEffect(_:anchor:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"rotationEffect(_:anchor:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotationEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14rotationEffect_6anchorQrAA5AngleV_AA9UnitPointVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/rotationEffect(_:anchor:)\":{\"role\":\"symbol\",\"title\":\"rotationEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotationEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/rotationEffect(_:anchor:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/rotationeffect(_:anchor:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/safeareainset(edge:alignment:spacing:content:)-4gojk.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/safeareainset(edge:alignment:spacing:content:)-4gojk\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/safeAreaInset(edge:alignment:spacing:content:)-4gojk\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.safeAreaInset(edge:alignment:spacing:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13safeAreaInset4edge9alignment7spacing7contentQrAA14HorizontalEdgeO_AA17VerticalAlignmentV12CoreGraphics7CGFloatVSgqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/safeAreaInset(edge:alignment:spacing:content:)-4gojk\":{\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/safeAreaInset(edge:alignment:spacing:content:)-4gojk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/safeareainset(edge:alignment:spacing:content:)-4gojk\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/safeareainset(edge:alignment:spacing:content:)-9bx6p.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalEdge\",\"preciseIdentifier\":\"s:7SwiftUI12VerticalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/safeareainset(edge:alignment:spacing:content:)-9bx6p\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/safeAreaInset(edge:alignment:spacing:content:)-9bx6p\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.safeAreaInset(edge:alignment:spacing:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalEdge\",\"preciseIdentifier\":\"s:7SwiftUI12VerticalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13safeAreaInset4edge9alignment7spacing7contentQrAA12VerticalEdgeO_AA19HorizontalAlignmentV12CoreGraphics7CGFloatVSgqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/safeAreaInset(edge:alignment:spacing:content:)-9bx6p\":{\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalEdge\",\"preciseIdentifier\":\"s:7SwiftUI12VerticalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/safeAreaInset(edge:alignment:spacing:content:)-9bx6p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/safeareainset(edge:alignment:spacing:content:)-9bx6p\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/saturation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"saturation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"amount\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/saturation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/saturation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.saturation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"saturation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"saturation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10saturationyQrSdF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/saturation(_:)\":{\"role\":\"symbol\",\"title\":\"saturation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"saturation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/saturation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/saturation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/scaledtofill().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFill\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaledtofill()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaledToFill()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaledToFill()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaledToFill()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFill\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12scaledToFillQryF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/scaledToFill()\":{\"role\":\"symbol\",\"title\":\"scaledToFill()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFill\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaledToFill()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaledtofill()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/scaledtofit().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaledtofit()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaledToFit()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaledToFit()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaledToFit()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11scaledToFitQryF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/scaledToFit()\":{\"role\":\"symbol\",\"title\":\"scaledToFit()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaledToFit()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaledtofit()\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/scaleeffect(_:anchor:)-4byje.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaleeffect(_:anchor:)-4byje\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaleEffect(_:anchor:)-4byje\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaleEffect(_:anchor:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11scaleEffect_6anchorQrSo6CGSizeV_AA9UnitPointVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/scaleEffect(_:anchor:)-4byje\":{\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaleEffect(_:anchor:)-4byje\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaleeffect(_:anchor:)-4byje\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/scaleeffect(_:anchor:)-6bduh.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"s\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaleeffect(_:anchor:)-6bduh\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaleEffect(_:anchor:)-6bduh\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaleEffect(_:anchor:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11scaleEffect_6anchorQr12CoreGraphics7CGFloatV_AA9UnitPointVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/scaleEffect(_:anchor:)-6bduh\":{\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaleEffect(_:anchor:)-6bduh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaleeffect(_:anchor:)-6bduh\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/scaleeffect(x:y:anchor:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 1.0, \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 1.0, \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaleeffect(x:y:anchor:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaleEffect(x:y:anchor:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaleEffect(x:y:anchor:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaleEffect(x:y:anchor:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11scaleEffect1x1y6anchorQr12CoreGraphics7CGFloatV_AjA9UnitPointVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/scaleEffect(x:y:anchor:)\":{\"role\":\"symbol\",\"title\":\"scaleEffect(x:y:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaleEffect(x:y:anchor:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaleeffect(x:y:anchor:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/scenepadding(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scenePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/scenepadding(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scenePadding(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scenePadding(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scenePadding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scenePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12scenePaddingyQrAA4EdgeO3SetVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/scenePadding(_:)\":{\"role\":\"symbol\",\"title\":\"scenePadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scenePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scenePadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scenepadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/searchable(text:placement:prompt:)-2i9jl.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:)-2i9jl\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:)-2i9jl\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6promptQrAA7BindingVySSG_AA20SearchFieldPlacementVqd__tSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchable(text:placement:prompt:)-2i9jl\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:)-2i9jl\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:)-2i9jl\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/searchable(text:placement:prompt:)-50j7i.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:)-50j7i\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:)-50j7i\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6promptQrAA7BindingVySSG_AA20SearchFieldPlacementVAA4TextVSgtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchable(text:placement:prompt:)-50j7i\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:)-50j7i\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:)-50j7i\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/searchable(text:placement:prompt:)-75a6t.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:)-75a6t\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:)-75a6t\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6promptQrAA7BindingVySSG_AA20SearchFieldPlacementVAA18LocalizedStringKeyVtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchable(text:placement:prompt:)-75a6t\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:)-75a6t\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:)-75a6t\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/searchable(text:placement:prompt:suggestions:)-5bsg8.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:suggestions:)-5bsg8\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:suggestions:)-5bsg8\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:suggestions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6prompt11suggestionsQrAA7BindingVySSG_AA20SearchFieldPlacementVqd_0_qd__yXEtAaBRd__SyRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchable(text:placement:prompt:suggestions:)-5bsg8\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:suggestions:)-5bsg8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:suggestions:)-5bsg8\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/searchable(text:placement:prompt:suggestions:)-5ib9a.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:suggestions:)-5ib9a\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:suggestions:)-5ib9a\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:suggestions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6prompt11suggestionsQrAA7BindingVySSG_AA20SearchFieldPlacementVAA4TextVSgqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchable(text:placement:prompt:suggestions:)-5ib9a\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:suggestions:)-5ib9a\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:suggestions:)-5ib9a\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/searchable(text:placement:prompt:suggestions:)-8fyqc.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:suggestions:)-8fyqc\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:suggestions:)-8fyqc\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:suggestions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6prompt11suggestionsQrAA7BindingVySSG_AA20SearchFieldPlacementVAA18LocalizedStringKeyVqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchable(text:placement:prompt:suggestions:)-8fyqc\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:suggestions:)-8fyqc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:suggestions:)-8fyqc\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/searchcompletion(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchCompletion\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"completion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchcompletion(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchCompletion(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchCompletion(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchCompletion(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchCompletion\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16searchCompletionyQrSSF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchCompletion(_:)\":{\"role\":\"symbol\",\"title\":\"searchCompletion(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchCompletion\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchCompletion(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchcompletion(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/shadow(color:radius:x:y:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shadow\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\" = Color(.sRGBLinear, white: 0, opacity: 0.33), \"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0, \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/shadow(color:radius:x:y:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shadow(color:radius:x:y:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.shadow(color:radius:x:y:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"shadow(color:radius:x:y:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shadow\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6shadow5color6radius1x1yQrAA5ColorV_12CoreGraphics7CGFloatVA2MtF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shadow(color:radius:x:y:)\":{\"role\":\"symbol\",\"title\":\"shadow(color:radius:x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shadow\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shadow(color:radius:x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shadow(color:radius:x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/sheet(ispresented:ondismiss:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/sheet(ispresented:ondismiss:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/sheet(isPresented:onDismiss:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.sheet(isPresented:onDismiss:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"sheet(isPresented:onDismiss:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5sheet11isPresented9onDismiss7contentQrAA7BindingVySbG_yycSgqd__yctAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/sheet(isPresented:onDismiss:content:)\":{\"role\":\"symbol\",\"title\":\"sheet(isPresented:onDismiss:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/sheet(isPresented:onDismiss:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/sheet(ispresented:ondismiss:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/sheet(item:ondismiss:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/sheet(item:ondismiss:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/sheet(item:onDismiss:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.sheet(item:onDismiss:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"sheet(item:onDismiss:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5sheet4item9onDismiss7contentQrAA7BindingVyqd__SgG_yycSgqd_0_qd__cts12IdentifiableRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/sheet(item:onDismiss:content:)\":{\"role\":\"symbol\",\"title\":\"sheet(item:onDismiss:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/sheet(item:onDismiss:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/sheet(item:ondismiss:content:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/shuffleanimation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A9AnimationO\",\"text\":\"ShuffleAnimation\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given shuffle animation.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"animation\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle animation for shuffle stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" uses \"},{\"type\":\"codeVoice\",\"code\":\"linear\"},{\"type\":\"text\",\"text\":\" animation to animate shuffling behaviour. With \"},{\"type\":\"codeVoice\",\"code\":\"shuffleAnimation(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can be overridden with the given animation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example shows the usage of overriding default shuffle animation with \"},{\"type\":\"codeVoice\",\"code\":\"easeInOut\"},{\"type\":\"text\",\"text\":\" animation that will be used while shuffling.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleAnimation(.easeInOut)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffleanimation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleAnimation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle animation of the shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleAnimation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A9AnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE16shuffleAnimationyQrAD0dG0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A9AnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle animation of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffleanimation(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/shuffledeckanimation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckAnimationO\",\"text\":\"ShuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given shuffle deck animation.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"animation\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle animation for shuffle deck view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" uses \"},{\"type\":\"codeVoice\",\"code\":\"linear\"},{\"type\":\"text\",\"text\":\" animation to animate shuffling behaviour. With \"},{\"type\":\"codeVoice\",\"code\":\"shuffleDeckAnimation\"},{\"type\":\"text\",\"text\":\" modifier, it can be overridden with the given animation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example shows the usage of tailoring default shuffle deck animation with \"},{\"type\":\"codeVoice\",\"code\":\"easeIn\"},{\"type\":\"text\",\"text\":\" animation that will be used while shuffling.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckAnimation(.easeIn)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckanimation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckAnimation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle animation of the shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleDeckAnimation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE20shuffleDeckAnimationyQrAD0dgH0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle animation of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/shuffledeckdisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given boolean.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"disabled\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A boolean value to decide whether it should be disabled or not.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Based on the boolen passing into the modifier, the user interaction will be disabled accordingly, If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"true\"},{\"type\":\"text\",\"text\":\", it will no longer turn on the interaction to UI. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"false\"},{\"type\":\"text\",\"text\":\", it allows to shuffle views.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows how to disable the user interaction on the shuffle deck view.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckDisabled(false)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckdisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to shuffle deck content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"shuffleDeckDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE19shuffleDeckDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to shuffle deck content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckdisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/shuffledeckscale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given scaling factor.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"scale\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A scaling factor to shrink the size of content views.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Regarding scaling content views, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" only allows to set value between 0 and 1 inclusively. If the value is out of this range, it will be replaced with 0 and 1 based on the given value. The default scaling factor is 0.7.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"shuffleDeckScale(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckScale(0.5)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckscale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckScale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the left and right content views of shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleDeckScale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE16shuffleDeckScaleyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the left and right content views of shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/shuffledeckstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DeckStyleO\",\"text\":\"ShuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given shuffle deck style.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"style\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle style for shuffle deck view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" comes with two different shuffling styles - \"},{\"type\":\"codeVoice\",\"code\":\"finiteShuffle\"},{\"type\":\"text\",\"text\":\" (default) and \"},{\"type\":\"codeVoice\",\"code\":\"infiniteShuffle\"},{\"type\":\"text\",\"text\":\". To apply style as wanted, it can be overridden with \"},{\"type\":\"codeVoice\",\"code\":\"shuffleDeckStyle(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet demonstrates how to override the shuffle style to be able to shuffle infinitely.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckStyle(.infiniteShuffle)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle style of the shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleDeckStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DeckStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE16shuffleDeckStyleyQrAD0dgH0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DeckStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle style of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/shuffledecktrigger(on:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"publisher\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Publisher\",\"preciseIdentifier\":\"s:7Combine9PublisherP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Failure\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"Never\",\"preciseIdentifier\":\"s:s5NeverO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckDirectionO\",\"text\":\"ShuffleDeckDirection\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given publisher object.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"publisher\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A publisher object that fires \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeckDirection\"},{\"type\":\"text\",\"text\":\" values.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"In purpose of programmatic shuffling using timer or manually, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" fires events via \"},{\"type\":\"codeVoice\",\"code\":\"shuffleDeckTrigger(on:)\"},{\"type\":\"text\",\"text\":\" modifier which is needed to inject an instance of publisher with \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeckDirection\"},{\"type\":\"text\",\"text\":\" output type and \"},{\"type\":\"codeVoice\",\"code\":\"Never\"},{\"type\":\"text\",\"text\":\" failure type.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the programmatic approach of triggering shuffle event by sending \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeckDirection\"},{\"type\":\"text\",\"text\":\" value through the publisher.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"let shuffleDeckPublisher = PassthroughSubject<ShuffleDeckDirection, Never>()\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckTrigger(on: shuffleDeckPublisher)\",\"}\",\"shuffleDeckPublisher.send(.left)\",\"shuffleDeckPublisher.send(.right)\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledecktrigger(on:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckTrigger(on:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic shuffling.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleDeckTrigger(on:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE18shuffleDeckTrigger2onQrqd___t7Combine9PublisherRd__s5NeverO7FailureRtd__AD0dG9DirectionO6OutputRtd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledecktrigger(on:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/shuffledisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given boolean.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"disabled\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A boolean value to decide whether it should be disabled or not.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Based on the boolean passing into the modifier, the user interaction will be disabled accordingly. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"true\"},{\"type\":\"text\",\"text\":\",  it will no longer turn on the interaction to UI. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"false\"},{\"type\":\"text\",\"text\":\", it allows to shuffle content views.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following piece of code shows how to disable the user interaction on the shuffle stack view.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDisabled(false)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that disables user interaction to shuffle content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"shuffleDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE15shuffleDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that disables user interaction to shuffle content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledisabled(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/shuffleoffset(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleOffset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given offset.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"offset\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A offset value for the content views behind the current content view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To shift the upcoming and previous content views of the shuffle stack view (not to overlay by the current view that display on the top of the stack), it can be adjust by setting offset value through \"},{\"type\":\"codeVoice\",\"code\":\"shuffleOffset(_:)\"},{\"type\":\"text\",\"text\":\" modifier. By default, it uses 15 pixels to shift the offset.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"shuffleOffset(_:)\"},{\"type\":\"text\",\"text\":\" modifier. By using 25 pixels, it will be noticable that there is more horizontal gap between the upcoming and previous content views and the current view than using the default offset.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleOffset(25)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffleoffset(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleOffset(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value that is used to shift the offset of the upcoming and previous content views behind the view of the current index.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleOffset(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleOffset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE13shuffleOffsetyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleOffset(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleOffset(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleOffset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value that is used to shift the offset of the upcoming and previous content views behind the view of the current index.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleOffset(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffleoffset(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/shufflepadding(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shufflePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given padding.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"padding\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A padding value for a shuffle stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" uses 15 pixels to add extra space between its frame and its content views. To be overridden, it can be achieved by passing the desired padding value through \"},{\"type\":\"codeVoice\",\"code\":\"shufflePadding(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"shufflePadding(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shufflePadding(25)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/shufflepadding(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shufflePadding(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shufflePadding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shufflePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE14shufflePaddingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shufflePadding(_:)\":{\"role\":\"symbol\",\"title\":\"shufflePadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shufflePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shufflePadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shufflepadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/shufflescale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given scaling factor.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"scale\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A scaling factor to shrink the size of content views.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Regarding scaling content views, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" only allows to set value between 0 and 1 inclusively. If the value is out of this range, it will be replaced with 0 or 1 based on the given value. The default scaling factor is 0.5.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"shuffleScale(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleScale(0.6)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/shufflescale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleScale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleScale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE12shuffleScaleyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shufflescale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/shufflestyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A5StyleO\",\"text\":\"ShuffleStyle\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given shuffle style.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"style\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle style for shuffle stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" comes with three different shuffle styles - \"},{\"type\":\"codeVoice\",\"code\":\"slide\"},{\"type\":\"text\",\"text\":\" (default), \"},{\"type\":\"codeVoice\",\"code\":\"rotateIn\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"rotateOut\"},{\"type\":\"text\",\"text\":\" and uses \"},{\"type\":\"codeVoice\",\"code\":\"slide\"},{\"type\":\"text\",\"text\":\" as a default style. To apply other style, it can be overridden by using \"},{\"type\":\"codeVoice\",\"code\":\"shuffleStyle(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example shows the usage of overriding default shuffle style with \"},{\"type\":\"codeVoice\",\"code\":\"rotateOut\"},{\"type\":\"text\",\"text\":\" style to rotate and scale to the outside while shuffling.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleStyle(.rotateOut)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/shufflestyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle style of the shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A5StyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE12shuffleStyleyQrAD0dG0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A5StyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle style of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shufflestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/shuffletrigger(on:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"publisher\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Publisher\",\"preciseIdentifier\":\"s:7Combine9PublisherP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Failure\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"Never\",\"preciseIdentifier\":\"s:s5NeverO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DirectionO\",\"text\":\"ShuffleDirection\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given publisher object.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"publisher\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A publisher object that fires \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDirection\"},{\"type\":\"text\",\"text\":\" values.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"In purpose of shuffling programmatically such as using timer, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" accepts events via \"},{\"type\":\"codeVoice\",\"code\":\"shuffleTrigger(on:)\"},{\"type\":\"text\",\"text\":\" modifier which is needed to inject an instance of publisher with \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDirection\"},{\"type\":\"text\",\"text\":\" output type and \"},{\"type\":\"codeVoice\",\"code\":\"Never\"},{\"type\":\"text\",\"text\":\" failure type.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the programmatic way of triggering shuffle event by sending \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDirection\"},{\"type\":\"text\",\"text\":\" value through the publisher.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"let shufflePublisher = PassthroughSubject<ShuffleDirection, Never>()\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleTrigger(on: shufflePublisher)\",\"}\",\"shufflePublisher.send(.left)\",\"shufflePublisher.send(.right)\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffletrigger(on:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleTrigger(on:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accpets events of direction to perform programmatic shuffling.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleTrigger(on:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE14shuffleTrigger2onQrqd___t7Combine9PublisherRd__s5NeverO7FailureRtd__AD0D9DirectionO6OutputRtd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accpets events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffletrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/simultaneousgesture(_:including:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"simultaneousGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Gesture\",\"preciseIdentifier\":\"s:7SwiftUI7GestureP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/simultaneousgesture(_:including:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/simultaneousGesture(_:including:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.simultaneousGesture(_:including:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"simultaneousGesture(_:including:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"simultaneousGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19simultaneousGesture_9includingQrqd___AA0E4MaskVtAA0E0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/simultaneousGesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"simultaneousGesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"simultaneousGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/simultaneousGesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/simultaneousgesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/speechadjustedpitch(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAdjustedPitch\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechadjustedpitch(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechAdjustedPitch(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.speechAdjustedPitch(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"speechAdjustedPitch(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAdjustedPitch\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19speechAdjustedPitchyQrSdF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/speechAdjustedPitch(_:)\":{\"role\":\"symbol\",\"title\":\"speechAdjustedPitch(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAdjustedPitch\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechAdjustedPitch(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechadjustedpitch(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/speechalwaysincludespunctuation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAlwaysIncludesPunctuation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechalwaysincludespunctuation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechAlwaysIncludesPunctuation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.speechAlwaysIncludesPunctuation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"speechAlwaysIncludesPunctuation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAlwaysIncludesPunctuation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE31speechAlwaysIncludesPunctuationyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/speechAlwaysIncludesPunctuation(_:)\":{\"role\":\"symbol\",\"title\":\"speechAlwaysIncludesPunctuation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAlwaysIncludesPunctuation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechAlwaysIncludesPunctuation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechalwaysincludespunctuation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/speechannouncementsqueued(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAnnouncementsQueued\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechannouncementsqueued(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechAnnouncementsQueued(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.speechAnnouncementsQueued(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"speechAnnouncementsQueued(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAnnouncementsQueued\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25speechAnnouncementsQueuedyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/speechAnnouncementsQueued(_:)\":{\"role\":\"symbol\",\"title\":\"speechAnnouncementsQueued(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAnnouncementsQueued\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechAnnouncementsQueued(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechannouncementsqueued(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/speechspellsoutcharacters(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechSpellsOutCharacters\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechspellsoutcharacters(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechSpellsOutCharacters(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.speechSpellsOutCharacters(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"speechSpellsOutCharacters(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechSpellsOutCharacters\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25speechSpellsOutCharactersyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/speechSpellsOutCharacters(_:)\":{\"role\":\"symbol\",\"title\":\"speechSpellsOutCharacters(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechSpellsOutCharacters\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechSpellsOutCharacters(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechspellsoutcharacters(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/submitlabel(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitLabel\",\"preciseIdentifier\":\"s:7SwiftUI11SubmitLabelV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/submitlabel(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/submitLabel(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.submitLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"submitLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitLabel\",\"preciseIdentifier\":\"s:7SwiftUI11SubmitLabelV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11submitLabelyQrAA06SubmitE0VF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/submitLabel(_:)\":{\"role\":\"symbol\",\"title\":\"submitLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitLabel\",\"preciseIdentifier\":\"s:7SwiftUI11SubmitLabelV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/submitLabel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/submitlabel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/submitscope(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isBlocking\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/submitscope(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/submitScope(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.submitScope(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"submitScope(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11submitScopeyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/submitScope(_:)\":{\"role\":\"symbol\",\"title\":\"submitScope(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/submitScope(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/submitscope(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/swipeactions(edge:allowsfullswipe:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"swipeActions\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\" = .trailing, \"},{\"kind\":\"externalParam\",\"text\":\"allowsFullSwipe\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/swipeactions(edge:allowsfullswipe:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/swipeActions(edge:allowsFullSwipe:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.swipeActions(edge:allowsFullSwipe:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"swipeActions(edge:allowsFullSwipe:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"swipeActions\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"allowsFullSwipe\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12swipeActions4edge15allowsFullSwipe7contentQrAA14HorizontalEdgeO_Sbqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/swipeActions(edge:allowsFullSwipe:content:)\":{\"role\":\"symbol\",\"title\":\"swipeActions(edge:allowsFullSwipe:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"swipeActions\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"allowsFullSwipe\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/swipeActions(edge:allowsFullSwipe:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/swipeactions(edge:allowsfullswipe:content:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/symbolrenderingmode(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolRenderingMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI19SymbolRenderingModeV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/symbolrenderingmode(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/symbolRenderingMode(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.symbolRenderingMode(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"symbolRenderingMode(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolRenderingMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI19SymbolRenderingModeV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19symbolRenderingModeyQrAA06SymboleF0VSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/symbolRenderingMode(_:)\":{\"role\":\"symbol\",\"title\":\"symbolRenderingMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolRenderingMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI19SymbolRenderingModeV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/symbolRenderingMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/symbolrenderingmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/symbolvariant(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolVariant\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"variant\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolVariants\",\"preciseIdentifier\":\"s:7SwiftUI14SymbolVariantsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/symbolvariant(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/symbolVariant(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.symbolVariant(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"symbolVariant(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolVariant\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolVariants\",\"preciseIdentifier\":\"s:7SwiftUI14SymbolVariantsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13symbolVariantyQrAA14SymbolVariantsVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/symbolVariant(_:)\":{\"role\":\"symbol\",\"title\":\"symbolVariant(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolVariant\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolVariants\",\"preciseIdentifier\":\"s:7SwiftUI14SymbolVariantsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/symbolVariant(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/symbolvariant(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/tabitem(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabItem\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/tabitem(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tabItem(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tabItem(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tabItem(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabItem\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7tabItemyQrqd__yXEAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/tabItem(_:)\":{\"role\":\"symbol\",\"title\":\"tabItem(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabItem\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tabItem(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tabitem(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/tablestyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tableStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"TableStyle\",\"preciseIdentifier\":\"s:7SwiftUI10TableStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/tablestyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tableStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tableStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tableStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tableStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10tableStyleyQrqd__AA05TableE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/tableStyle(_:)\":{\"role\":\"symbol\",\"title\":\"tableStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tableStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tableStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tablestyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/tabviewstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"TabViewStyle\",\"preciseIdentifier\":\"s:7SwiftUI12TabViewStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/tabviewstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tabViewStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tabViewStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tabViewStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE03tabC5StyleyQrqd__AA03TabcE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/tabViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"tabViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tabViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tabviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/tag(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/tag(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tag(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tag(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tag(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE3tagyQrqd__SHRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/tag(_:)\":{\"role\":\"symbol\",\"title\":\"tag(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tag(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tag(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/task(id:priority:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\" = .userInitiated, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Equatable\",\"preciseIdentifier\":\"s:SQ\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/task(id:priority:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/task(id:priority:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.task(id:priority:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"task(id:priority:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4task2id8priority_Qrqd___ScPyyYaYbctSQRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/task(id:priority:_:)\":{\"role\":\"symbol\",\"title\":\"task(id:priority:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/task(id:priority:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/task(id:priority:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/task(priority:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\" = .userInitiated, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/task(priority:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/task(priority:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.task(priority:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"task(priority:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4task8priority_QrScP_yyYaYbctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/task(priority:_:)\":{\"role\":\"symbol\",\"title\":\"task(priority:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/task(priority:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/task(priority:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/textcase(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Case\",\"preciseIdentifier\":\"s:7SwiftUI4TextV4CaseO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/textcase(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textCase(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.textCase(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"textCase(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Case\",\"preciseIdentifier\":\"s:7SwiftUI4TextV4CaseO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8textCaseyQrAA4TextV0E0OSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/textCase(_:)\":{\"role\":\"symbol\",\"title\":\"textCase(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Case\",\"preciseIdentifier\":\"s:7SwiftUI4TextV4CaseO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textCase(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/textcase(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/textcontenttype(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSTextContentType\",\"preciseIdentifier\":\"c:@T@NSTextContentType\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/textcontenttype(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textContentType(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.textContentType(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"textContentType(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSTextContentType\",\"preciseIdentifier\":\"c:@T@NSTextContentType\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15textContentTypeyQrSo06NSTexteF0aSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/textContentType(_:)\":{\"role\":\"symbol\",\"title\":\"textContentType(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSTextContentType\",\"preciseIdentifier\":\"c:@T@NSTextContentType\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textContentType(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/textcontenttype(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/textfieldstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textFieldStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"TextFieldStyle\",\"preciseIdentifier\":\"s:7SwiftUI14TextFieldStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/textfieldstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textFieldStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.textFieldStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"textFieldStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textFieldStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14textFieldStyleyQrqd__AA04TexteF0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/textFieldStyle(_:)\":{\"role\":\"symbol\",\"title\":\"textFieldStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textFieldStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textFieldStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/textfieldstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/textselection(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textSelection\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"selectability\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"TextSelectability\",\"preciseIdentifier\":\"s:7SwiftUI17TextSelectabilityP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/textselection(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textSelection(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.textSelection(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"textSelection(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textSelection\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13textSelectionyQrqd__AA17TextSelectabilityRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/textSelection(_:)\":{\"role\":\"symbol\",\"title\":\"textSelection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textSelection\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textSelection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/textselection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/tint(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/tint(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tint(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4tintyQrAA5ColorVSgF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/tint(_:)\":{\"role\":\"symbol\",\"title\":\"tint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tint(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tint(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/togglestyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toggleStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ToggleStyle\",\"preciseIdentifier\":\"s:7SwiftUI11ToggleStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/togglestyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toggleStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.toggleStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"toggleStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toggleStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11toggleStyleyQrqd__AA06ToggleE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/toggleStyle(_:)\":{\"role\":\"symbol\",\"title\":\"toggleStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toggleStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toggleStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/togglestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/toolbar(content:)-2k0pt.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ToolbarContent\",\"preciseIdentifier\":\"s:7SwiftUI14ToolbarContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/toolbar(content:)-2k0pt\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toolbar(content:)-2k0pt\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.toolbar(content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7toolbar7contentQrqd__yXE_tAA14ToolbarContentRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/toolbar(content:)-2k0pt\":{\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toolbar(content:)-2k0pt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/toolbar(content:)-2k0pt\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/toolbar(content:)-4sm5t.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/toolbar(content:)-4sm5t\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toolbar(content:)-4sm5t\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.toolbar(content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7toolbar7contentQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/toolbar(content:)-4sm5t\":{\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toolbar(content:)-4sm5t\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/toolbar(content:)-4sm5t\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/toolbar(id:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"CustomizableToolbarContent\",\"preciseIdentifier\":\"s:7SwiftUI26CustomizableToolbarContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/toolbar(id:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toolbar(id:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.toolbar(id:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"toolbar(id:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7toolbar2id7contentQrSS_qd__yXEtAA26CustomizableToolbarContentRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/toolbar(id:content:)\":{\"role\":\"symbol\",\"title\":\"toolbar(id:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toolbar(id:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/toolbar(id:content:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/touchbar(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBar\",\"preciseIdentifier\":\"s:7SwiftUI8TouchBarV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbar(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBar(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBar(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBar(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBar\",\"preciseIdentifier\":\"s:7SwiftUI8TouchBarV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8touchBaryQrAA05TouchE0Vyqd__GAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/touchBar(_:)\":{\"role\":\"symbol\",\"title\":\"touchBar(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBar\",\"preciseIdentifier\":\"s:7SwiftUI8TouchBarV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBar(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbar(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/touchbar(content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbar(content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBar(content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBar(content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBar(content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8touchBar7contentQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/touchBar(content:)\":{\"role\":\"symbol\",\"title\":\"touchBar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBar(content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbar(content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/touchbarcustomizationlabel(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarCustomizationLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbarcustomizationlabel(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBarCustomizationLabel(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBarCustomizationLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBarCustomizationLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarCustomizationLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26touchBarCustomizationLabelyQrAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/touchBarCustomizationLabel(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarCustomizationLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarCustomizationLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBarCustomizationLabel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbarcustomizationlabel(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/touchbaritempresence(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPresence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"presence\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBarItemPresence\",\"preciseIdentifier\":\"s:7SwiftUI20TouchBarItemPresenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbaritempresence(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBarItemPresence(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBarItemPresence(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBarItemPresence(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPresence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBarItemPresence\",\"preciseIdentifier\":\"s:7SwiftUI20TouchBarItemPresenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20touchBarItemPresenceyQrAA05TouchefG0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/touchBarItemPresence(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarItemPresence(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPresence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBarItemPresence\",\"preciseIdentifier\":\"s:7SwiftUI20TouchBarItemPresenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBarItemPresence(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbaritempresence(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/touchbaritemprincipal(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPrincipal\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"principal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbaritemprincipal(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBarItemPrincipal(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBarItemPrincipal(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBarItemPrincipal(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPrincipal\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21touchBarItemPrincipalyQrSbF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/touchBarItemPrincipal(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarItemPrincipal(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPrincipal\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBarItemPrincipal(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbaritemprincipal(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/transaction(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transaction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Transaction\",\"preciseIdentifier\":\"s:7SwiftUI11TransactionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/transaction(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transaction(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transaction(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transaction(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transaction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Transaction\",\"preciseIdentifier\":\"s:7SwiftUI11TransactionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11transactionyQryAA11TransactionVzcF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/transaction(_:)\":{\"role\":\"symbol\",\"title\":\"transaction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transaction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Transaction\",\"preciseIdentifier\":\"s:7SwiftUI11TransactionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transaction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transaction(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/transformanchorpreference(key:value:transform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformAnchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformanchorpreference(key:value:transform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformAnchorPreference(key:value:transform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transformAnchorPreference(key:value:transform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transformAnchorPreference(key:value:transform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformAnchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25transformAnchorPreference3key5value0D0Qrqd_0_m_AA0E0V6SourceVyqd___Gy5ValueQyd_0_z_AIyqd__GtctAA0F3KeyRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/transformAnchorPreference(key:value:transform:)\":{\"role\":\"symbol\",\"title\":\"transformAnchorPreference(key:value:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformAnchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformAnchorPreference(key:value:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformanchorpreference(key:value:transform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/transformeffect(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGAffineTransform\",\"preciseIdentifier\":\"c:@S@CGAffineTransform\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformeffect(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformEffect(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transformEffect(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transformEffect(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGAffineTransform\",\"preciseIdentifier\":\"c:@S@CGAffineTransform\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15transformEffectyQrSo17CGAffineTransformVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/transformEffect(_:)\":{\"role\":\"symbol\",\"title\":\"transformEffect(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGAffineTransform\",\"preciseIdentifier\":\"c:@S@CGAffineTransform\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformEffect(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformeffect(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/transformenvironment(_:transform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEnvironment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"keyPath\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformenvironment(_:transform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformEnvironment(_:transform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transformEnvironment(_:transform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transformEnvironment(_:transform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEnvironment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20transformEnvironment_0D0Qrs15WritableKeyPathCyAA0E6ValuesVqd__G_yqd__zctlF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/transformEnvironment(_:transform:)\":{\"role\":\"symbol\",\"title\":\"transformEnvironment(_:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEnvironment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformEnvironment(_:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformenvironment(_:transform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/transformpreference(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"callback\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformpreference(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformPreference(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transformPreference(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transformPreference(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19transformPreferenceyQrqd__m_y5ValueQyd__zctAA0E3KeyRd__lF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/transformPreference(_:_:)\":{\"role\":\"symbol\",\"title\":\"transformPreference(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformPreference(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformpreference(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/transition(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transition\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"t\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyTransition\",\"preciseIdentifier\":\"s:7SwiftUI13AnyTransitionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/transition(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transition(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transition(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transition(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transition\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyTransition\",\"preciseIdentifier\":\"s:7SwiftUI13AnyTransitionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10transitionyQrAA13AnyTransitionVF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/transition(_:)\":{\"role\":\"symbol\",\"title\":\"transition(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transition\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyTransition\",\"preciseIdentifier\":\"s:7SwiftUI13AnyTransitionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transition(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transition(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/truncationmode(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"truncationMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"TruncationMode\",\"preciseIdentifier\":\"s:7SwiftUI4TextV14TruncationModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/truncationmode(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/truncationMode(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.truncationMode(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"truncationMode(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"truncationMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"TruncationMode\",\"preciseIdentifier\":\"s:7SwiftUI4TextV14TruncationModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14truncationModeyQrAA4TextV010TruncationE0OF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/truncationMode(_:)\":{\"role\":\"symbol\",\"title\":\"truncationMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"truncationMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"TruncationMode\",\"preciseIdentifier\":\"s:7SwiftUI4TextV14TruncationModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/truncationMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/truncationmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/unredacted().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"unredacted\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/unredacted()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/unredacted()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.unredacted()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"unredacted()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"unredacted\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10unredactedQryF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/unredacted()\":{\"role\":\"symbol\",\"title\":\"unredacted()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"unredacted\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/unredacted()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/unredacted()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/useractivity(_:element:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activityType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"element\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"update\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/useractivity(_:element:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/userActivity(_:element:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.userActivity(_:element:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"userActivity(_:element:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"element\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\"?, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12userActivity_7element_QrSS_qd__Sgyqd___So06NSUserE0CtctlF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/userActivity(_:element:_:)\":{\"role\":\"symbol\",\"title\":\"userActivity(_:element:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"element\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\"?, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/userActivity(_:element:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/useractivity(_:element:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/useractivity(_:isactive:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activityType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isActive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"update\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/useractivity(_:isactive:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/userActivity(_:isActive:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.userActivity(_:isActive:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"userActivity(_:isActive:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isActive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12userActivity_8isActive_QrSS_SbySo06NSUserE0CctF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/userActivity(_:isActive:_:)\":{\"role\":\"symbol\",\"title\":\"userActivity(_:isActive:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isActive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/userActivity(_:isActive:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/useractivity(_:isactive:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/view-implementations.json",
    "content": "{\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"interfaceLanguage\":\"swift\"},\"topicSections\":[{\"title\":\"Instance Methods\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accentColor(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(activationPoint:)-5yxv\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(activationPoint:)-6f80\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(addTraits:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(hidden:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(hint:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(identifier:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(inputLabels:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(label:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(removeTraits:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(selectionIdentifier:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(sortPriority:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(value:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(action:label:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(named:_:)-5vajk\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(named:_:)-7cvr0\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(named:_:)-7d1bz\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityActivationPoint(_:)-4i64i\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityActivationPoint(_:)-8rijn\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAddTraits(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAdjustableAction(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityChartDescriptor(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityChildren(children:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-1dnrk\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-1ucuw\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-2nazk\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-3pllm\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-3pod7\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-4xdb3\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-5vxjo\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-qwm7\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityElement(children:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityFocused(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityFocused(_:equals:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHeading(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHidden(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHint(_:)-1rrl0\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHint(_:)-5nt5z\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHint(_:)-v4ao\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityIdentifier(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityIgnoresInvertColors(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityInputLabels(_:)-3x55a\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityInputLabels(_:)-6n0d7\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityInputLabels(_:)-8jm4t\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabel(_:)-3ly3t\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabel(_:)-4h91y\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabel(_:)-6a6no\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabeledPair(role:id:in:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLinkedGroup(id:in:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRemoveTraits(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRepresentation(representation:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRespondsToUserInteraction(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-1orax\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-2p5bh\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-5mxjh\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-7dolw\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-10oqf\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-25d98\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-51dnw\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-6jn71\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-3f3j9\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-3lh2p\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-6wf02\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-7t24j\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-6nczq\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-8d4es\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-8l6zm\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-964n8\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotorEntry(id:in:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityScrollAction(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityShowsLargeContentViewer()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityShowsLargeContentViewer(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilitySortPriority(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityTextContentType(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityValue(_:)-3kff4\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityValue(_:)-7dd6l\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityValue(_:)-7tnqf\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:)-2i24c\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:)-6i5wg\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:)-6mdoc\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:message:)-5j65x\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:message:)-6iohl\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:message:)-8x9o0\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:)-43fim\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:)-6dwv5\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:)-77clm\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:message:)-7p8yz\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:message:)-7ptxx\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:message:)-88es2\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(isPresented:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(isPresented:error:actions:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(isPresented:error:actions:message:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(item:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alignmentGuide(_:computeValue:)-5dc06\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alignmentGuide(_:computeValue:)-98bnf\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/allowsHitTesting(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/allowsTightening(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/anchorPreference(key:value:transform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/animation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/animation(_:value:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/aspectRatio(_:contentMode:)-7qpsf\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/aspectRatio(_:contentMode:)-98csp\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:alignment:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:ignoresSafeAreaEdges:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:in:fillStyle:)-16mk7\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:in:fillStyle:)-3xtjy\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(alignment:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(ignoresSafeAreaEdges:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(in:fillStyle:)-22zkr\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(in:fillStyle:)-pkki\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/backgroundPreferenceValue(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-23vvh\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-3b7a5\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-4eyh0\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-5yfrj\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/blendMode(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/blur(radius:opaque:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/border(_:width:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/brightness(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/buttonBorderShape(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/buttonStyle(_:)-1hkio\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/buttonStyle(_:)-1mobg\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselAnimation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselPadding(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselScale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselSpacing(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselTrigger(on:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/clipShape(_:style:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/clipped(antialiased:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/colorInvert()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/colorMultiply(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/colorScheme(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/compositingGroup()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-7c2i9\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-7p1mg\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-9t8f5\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-592a8\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-6sq5i\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-8ffij\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-455gp\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7pvn4\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-8fhv\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-4bg57\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-4pxpc\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-50r8e\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/containerShape(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contentShape(_:_:eoFill:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contentShape(_:eoFill:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contextMenu(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contextMenu(menuItems:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contrast(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/controlGroupStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/controlSize(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/coordinateSpace(name:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/cornerRadius(_:antialiased:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/datePickerStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/defaultAppStorage(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/deleteDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/disableAutocorrection(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/disabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/drawingGroup(opaque:colorMode:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/dynamicTypeSize(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/edgesIgnoringSafeArea(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/environment(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/environmentObject(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/exportsItemProviders(_:onExport:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/exportsItemProviders(_:onExport:onEdit:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-54p9i\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-z1af\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:documents:contentType:onCompletion:)-4ixib\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:documents:contentType:onCompletion:)-72o0w\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileMover(isPresented:file:onCompletion:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileMover(isPresented:files:onCompletion:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fixedSize()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fixedSize(horizontal:vertical:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/flipsForRightToLeftLayoutDirection(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusScope(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusable(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusable(_:onFocusChange:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focused(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focused(_:equals:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusedSceneValue(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusedValue(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/font(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundColor(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundStyle(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundStyle(_:_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/frame()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/frame(width:height:alignment:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/gesture(_:including:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/grayscale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/groupBoxStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/handlesExternalEvents(preferring:allowing:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/headerProminence(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/help(_:)-4gfc1\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/help(_:)-57kg7\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/help(_:)-5c7gg\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/hidden()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/highPriorityGesture(_:including:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/horizontalRadioGroupLayout()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/hueRotation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/id(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/ignoresSafeArea(_:edges:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/imageScale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/importsItemProviders(_:onImport:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/interactiveDismissDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/itemProvider(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:)-8kg9p\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:)-92las\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:modifiers:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:modifiers:localization:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/labelStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/labelsHidden()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/layoutPriority(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/lineLimit(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/lineSpacing(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listItemTint(_:)-4okc6\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listItemTint(_:)-8uys6\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listRowBackground(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listRowInsets(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/luminanceToAlpha()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/mask(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/mask(alignment:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/menuButtonStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/menuIndicator(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/menuStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/minimumScaleFactor(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/modifier(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/monospacedDigit()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/moveDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/multilineTextAlignment(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationSubtitle(_:)-4xcr1\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationSubtitle(_:)-62wq4\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationSubtitle(_:)-89wf8\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-15ycd\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-3gz4j\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-6t67o\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-8moj6\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationViewStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/offset(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/offset(x:y:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onAppear(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCarousel(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCarouselTranslation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onChange(of:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCommand(_:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onContinueUserActivity(_:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCopyCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCutCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDeleteCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDisappear(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrag(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrag(_:preview:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:delegate:)-55jbd\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:delegate:)-9xy3o\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-2wosm\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-4zd72\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-6o6wo\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-btgb\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onExitCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onHover(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:pressing:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onMoveCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onOpenURL(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:perform:)-3phpt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:perform:)-7nzf4\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:validator:perform:)-5h2lv\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:validator:perform:)-7k6qm\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPlayPauseCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPreferenceChange(_:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onReceive(_:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleDeck(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleDeckTranslation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleTranslation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onSubmit(of:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onTapGesture(count:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/opacity(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(_:alignment:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(_:ignoresSafeAreaEdges:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(_:in:fillStyle:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(alignment:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlayPreferenceValue(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/padding(_:)-5f3wf\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/padding(_:)-7cp9q\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/padding(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/pageCommand(value:in:step:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/pickerStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/popover(item:attachmentAnchor:arrowEdge:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/position(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/position(x:y:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/preference(key:value:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/preferredColorScheme(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/prefersDefaultFocus(_:in:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/presentedWindowStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/presentedWindowToolbarStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewContext(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewDevice(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewDisplayName(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewInterfaceOrientation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewLayout(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/privacySensitive(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/progressViewStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/projectionEffect(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/redacted(reason:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/refreshable(action:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/rotationEffect(_:anchor:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/safeAreaInset(edge:alignment:spacing:content:)-4gojk\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/safeAreaInset(edge:alignment:spacing:content:)-9bx6p\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/saturation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaleEffect(_:anchor:)-4byje\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaleEffect(_:anchor:)-6bduh\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaleEffect(x:y:anchor:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaledToFill()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaledToFit()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scenePadding(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchCompletion(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:)-2i9jl\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:)-50j7i\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:)-75a6t\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:suggestions:)-5bsg8\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:suggestions:)-5ib9a\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:suggestions:)-8fyqc\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shadow(color:radius:x:y:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/sheet(isPresented:onDismiss:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/sheet(item:onDismiss:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleAnimation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckAnimation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckScale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckTrigger(on:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleOffset(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shufflePadding(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleScale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleTrigger(on:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/simultaneousGesture(_:including:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechAdjustedPitch(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechAlwaysIncludesPunctuation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechAnnouncementsQueued(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechSpellsOutCharacters(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/submitLabel(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/submitScope(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/swipeActions(edge:allowsFullSwipe:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/symbolRenderingMode(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/symbolVariant(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tabItem(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tabViewStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tableStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tag(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/task(id:priority:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/task(priority:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textCase(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textContentType(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textFieldStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textSelection(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tint(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toggleStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toolbar(content:)-2k0pt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toolbar(content:)-4sm5t\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toolbar(id:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBar(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBar(content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBarCustomizationLabel(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBarItemPresence(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBarItemPrincipal(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transaction(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformAnchorPreference(key:value:transform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformEffect(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformEnvironment(_:transform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformPreference(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transition(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/truncationMode(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/unredacted()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/userActivity(_:element:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/userActivity(_:isActive:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/zIndex(_:)\"],\"generated\":true}],\"kind\":\"article\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"collectionGroup\",\"title\":\"View Implementations\"},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/multilineTextAlignment(_:)\":{\"role\":\"symbol\",\"title\":\"multilineTextAlignment(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"multilineTextAlignment\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TextAlignment\",\"preciseIdentifier\":\"s:7SwiftUI13TextAlignmentO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/multilineTextAlignment(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/multilinetextalignment(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/menuButtonStyle(_:)\":{\"role\":\"symbol\",\"title\":\"menuButtonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuButtonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/menuButtonStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/menubuttonstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-8fhv\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-8fhv\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-8fhv\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/importsItemProviders(_:onImport:)\":{\"role\":\"symbol\",\"title\":\"importsItemProviders(_:onImport:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"importsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onImport\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/importsItemProviders(_:onImport:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/importsitemproviders(_:onimport:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/border(_:width:)\":{\"role\":\"symbol\",\"title\":\"border(_:width:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"border\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/border(_:width:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/border(_:width:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:presenting:actions:message:)-88es2\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:message:)-88es2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:message:)-88es2\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onPasteCommand(of:perform:)-7nzf4\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:perform:)-7nzf4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:perform:)-7nzf4\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/popover(isPresented:attachmentAnchor:arrowEdge:content:)\":{\"role\":\"symbol\",\"title\":\"popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/popover(ispresented:attachmentanchor:arrowedge:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryID:entryLabel:)-51dnw\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-51dnw\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-51dnw\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/presentedWindowStyle(_:)\":{\"role\":\"symbol\",\"title\":\"presentedWindowStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/presentedWindowStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/presentedwindowstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shufflescale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-1ucuw\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-1ucuw\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-1ucuw\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:perform:onpressingchanged:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/frame(width:height:alignment:)\":{\"role\":\"symbol\",\"title\":\"frame(width:height:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"height\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/frame(width:height:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/frame(width:height:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/pageCommand(value:in:step:)\":{\"role\":\"symbol\",\"title\":\"pageCommand(value:in:step:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pageCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ClosedRange\",\"preciseIdentifier\":\"s:SN\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"step\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/pageCommand(value:in:step:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/pagecommand(value:in:step:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(activationPoint:)-5yxv\":{\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(activationPoint:)-5yxv\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(activationpoint:)-5yxv\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onShuffleDeck(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeck(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeck\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A11DeckContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleDeck(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffledeck(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:textRanges:)-6nczq\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-6nczq\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-6nczq\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/modifier(_:)\":{\"role\":\"symbol\",\"title\":\"modifier(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/modifier(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/modifier(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/foregroundStyle(_:_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundStyle(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundstyle(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accentColor(_:)\":{\"role\":\"symbol\",\"title\":\"accentColor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accentColor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accentcolor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/padding(_:_:)\":{\"role\":\"symbol\",\"title\":\"padding(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/padding(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/padding(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:presenting:actions:message:)-7p8yz\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:message:)-7p8yz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:message:)-7p8yz\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/presentedWindowToolbarStyle(_:)\":{\"role\":\"symbol\",\"title\":\"presentedWindowToolbarStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowToolbarStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/presentedWindowToolbarStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/presentedwindowtoolbarstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A5StyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle style of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shufflestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fixedSize()\":{\"role\":\"symbol\",\"title\":\"fixedSize()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fixedSize()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fixedsize()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityValue(_:)-7tnqf\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityValue(_:)-7tnqf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityvalue(_:)-7tnqf\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(_:alignment:)\":{\"role\":\"symbol\",\"title\":\"background(_:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/anchorPreference(key:value:transform:)\":{\"role\":\"symbol\",\"title\":\"anchorPreference(key:value:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"anchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/anchorPreference(key:value:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/anchorpreference(key:value:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(value:)\":{\"role\":\"symbol\",\"title\":\"accessibility(value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(value:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrop(of:isTargeted:perform:)-btgb\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-btgb\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-btgb\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/position(_:)\":{\"role\":\"symbol\",\"title\":\"position(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/position(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/position(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/preference(key:value:)\":{\"role\":\"symbol\",\"title\":\"preference(key:value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/preference(key:value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/preference(key:value:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselScale(_:)\":{\"role\":\"symbol\",\"title\":\"carouselScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the contents right next to the current content of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shufflePadding(_:)\":{\"role\":\"symbol\",\"title\":\"shufflePadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shufflePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shufflePadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shufflepadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/hidden()\":{\"role\":\"symbol\",\"title\":\"hidden()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/hidden()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/hidden()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onShuffle(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffle\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A7ContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/scaleEffect(x:y:anchor:)\":{\"role\":\"symbol\",\"title\":\"scaleEffect(x:y:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaleEffect(x:y:anchor:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaleeffect(x:y:anchor:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focusable(_:)\":{\"role\":\"symbol\",\"title\":\"focusable(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusable(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusable(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrop(of:isTargeted:perform:)-6o6wo\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-6o6wo\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-6o6wo\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/help(_:)-57kg7\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/help(_:)-57kg7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/help(_:)-57kg7\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledecktrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityLabel(_:)-4h91y\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabel(_:)-4h91y\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabel(_:)-4h91y\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/saturation(_:)\":{\"role\":\"symbol\",\"title\":\"saturation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"saturation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/saturation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/saturation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-3pod7\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-3pod7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-3pod7\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/toolbar(id:content:)\":{\"role\":\"symbol\",\"title\":\"toolbar(id:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toolbar(id:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/toolbar(id:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/foregroundStyle(_:_:_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundStyle(_:_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundstyle(_:_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/contextMenu(menuItems:)\":{\"role\":\"symbol\",\"title\":\"contextMenu(menuItems:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"menuItems\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contextMenu(menuItems:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contextmenu(menuitems:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityLabel(_:)-6a6no\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabel(_:)-6a6no\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabel(_:)-6a6no\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/scaledToFill()\":{\"role\":\"symbol\",\"title\":\"scaledToFill()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFill\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaledToFill()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaledtofill()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAction(named:_:)-7d1bz\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(named:_:)-7d1bz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(named:_:)-7d1bz\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/layoutPriority(_:)\":{\"role\":\"symbol\",\"title\":\"layoutPriority(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"layoutPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/layoutPriority(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/layoutpriority(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-4bg57\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-4bg57\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4bg57\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/aspectRatio(_:contentMode:)-7qpsf\":{\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/aspectRatio(_:contentMode:)-7qpsf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/aspectratio(_:contentmode:)-7qpsf\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:actions:)-6i5wg\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:)-6i5wg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:)-6i5wg\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/frame()\":{\"role\":\"symbol\",\"title\":\"frame()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/frame()\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/frame()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alignmentGuide(_:computeValue:)-5dc06\":{\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alignmentGuide(_:computeValue:)-5dc06\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alignmentguide(_:computevalue:)-5dc06\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/blur(radius:opaque:)\":{\"role\":\"symbol\",\"title\":\"blur(radius:opaque:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blur\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/blur(radius:opaque:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/blur(radius:opaque:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchable(text:placement:prompt:suggestions:)-5ib9a\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:suggestions:)-5ib9a\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:suggestions:)-5ib9a\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/textCase(_:)\":{\"role\":\"symbol\",\"title\":\"textCase(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Case\",\"preciseIdentifier\":\"s:7SwiftUI4TextV4CaseO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textCase(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/textcase(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilitySortPriority(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilitySortPriority(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilitySortPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilitySortPriority(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitysortpriority(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"allowsMultipleSelection\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focusedSceneValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"focusedSceneValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedSceneValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusedSceneValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusedscenevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/overlay(_:alignment:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(_:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(_:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/keyboardShortcut(_:)-92las\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:)-92las\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:)-92las\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAction(named:_:)-7cvr0\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(named:_:)-7cvr0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(named:_:)-7cvr0\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(_:in:fillStyle:)-3xtjy\":{\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:in:fillStyle:)-3xtjy\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:in:fillstyle:)-3xtjy\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onReceive(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onReceive(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onReceive\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onReceive(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onreceive(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/symbolRenderingMode(_:)\":{\"role\":\"symbol\",\"title\":\"symbolRenderingMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolRenderingMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI19SymbolRenderingModeV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/symbolRenderingMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/symbolrenderingmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/keyboardShortcut(_:modifiers:)\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:modifiers:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:modifiers:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:actions:)-9t8f5\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-9t8f5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-9t8f5\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotorEntry(id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRotorEntry(id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotorEntry\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotorEntry(id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotorentry(id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/exportsItemProviders(_:onExport:)\":{\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/exportsItemProviders(_:onExport:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/exportsitemproviders(_:onexport:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/toolbar(content:)-2k0pt\":{\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toolbar(content:)-2k0pt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/toolbar(content:)-2k0pt\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/toggleStyle(_:)\":{\"role\":\"symbol\",\"title\":\"toggleStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toggleStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toggleStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/togglestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/transformAnchorPreference(key:value:transform:)\":{\"role\":\"symbol\",\"title\":\"transformAnchorPreference(key:value:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformAnchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformAnchorPreference(key:value:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformanchorpreference(key:value:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/monospacedDigit()\":{\"role\":\"symbol\",\"title\":\"monospacedDigit()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"monospacedDigit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/monospacedDigit()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/monospaceddigit()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-6sq5i\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-6sq5i\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-6sq5i\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/touchBarItemPrincipal(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarItemPrincipal(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPrincipal\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBarItemPrincipal(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbaritemprincipal(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryID:entryLabel:)-6jn71\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-6jn71\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-6jn71\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(selectionIdentifier:)\":{\"role\":\"symbol\",\"title\":\"accessibility(selectionIdentifier:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"selectionIdentifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyHashable\",\"preciseIdentifier\":\"s:s11AnyHashableV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(selectionIdentifier:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(selectionidentifier:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-592a8\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-592a8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-592a8\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/contentShape(_:eoFill:)\":{\"role\":\"symbol\",\"title\":\"contentShape(_:eoFill:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contentShape(_:eoFill:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contentshape(_:eofill:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focusScope(_:)\":{\"role\":\"symbol\",\"title\":\"focusScope(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusScope(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusscope(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileMover(isPresented:file:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileMover(isPresented:file:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"file\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileMover(isPresented:file:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/filemover(ispresented:file:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchable(text:placement:prompt:)-2i9jl\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:)-2i9jl\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:)-2i9jl\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/containerShape(_:)\":{\"role\":\"symbol\",\"title\":\"containerShape(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"containerShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/containerShape(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/containershape(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/transition(_:)\":{\"role\":\"symbol\",\"title\":\"transition(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transition\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyTransition\",\"preciseIdentifier\":\"s:7SwiftUI13AnyTransitionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transition(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transition(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"background(ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/hueRotation(_:)\":{\"role\":\"symbol\",\"title\":\"hueRotation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hueRotation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/hueRotation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/huerotation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityValue(_:)-3kff4\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityValue(_:)-3kff4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityvalue(_:)-3kff4\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/userActivity(_:element:_:)\":{\"role\":\"symbol\",\"title\":\"userActivity(_:element:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"element\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\"?, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/userActivity(_:element:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/useractivity(_:element:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/speechAdjustedPitch(_:)\":{\"role\":\"symbol\",\"title\":\"speechAdjustedPitch(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAdjustedPitch\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechAdjustedPitch(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechadjustedpitch(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that disables user interaction to shuffle content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/cornerRadius(_:antialiased:)\":{\"role\":\"symbol\",\"title\":\"cornerRadius(_:antialiased:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"cornerRadius\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/cornerRadius(_:antialiased:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/cornerradius(_:antialiased:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-455gp\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-455gp\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-455gp\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/contextMenu(_:)\":{\"role\":\"symbol\",\"title\":\"contextMenu(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContextMenu\",\"preciseIdentifier\":\"s:7SwiftUI11ContextMenuV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contextMenu(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contextmenu(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onCutCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onCutCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCutCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCutCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncutcommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/animation(_:value:)\":{\"role\":\"symbol\",\"title\":\"animation(_:value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/animation(_:value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/animation(_:value:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/previewLayout(_:)\":{\"role\":\"symbol\",\"title\":\"previewLayout(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewLayout\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewLayout\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewLayoutO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewLayout(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewlayout(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(hint:)\":{\"role\":\"symbol\",\"title\":\"accessibility(hint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(hint:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(hint:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityLabeledPair(role:id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityLabeledPair(role:id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabeledPair\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"role\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityLabeledPairRole\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityLabeledPairRoleO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabeledPair(role:id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabeledpair(role:id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityHint(_:)-5nt5z\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHint(_:)-5nt5z\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhint(_:)-5nt5z\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle animation of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:presenting:actions:message:)-7ptxx\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:message:)-7ptxx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:message:)-7ptxx\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focused(_:)\":{\"role\":\"symbol\",\"title\":\"focused(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focused(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focused(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityValue(_:)-7dd6l\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityValue(_:)-7dd6l\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityvalue(_:)-7dd6l\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-54p9i\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-54p9i\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-54p9i\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/disableAutocorrection(_:)\":{\"role\":\"symbol\",\"title\":\"disableAutocorrection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disableAutocorrection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/disableAutocorrection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/disableautocorrection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrag(_:preview:)\":{\"role\":\"symbol\",\"title\":\"onDrag(_:preview:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"preview\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrag(_:preview:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrag(_:preview:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/colorMultiply(_:)\":{\"role\":\"symbol\",\"title\":\"colorMultiply(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorMultiply\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/colorMultiply(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/colormultiply(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/scenePadding(_:)\":{\"role\":\"symbol\",\"title\":\"scenePadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scenePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scenePadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scenepadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryLabel:)-6wf02\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-6wf02\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-6wf02\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityHeading(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityHeading(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHeading\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityHeadingLevel\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityHeadingLevelO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHeading(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityheading(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityLabel(_:)-3ly3t\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLabel(_:)-3ly3t\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabel(_:)-3ly3t\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityFocused(_:equals:)\":{\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:equals:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityFocused(_:equals:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityfocused(_:equals:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/submitLabel(_:)\":{\"role\":\"symbol\",\"title\":\"submitLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitLabel\",\"preciseIdentifier\":\"s:7SwiftUI11SubmitLabelV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/submitLabel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/submitlabel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onPasteCommand(of:validator:perform:)-7k6qm\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:validator:perform:)-7k6qm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:validator:perform:)-7k6qm\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityScrollAction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityScrollAction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityScrollAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityScrollAction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityscrollaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/offset(x:y:)\":{\"role\":\"symbol\",\"title\":\"offset(x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/offset(x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/offset(x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/preferredColorScheme(_:)\":{\"role\":\"symbol\",\"title\":\"preferredColorScheme(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preferredColorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/preferredColorScheme(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/preferredcolorscheme(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:actions:message:)-5j65x\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:message:)-5j65x\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:message:)-5j65x\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onPasteCommand(of:perform:)-3phpt\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:perform:)-3phpt\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:perform:)-3phpt\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/contentShape(_:_:eoFill:)\":{\"role\":\"symbol\",\"title\":\"contentShape(_:_:eoFill:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentShapeKinds\",\"preciseIdentifier\":\"s:7SwiftUI17ContentShapeKindsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contentShape(_:_:eoFill:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contentshape(_:_:eofill:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fixedSize(horizontal:vertical:)\":{\"role\":\"symbol\",\"title\":\"fixedSize(horizontal:vertical:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"horizontal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"vertical\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fixedSize(horizontal:vertical:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fixedsize(horizontal:vertical:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DeckStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle style of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onTapGesture(count:perform:)\":{\"role\":\"symbol\",\"title\":\"onTapGesture(count:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onTapGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onTapGesture(count:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ontapgesture(count:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityShowsLargeContentViewer(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityShowsLargeContentViewer(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityshowslargecontentviewer(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:actions:)-7c2i9\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-7c2i9\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-7c2i9\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(alignment:content:)\":{\"role\":\"symbol\",\"title\":\"background(alignment:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(alignment:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(alignment:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/help(_:)-4gfc1\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/help(_:)-4gfc1\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/help(_:)-4gfc1\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(isPresented:error:actions:message:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(isPresented:error:actions:message:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(ispresented:error:actions:message:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/foregroundColor(_:)\":{\"role\":\"symbol\",\"title\":\"foregroundColor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundColor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundcolor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleOffset(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleOffset(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleOffset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value that is used to shift the offset of the upcoming and previous content views behind the view of the current index.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleOffset(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffleoffset(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/transformEffect(_:)\":{\"role\":\"symbol\",\"title\":\"transformEffect(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGAffineTransform\",\"preciseIdentifier\":\"c:@S@CGAffineTransform\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformEffect(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformeffect(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationSubtitle(_:)-62wq4\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationSubtitle(_:)-62wq4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationsubtitle(_:)-62wq4\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onCarouselTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onCarouselTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarouselTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while sliding content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCarouselTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncarouseltranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/moveDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"moveDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"moveDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/moveDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/movedisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/lineSpacing(_:)\":{\"role\":\"symbol\",\"title\":\"lineSpacing(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/lineSpacing(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/linespacing(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/badge(_:)-4eyh0\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-4eyh0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-4eyh0\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/colorScheme(_:)\":{\"role\":\"symbol\",\"title\":\"colorScheme(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/colorScheme(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/colorscheme(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileImporter(isPresented:allowedContentTypes:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationTitle(_:)-6t67o\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-6t67o\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-6t67o\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/help(_:)-5c7gg\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/help(_:)-5c7gg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/help(_:)-5c7gg\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/defaultAppStorage(_:)\":{\"role\":\"symbol\",\"title\":\"defaultAppStorage(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"defaultAppStorage\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UserDefaults\",\"preciseIdentifier\":\"c:objc(cs)NSUserDefaults\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/defaultAppStorage(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/defaultappstorage(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(_:ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"background(_:ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-1dnrk\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-1dnrk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-1dnrk\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchable(text:placement:prompt:suggestions:)-5bsg8\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:suggestions:)-5bsg8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:suggestions:)-5bsg8\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the left and right content views of shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/itemProvider(_:)\":{\"role\":\"symbol\",\"title\":\"itemProvider(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"itemProvider\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Optional\",\"preciseIdentifier\":\"s:Sq\"},{\"kind\":\"text\",\"text\":\"<() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"?>) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/itemProvider(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/itemprovider(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focused(_:equals:)\":{\"role\":\"symbol\",\"title\":\"focused(_:equals:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focused(_:equals:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focused(_:equals:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/mask(alignment:_:)\":{\"role\":\"symbol\",\"title\":\"mask(alignment:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/mask(alignment:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/mask(alignment:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/tabItem(_:)\":{\"role\":\"symbol\",\"title\":\"tabItem(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabItem\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tabItem(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tabitem(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/matchedGeometryEffect(id:in:properties:anchor:isSource:)\":{\"role\":\"symbol\",\"title\":\"matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"matchedGeometryEffect\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"properties\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"MatchedGeometryProperties\",\"preciseIdentifier\":\"s:7SwiftUI25MatchedGeometryPropertiesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isSource\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/matchedgeometryeffect(id:in:properties:anchor:issource:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onOpenURL(perform:)\":{\"role\":\"symbol\",\"title\":\"onOpenURL(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onOpenURL\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onOpenURL(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onopenurl(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:)-7dolw\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-7dolw\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-7dolw\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAddTraits(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAddTraits(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAddTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAddTraits(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaddtraits(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/privacySensitive(_:)\":{\"role\":\"symbol\",\"title\":\"privacySensitive(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"privacySensitive\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/privacySensitive(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/privacysensitive(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:presenting:actions:)-77clm\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:)-77clm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:)-77clm\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAction(action:label:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(action:label:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(action:label:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(action:label:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/scaledToFit()\":{\"role\":\"symbol\",\"title\":\"scaledToFit()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaledToFit()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaledtofit()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/buttonStyle(_:)-1mobg\":{\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/buttonStyle(_:)-1mobg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/buttonstyle(_:)-1mobg\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/speechAnnouncementsQueued(_:)\":{\"role\":\"symbol\",\"title\":\"speechAnnouncementsQueued(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAnnouncementsQueued\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechAnnouncementsQueued(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechannouncementsqueued(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(addTraits:)\":{\"role\":\"symbol\",\"title\":\"accessibility(addTraits:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"addTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(addTraits:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(addtraits:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/swipeActions(edge:allowsFullSwipe:content:)\":{\"role\":\"symbol\",\"title\":\"swipeActions(edge:allowsFullSwipe:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"swipeActions\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"allowsFullSwipe\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/swipeActions(edge:allowsFullSwipe:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/swipeactions(edge:allowsfullswipe:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(in:fillStyle:)-pkki\":{\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(in:fillStyle:)-pkki\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(in:fillstyle:)-pkki\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/colorInvert()\":{\"role\":\"symbol\",\"title\":\"colorInvert()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorInvert\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/colorInvert()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/colorinvert()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/pickerStyle(_:)\":{\"role\":\"symbol\",\"title\":\"pickerStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/pickerStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/pickerstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/imageScale(_:)\":{\"role\":\"symbol\",\"title\":\"imageScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"imageScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Image\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Scale\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV5ScaleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/imageScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/imagescale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:presenting:actions:)-43fim\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:)-43fim\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:)-43fim\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/grayscale(_:)\":{\"role\":\"symbol\",\"title\":\"grayscale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"grayscale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/grayscale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/grayscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onCommand(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onCommand(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Selector\",\"preciseIdentifier\":\"s:10ObjectiveC8SelectorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCommand(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncommand(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onAppear(perform:)\":{\"role\":\"symbol\",\"title\":\"onAppear(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onAppear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onAppear(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onappear(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:textRanges:)-964n8\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-964n8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-964n8\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/symbolVariant(_:)\":{\"role\":\"symbol\",\"title\":\"symbolVariant(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolVariant\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolVariants\",\"preciseIdentifier\":\"s:7SwiftUI14SymbolVariantsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/symbolVariant(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/symbolvariant(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:)-2p5bh\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-2p5bh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-2p5bh\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/clipShape(_:style:)\":{\"role\":\"symbol\",\"title\":\"clipShape(_:style:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/clipShape(_:style:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/clipshape(_:style:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselPadding(_:)\":{\"role\":\"symbol\",\"title\":\"carouselPadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselPadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselPadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselpadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityLinkedGroup(id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityLinkedGroup(id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLinkedGroup\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityLinkedGroup(id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylinkedgroup(id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/controlGroupStyle(_:)\":{\"role\":\"symbol\",\"title\":\"controlGroupStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlGroupStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/controlGroupStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/controlgroupstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/keyboardShortcut(_:modifiers:localization:)\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:localization:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"localization\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Localization\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV12LocalizationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:modifiers:localization:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:modifiers:localization:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(item:content:)\":{\"role\":\"symbol\",\"title\":\"alert(item:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(item:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(item:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/position(x:y:)\":{\"role\":\"symbol\",\"title\":\"position(x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/position(x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/position(x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrop(of:isTargeted:perform:)-4zd72\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-4zd72\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-4zd72\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/overlay(_:in:fillStyle:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(_:in:fillStyle:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(_:in:fillstyle:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/backgroundPreferenceValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"backgroundPreferenceValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"backgroundPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/backgroundPreferenceValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/backgroundpreferencevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/id(_:)\":{\"role\":\"symbol\",\"title\":\"id(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/id(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/id(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/safeAreaInset(edge:alignment:spacing:content:)-4gojk\":{\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/safeAreaInset(edge:alignment:spacing:content:)-4gojk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/safeareainset(edge:alignment:spacing:content:)-4gojk\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityIgnoresInvertColors(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityIgnoresInvertColors(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIgnoresInvertColors\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityIgnoresInvertColors(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityignoresinvertcolors(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityElement(children:)\":{\"role\":\"symbol\",\"title\":\"accessibilityElement(children:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityElement\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityChildBehavior\",\"preciseIdentifier\":\"s:7SwiftUI26AccessibilityChildBehaviorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityElement(children:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityelement(children:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A9AnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle animation of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffleanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/exportsItemProviders(_:onExport:onEdit:)\":{\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:onEdit:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onEdit\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/exportsItemProviders(_:onExport:onEdit:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/exportsitemproviders(_:onexport:onedit:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/simultaneousGesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"simultaneousGesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"simultaneousGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/simultaneousGesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/simultaneousgesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchable(text:placement:prompt:)-75a6t\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:)-75a6t\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:)-75a6t\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/ignoresSafeArea(_:edges:)\":{\"role\":\"symbol\",\"title\":\"ignoresSafeArea(_:edges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ignoresSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SafeAreaRegions\",\"preciseIdentifier\":\"s:7SwiftUI15SafeAreaRegionsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/ignoresSafeArea(_:edges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ignoressafearea(_:edges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAdjustableAction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAdjustableAction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAdjustableAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAdjustmentDirection\",\"preciseIdentifier\":\"s:7SwiftUI32AccessibilityAdjustmentDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAdjustableAction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityadjustableaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/unredacted()\":{\"role\":\"symbol\",\"title\":\"unredacted()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"unredacted\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/unredacted()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/unredacted()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onLongPressGesture(minimumDuration:pressing:perform:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:pressing:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:pressing:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:pressing:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onMoveCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onMoveCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onMoveCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"MoveCommandDirection\",\"preciseIdentifier\":\"s:7SwiftUI20MoveCommandDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onMoveCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onmovecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchable(text:placement:prompt:)-50j7i\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:)-50j7i\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:)-50j7i\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrop(of:isTargeted:perform:)-2wosm\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:isTargeted:perform:)-2wosm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-2wosm\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRemoveTraits(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRemoveTraits(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRemoveTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRemoveTraits(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityremovetraits(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-5vxjo\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-5vxjo\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-5vxjo\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/buttonStyle(_:)-1hkio\":{\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/buttonStyle(_:)-1hkio\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/buttonstyle(_:)-1hkio\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/controlSize(_:)\":{\"role\":\"symbol\",\"title\":\"controlSize(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlSize\",\"preciseIdentifier\":\"s:7SwiftUI11ControlSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/controlSize(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/controlsize(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onShuffleDeckTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeckTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeckTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while shuffling content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleDeckTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffledecktranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/labelStyle(_:)\":{\"role\":\"symbol\",\"title\":\"labelStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/labelStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/labelstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/badge(_:)-23vvh\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-23vvh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-23vvh\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/listItemTint(_:)-4okc6\":{\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listItemTint(_:)-4okc6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/listitemtint(_:)-4okc6\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/listStyle(_:)\":{\"role\":\"symbol\",\"title\":\"listStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/liststyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-3pllm\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-3pllm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-3pllm\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-50r8e\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-50r8e\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-50r8e\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:actions:message:)-8x9o0\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:message:)-8x9o0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:message:)-8x9o0\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityIdentifier(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityIdentifier(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIdentifier\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityIdentifier(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityidentifier(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/previewInterfaceOrientation(_:)\":{\"role\":\"symbol\",\"title\":\"previewInterfaceOrientation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewInterfaceOrientation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"InterfaceOrientation\",\"preciseIdentifier\":\"s:7SwiftUI20InterfaceOrientationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewInterfaceOrientation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewinterfaceorientation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityFocused(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityFocused(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityfocused(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(label:)\":{\"role\":\"symbol\",\"title\":\"accessibility(label:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(label:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(label:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityActivationPoint(_:)-4i64i\":{\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityActivationPoint(_:)-4i64i\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityactivationpoint(_:)-4i64i\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onPlayPauseCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onPlayPauseCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPlayPauseCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPlayPauseCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onplaypausecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/listRowBackground(_:)\":{\"role\":\"symbol\",\"title\":\"listRowBackground(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowBackground\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listRowBackground(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/listrowbackground(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/handlesExternalEvents(preferring:allowing:)\":{\"role\":\"symbol\",\"title\":\"handlesExternalEvents(preferring:allowing:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"handlesExternalEvents\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"preferring\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/handlesExternalEvents(preferring:allowing:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/handlesexternalevents(preferring:allowing:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationTitle(_:)-15ycd\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-15ycd\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-15ycd\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"navigationViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"carouselTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouseltrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/previewDisplayName(_:)\":{\"role\":\"symbol\",\"title\":\"previewDisplayName(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDisplayName\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewDisplayName(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewdisplayname(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(activationPoint:)-6f80\":{\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(activationPoint:)-6f80\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(activationpoint:)-6f80\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to shuffle deck content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckdisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/padding(_:)-5f3wf\":{\"role\":\"symbol\",\"title\":\"padding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/padding(_:)-5f3wf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/padding(_:)-5f3wf\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/speechAlwaysIncludesPunctuation(_:)\":{\"role\":\"symbol\",\"title\":\"speechAlwaysIncludesPunctuation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAlwaysIncludesPunctuation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechAlwaysIncludesPunctuation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechalwaysincludespunctuation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRepresentation(representation:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRepresentation(representation:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRepresentation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"representation\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRepresentation(representation:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrepresentation(representation:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/coordinateSpace(name:)\":{\"role\":\"symbol\",\"title\":\"coordinateSpace(name:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"coordinateSpace\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/coordinateSpace(name:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/coordinatespace(name:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/projectionEffect(_:)\":{\"role\":\"symbol\",\"title\":\"projectionEffect(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"projectionEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ProjectionTransform\",\"preciseIdentifier\":\"s:7SwiftUI19ProjectionTransformV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/projectionEffect(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/projectioneffect(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/highPriorityGesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"highPriorityGesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"highPriorityGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/highPriorityGesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/highprioritygesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAction(named:_:)-5vajk\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(named:_:)-5vajk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(named:_:)-5vajk\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/font(_:)\":{\"role\":\"symbol\",\"title\":\"font(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Font\",\"preciseIdentifier\":\"s:7SwiftUI4FontV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/font(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/font(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/luminanceToAlpha()\":{\"role\":\"symbol\",\"title\":\"luminanceToAlpha()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"luminanceToAlpha\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/luminanceToAlpha()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/luminancetoalpha()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/refreshable(action:)\":{\"role\":\"symbol\",\"title\":\"refreshable(action:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"refreshable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/refreshable(action:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/refreshable(action:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityHint(_:)-v4ao\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHint(_:)-v4ao\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhint(_:)-v4ao\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/keyboardShortcut(_:)-8kg9p\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/keyboardShortcut(_:)-8kg9p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:)-8kg9p\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationTitle(_:)-3gz4j\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-3gz4j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-3gz4j\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityShowsLargeContentViewer()\":{\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityShowsLargeContentViewer()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityshowslargecontentviewer()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileExporter(isPresented:documents:contentType:onCompletion:)-72o0w\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:documents:contentType:onCompletion:)-72o0w\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-72o0w\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/textContentType(_:)\":{\"role\":\"symbol\",\"title\":\"textContentType(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSTextContentType\",\"preciseIdentifier\":\"c:@T@NSTextContentType\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textContentType(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/textcontenttype(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/zIndex(_:)\":{\"role\":\"symbol\",\"title\":\"zIndex(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"zIndex\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/zIndex(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/zindex(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/userActivity(_:isActive:_:)\":{\"role\":\"symbol\",\"title\":\"userActivity(_:isActive:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isActive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/userActivity(_:isActive:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/useractivity(_:isactive:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/foregroundStyle(_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/foregroundStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityInputLabels(_:)-8jm4t\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">([\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityInputLabels(_:)-8jm4t\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityinputlabels(_:)-8jm4t\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/clipped(antialiased:)\":{\"role\":\"symbol\",\"title\":\"clipped(antialiased:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipped\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/clipped(antialiased:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/clipped(antialiased:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/compositingGroup()\":{\"role\":\"symbol\",\"title\":\"compositingGroup()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"compositingGroup\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/compositingGroup()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/compositinggroup()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/toolbar(content:)-4sm5t\":{\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/toolbar(content:)-4sm5t\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/toolbar(content:)-4sm5t\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/progressViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"progressViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"progressViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/progressViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/progressviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:actions:)-7p1mg\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-7p1mg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-7p1mg\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/scaleEffect(_:anchor:)-6bduh\":{\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaleEffect(_:anchor:)-6bduh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaleeffect(_:anchor:)-6bduh\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/touchBarCustomizationLabel(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarCustomizationLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarCustomizationLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBarCustomizationLabel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbarcustomizationlabel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:textRanges:)-8d4es\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-8d4es\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-8d4es\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/redacted(reason:)\":{\"role\":\"symbol\",\"title\":\"redacted(reason:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"redacted\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"reason\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"RedactionReasons\",\"preciseIdentifier\":\"s:7SwiftUI16RedactionReasonsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/redacted(reason:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/redacted(reason:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/environmentObject(_:)\":{\"role\":\"symbol\",\"title\":\"environmentObject(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environmentObject\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/environmentObject(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/environmentobject(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/mask(_:)\":{\"role\":\"symbol\",\"title\":\"mask(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/mask(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/mask(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/dynamicTypeSize(_:)\":{\"role\":\"symbol\",\"title\":\"dynamicTypeSize(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"dynamicTypeSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"DynamicTypeSize\",\"preciseIdentifier\":\"s:7SwiftUI15DynamicTypeSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/dynamicTypeSize(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/dynamictypesize(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/aspectRatio(_:contentMode:)-98csp\":{\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/aspectRatio(_:contentMode:)-98csp\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/aspectratio(_:contentmode:)-98csp\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-2nazk\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-2nazk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-2nazk\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/environment(_:_:)\":{\"role\":\"symbol\",\"title\":\"environment(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/environment(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/environment(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/transaction(_:)\":{\"role\":\"symbol\",\"title\":\"transaction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transaction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Transaction\",\"preciseIdentifier\":\"s:7SwiftUI11TransactionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transaction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(inputLabels:)\":{\"role\":\"symbol\",\"title\":\"accessibility(inputLabels:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(inputLabels:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(inputlabels:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/sheet(isPresented:onDismiss:content:)\":{\"role\":\"symbol\",\"title\":\"sheet(isPresented:onDismiss:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/sheet(isPresented:onDismiss:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/sheet(ispresented:ondismiss:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationSubtitle(_:)-4xcr1\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationSubtitle(_:)-4xcr1\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationsubtitle(_:)-4xcr1\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselStyle(_:)\":{\"role\":\"symbol\",\"title\":\"carouselStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselStyle\",\"preciseIdentifier\":\"s:9ShuffleIt13CarouselStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default carousel style of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/listItemTint(_:)-8uys6\":{\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ListItemTint\",\"preciseIdentifier\":\"s:7SwiftUI12ListItemTintV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listItemTint(_:)-8uys6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/listitemtint(_:)-8uys6\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(in:fillStyle:)-22zkr\":{\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(in:fillStyle:)-22zkr\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(in:fillstyle:)-22zkr\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/horizontalRadioGroupLayout()\":{\"role\":\"symbol\",\"title\":\"horizontalRadioGroupLayout()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"horizontalRadioGroupLayout\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/horizontalRadioGroupLayout()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/horizontalradiogrouplayout()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(removeTraits:)\":{\"role\":\"symbol\",\"title\":\"accessibility(removeTraits:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"removeTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(removeTraits:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(removetraits:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:)-5mxjh\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-5mxjh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-5mxjh\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityHint(_:)-1rrl0\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHint(_:)-1rrl0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhint(_:)-1rrl0\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/safeAreaInset(edge:alignment:spacing:content:)-9bx6p\":{\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalEdge\",\"preciseIdentifier\":\"s:7SwiftUI12VerticalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/safeAreaInset(edge:alignment:spacing:content:)-9bx6p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/safeareainset(edge:alignment:spacing:content:)-9bx6p\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/tag(_:)\":{\"role\":\"symbol\",\"title\":\"tag(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tag(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tag(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/sheet(item:onDismiss:content:)\":{\"role\":\"symbol\",\"title\":\"sheet(item:onDismiss:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/sheet(item:onDismiss:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/sheet(item:ondismiss:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/brightness(_:)\":{\"role\":\"symbol\",\"title\":\"brightness(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"brightness\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/brightness(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/brightness(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/tabViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"tabViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tabViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tabviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/overlayPreferenceValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"overlayPreferenceValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlayPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlayPreferenceValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlaypreferencevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onCarousel(_:)\":{\"role\":\"symbol\",\"title\":\"onCarousel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarousel\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselContext\",\"preciseIdentifier\":\"s:9ShuffleIt15CarouselContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens sliding events occurring on the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCarousel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncarousel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/offset(_:)\":{\"role\":\"symbol\",\"title\":\"offset(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/offset(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/offset(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/padding(_:)-7cp9q\":{\"role\":\"symbol\",\"title\":\"padding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/padding(_:)-7cp9q\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/padding(_:)-7cp9q\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7pvn4\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7pvn4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pvn4\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationTitle(_:)-8moj6\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationTitle(_:)-8moj6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-8moj6\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/submitScope(_:)\":{\"role\":\"symbol\",\"title\":\"submitScope(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/submitScope(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/submitscope(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/task(priority:_:)\":{\"role\":\"symbol\",\"title\":\"task(priority:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/task(priority:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/task(priority:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onHover(perform:)\":{\"role\":\"symbol\",\"title\":\"onHover(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onHover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onHover(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onhover(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityAction(_:_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityActionKind\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityActionKindV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityAction(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onShuffleTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while swiping content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffletranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onPasteCommand(of:validator:perform:)-5h2lv\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPasteCommand(of:validator:perform:)-5h2lv\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:validator:perform:)-5h2lv\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:textRanges:)-8l6zm\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:textRanges:)-8l6zm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-8l6zm\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/previewContext(_:)\":{\"role\":\"symbol\",\"title\":\"previewContext(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewContext\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewContext(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewcontext(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/lineLimit(_:)\":{\"role\":\"symbol\",\"title\":\"lineLimit(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineLimit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/lineLimit(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/linelimit(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"carouselDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to carousel content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouseldisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/badge(_:)-3b7a5\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-3b7a5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-3b7a5\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/allowsHitTesting(_:)\":{\"role\":\"symbol\",\"title\":\"allowsHitTesting(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsHitTesting\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/allowsHitTesting(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/allowshittesting(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/badge(_:)-5yfrj\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/badge(_:)-5yfrj\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-5yfrj\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/popover(item:attachmentAnchor:arrowEdge:content:)\":{\"role\":\"symbol\",\"title\":\"popover(item:attachmentAnchor:arrowEdge:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/popover(item:attachmentAnchor:arrowEdge:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/popover(item:attachmentanchor:arrowedge:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/interactiveDismissDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"interactiveDismissDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"interactiveDismissDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/interactiveDismissDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/interactivedismissdisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/touchBarItemPresence(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarItemPresence(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPresence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBarItemPresence\",\"preciseIdentifier\":\"s:7SwiftUI20TouchBarItemPresenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBarItemPresence(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbaritempresence(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryLabel:)-3f3j9\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-3f3j9\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-3f3j9\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/disabled(_:)\":{\"role\":\"symbol\",\"title\":\"disabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/disabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/disabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:actions:message:)-6iohl\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:message:)-6iohl\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:message:)-6iohl\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/listRowInsets(_:)\":{\"role\":\"symbol\",\"title\":\"listRowInsets(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowInsets\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/listRowInsets(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/listrowinsets(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityInputLabels(_:)-6n0d7\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityInputLabels(_:)-6n0d7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityinputlabels(_:)-6n0d7\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-4xdb3\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-4xdb3\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-4xdb3\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrop(of:delegate:)-55jbd\":{\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:delegate:)-55jbd\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:delegate:)-55jbd\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/deleteDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"deleteDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"deleteDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/deleteDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/deletedisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryLabel:)-7t24j\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-7t24j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-7t24j\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/tint(_:)\":{\"role\":\"symbol\",\"title\":\"tint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tint(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tint(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityHidden(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityHidden(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHidden\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityHidden(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhidden(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/datePickerStyle(_:)\":{\"role\":\"symbol\",\"title\":\"datePickerStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"datePickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/datePickerStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/datepickerstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/labelsHidden()\":{\"role\":\"symbol\",\"title\":\"labelsHidden()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelsHidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/labelsHidden()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/labelshidden()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchCompletion(_:)\":{\"role\":\"symbol\",\"title\":\"searchCompletion(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchCompletion\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchCompletion(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchcompletion(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityChartDescriptor(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityChartDescriptor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChartDescriptor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityChartDescriptor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitychartdescriptor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/overlay(_:ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(_:ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(_:ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shadow(color:radius:x:y:)\":{\"role\":\"symbol\",\"title\":\"shadow(color:radius:x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shadow\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shadow(color:radius:x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shadow(color:radius:x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/transformPreference(_:_:)\":{\"role\":\"symbol\",\"title\":\"transformPreference(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformPreference(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformpreference(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityTextContentType(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityTextContentType(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityTextContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTextContentType\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityTextContentTypeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityTextContentType(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitytextcontenttype(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/allowsTightening(_:)\":{\"role\":\"symbol\",\"title\":\"allowsTightening(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsTightening\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/allowsTightening(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/allowstightening(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\":{\"role\":\"symbol\",\"title\":\"rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotation3DEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"axis\"},{\"kind\":\"text\",\"text\":\": (x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", z\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"), \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchorZ\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perspective\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/rotation3deffect(_:axis:anchor:anchorz:perspective:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(sortPriority:)\":{\"role\":\"symbol\",\"title\":\"accessibility(sortPriority:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(sortPriority:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(sortpriority:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/buttonBorderShape(_:)\":{\"role\":\"symbol\",\"title\":\"buttonBorderShape(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonBorderShape\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonBorderShape\",\"preciseIdentifier\":\"s:7SwiftUI17ButtonBorderShapeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/buttonBorderShape(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/buttonbordershape(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/animation(_:)\":{\"role\":\"symbol\",\"title\":\"animation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/animation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/animation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/rotationEffect(_:anchor:)\":{\"role\":\"symbol\",\"title\":\"rotationEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotationEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/rotationEffect(_:anchor:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/rotationeffect(_:anchor:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRespondsToUserInteraction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRespondsToUserInteraction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRespondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRespondsToUserInteraction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrespondstouserinteraction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/menuStyle(_:)\":{\"role\":\"symbol\",\"title\":\"menuStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/menuStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/menustyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/blendMode(_:)\":{\"role\":\"symbol\",\"title\":\"blendMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"BlendMode\",\"preciseIdentifier\":\"s:7SwiftUI9BlendModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/blendMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/blendmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/task(id:priority:_:)\":{\"role\":\"symbol\",\"title\":\"task(id:priority:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/task(id:priority:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/task(id:priority:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(identifier:)\":{\"role\":\"symbol\",\"title\":\"accessibility(identifier:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(identifier:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(identifier:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:presenting:actions:)-6dwv5\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:presenting:actions:)-6dwv5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:)-6dwv5\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focusable(_:onFocusChange:)\":{\"role\":\"symbol\",\"title\":\"focusable(_:onFocusChange:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onFocusChange\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusable(_:onFocusChange:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusable(_:onfocuschange:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryLabel:)-3lh2p\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryLabel:)-3lh2p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-3lh2p\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDisappear(perform:)\":{\"role\":\"symbol\",\"title\":\"onDisappear(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDisappear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDisappear(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondisappear(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/opacity(_:)\":{\"role\":\"symbol\",\"title\":\"opacity(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/opacity(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/opacity(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alignmentGuide(_:computeValue:)-98bnf\":{\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alignmentGuide(_:computeValue:)-98bnf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alignmentguide(_:computevalue:)-98bnf\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/prefersDefaultFocus(_:in:)\":{\"role\":\"symbol\",\"title\":\"prefersDefaultFocus(_:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/prefersDefaultFocus(_:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/prefersdefaultfocus(_:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:)-1orax\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:)-1orax\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-1orax\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/previewDevice(_:)\":{\"role\":\"symbol\",\"title\":\"previewDevice(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDevice\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewDevice\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewDeviceV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/previewDevice(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewdevice(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselSpacing(_:)\":{\"role\":\"symbol\",\"title\":\"carouselSpacing(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value which is used to add some spacing between carousel stack contents.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselSpacing(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselspacing(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-8ffij\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-8ffij\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-8ffij\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(isPresented:content:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(isPresented:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(ispresented:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/navigationSubtitle(_:)-89wf8\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/navigationSubtitle(_:)-89wf8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationsubtitle(_:)-89wf8\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/tableStyle(_:)\":{\"role\":\"symbol\",\"title\":\"tableStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tableStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/tableStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tablestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibility(hidden:)\":{\"role\":\"symbol\",\"title\":\"accessibility(hidden:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibility(hidden:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(hidden:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onChange(of:perform:)\":{\"role\":\"symbol\",\"title\":\"onChange(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onChange(of:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onchange(of:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/focusedValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"focusedValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/focusedValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusedvalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-4pxpc\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-4pxpc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4pxpc\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(isPresented:error:actions:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(isPresented:error:actions:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(ispresented:error:actions:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/background(_:in:fillStyle:)-16mk7\":{\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/background(_:in:fillStyle:)-16mk7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:in:fillstyle:)-16mk7\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/drawingGroup(opaque:colorMode:)\":{\"role\":\"symbol\",\"title\":\"drawingGroup(opaque:colorMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"drawingGroup\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"colorMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI18ColorRenderingModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/drawingGroup(opaque:colorMode:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/drawinggroup(opaque:colormode:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityCustomContent(_:_:importance:)-qwm7\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityCustomContent(_:_:importance:)-qwm7\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-qwm7\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/overlay(alignment:content:)\":{\"role\":\"symbol\",\"title\":\"overlay(alignment:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/overlay(alignment:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(alignment:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-z1af\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-z1af\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-z1af\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryID:entryLabel:)-25d98\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-25d98\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-25d98\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onCopyCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onCopyCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCopyCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onCopyCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncopycommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrop(of:delegate:)-9xy3o\":{\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrop(of:delegate:)-9xy3o\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:delegate:)-9xy3o\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onSubmit(of:_:)\":{\"role\":\"symbol\",\"title\":\"onSubmit(of:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onSubmit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitTriggers\",\"preciseIdentifier\":\"s:7SwiftUI14SubmitTriggersV\"},{\"kind\":\"text\",\"text\":\", (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onSubmit(of:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onsubmit(of:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityChildren(children:)\":{\"role\":\"symbol\",\"title\":\"accessibilityChildren(children:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChildren\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityChildren(children:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitychildren(children:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/groupBoxStyle(_:)\":{\"role\":\"symbol\",\"title\":\"groupBoxStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"groupBoxStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/groupBoxStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/groupboxstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/flipsForRightToLeftLayoutDirection(_:)\":{\"role\":\"symbol\",\"title\":\"flipsForRightToLeftLayoutDirection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"flipsForRightToLeftLayoutDirection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/flipsForRightToLeftLayoutDirection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/flipsforrighttoleftlayoutdirection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityActivationPoint(_:)-8rijn\":{\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityActivationPoint(_:)-8rijn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityactivationpoint(_:)-8rijn\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/textFieldStyle(_:)\":{\"role\":\"symbol\",\"title\":\"textFieldStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textFieldStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textFieldStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/textfieldstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/contrast(_:)\":{\"role\":\"symbol\",\"title\":\"contrast(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contrast\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/contrast(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contrast(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/transformEnvironment(_:transform:)\":{\"role\":\"symbol\",\"title\":\"transformEnvironment(_:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEnvironment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/transformEnvironment(_:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformenvironment(_:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityRotor(_:entries:entryID:entryLabel:)-10oqf\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityRotor(_:entries:entryID:entryLabel:)-10oqf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-10oqf\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/textSelection(_:)\":{\"role\":\"symbol\",\"title\":\"textSelection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textSelection\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/textSelection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/textselection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/truncationMode(_:)\":{\"role\":\"symbol\",\"title\":\"truncationMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"truncationMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"TruncationMode\",\"preciseIdentifier\":\"s:7SwiftUI4TextV14TruncationModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/truncationMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/truncationmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileExporter(isPresented:documents:contentType:onCompletion:)-4ixib\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileExporter(isPresented:documents:contentType:onCompletion:)-4ixib\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-4ixib\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/carouselAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"carouselAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default carousel animation of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/carouselAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDrag(_:)\":{\"role\":\"symbol\",\"title\":\"onDrag(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDrag(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrag(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/edgesIgnoringSafeArea(_:)\":{\"role\":\"symbol\",\"title\":\"edgesIgnoringSafeArea(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"edgesIgnoringSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/edgesIgnoringSafeArea(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/edgesignoringsafearea(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/speechSpellsOutCharacters(_:)\":{\"role\":\"symbol\",\"title\":\"speechSpellsOutCharacters(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechSpellsOutCharacters\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/speechSpellsOutCharacters(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechspellsoutcharacters(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accpets events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffletrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/gesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"gesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/gesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/gesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/fileMover(isPresented:files:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileMover(isPresented:files:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"files\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/fileMover(isPresented:files:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/filemover(ispresented:files:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:actions:)-6mdoc\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:)-6mdoc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:)-6mdoc\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/touchBar(content:)\":{\"role\":\"symbol\",\"title\":\"touchBar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBar(content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbar(content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/touchBar(_:)\":{\"role\":\"symbol\",\"title\":\"touchBar(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBar\",\"preciseIdentifier\":\"s:7SwiftUI8TouchBarV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/touchBar(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbar(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onContinueUserActivity(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onContinueUserActivity(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onContinueUserActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onContinueUserActivity(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncontinueuseractivity(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/menuIndicator(_:)\":{\"role\":\"symbol\",\"title\":\"menuIndicator(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuIndicator\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/menuIndicator(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/menuindicator(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onExitCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onExitCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onExitCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onExitCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onexitcommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/searchable(text:placement:prompt:suggestions:)-8fyqc\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/searchable(text:placement:prompt:suggestions:)-8fyqc\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:suggestions:)-8fyqc\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onPreferenceChange(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onPreferenceChange(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPreferenceChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onPreferenceChange(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpreferencechange(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onDeleteCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onDeleteCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDeleteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onDeleteCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondeletecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/scaleEffect(_:anchor:)-4byje\":{\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/scaleEffect(_:anchor:)-4byje\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaleeffect(_:anchor:)-4byje\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/alert(_:isPresented:actions:)-2i24c\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/alert(_:isPresented:actions:)-2i24c\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:)-2i24c\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/accessibilityInputLabels(_:)-3x55a\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/accessibilityInputLabels(_:)-3x55a\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityinputlabels(_:)-3x55a\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\":{\"role\":\"symbol\",\"title\":\"frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"minHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/minimumScaleFactor(_:)\":{\"role\":\"symbol\",\"title\":\"minimumScaleFactor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"minimumScaleFactor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/minimumScaleFactor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/minimumscalefactor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/headerProminence(_:)\":{\"role\":\"symbol\",\"title\":\"headerProminence(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"headerProminence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Prominence\",\"preciseIdentifier\":\"s:7SwiftUI10ProminenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/headerProminence(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/headerprominence(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck/zindex(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"zIndex\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\\/zindex(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/zIndex(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.zIndex(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"zIndex(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"zIndex\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6zIndexyQrSdF::SYNTHESIZED::s:9ShuffleIt0A4DeckV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/zIndex(_:)\":{\"role\":\"symbol\",\"title\":\"zIndex(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"zIndex\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/zIndex(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/zindex(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeck.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"ShuffleDeck\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"title\":\"ShuffleDeck\",\"roleHeading\":\"Structure\",\"role\":\"symbol\",\"symbolKind\":\"struct\",\"externalID\":\"s:9ShuffleIt0A4DeckV\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}]},\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"interfaceLanguage\":\"swift\"},\"relationshipsSections\":[{\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/7SwiftUI4ViewP\"],\"kind\":\"relationships\",\"title\":\"Conforms To\",\"type\":\"conformsTo\"}],\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Initializers\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/init(_:initialIndex:content:)-6ou47\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/init(_:initialIndex:content:)-9osfg\"]},{\"title\":\"Instance Properties\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/body\"]},{\"title\":\"Default Implementations\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\"],\"generated\":true}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeck\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"kind\":\"symbol\",\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"RandomAccessCollection\",\"preciseIdentifier\":\"s:Sk\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"Overview\",\"level\":2,\"type\":\"heading\",\"text\":\"Overview\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" is built on top of \"},{\"type\":\"codeVoice\",\"code\":\"ZStack\"},{\"type\":\"text\",\"text\":\" to mimic the shuffling behavior of a deck of cards. Like other stack views, it only renders the visible child views and switches data to display based on the current index. In case the data provided to the view is empty, there will be empty on the screen.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" which creates a deck of cards with default shuffle style and animation.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"struct ContentView: View {\",\"    let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"    var body: some View {\",\"        ShuffleDeck(\",\"            colors,\",\"            initialIndex: 0\",\"        ) { color in\",\"            color\",\"                .frame(width: 200, height: 300)\",\"                .cornerRadius(16)\",\"        }\",\"    }\",\"}\"]},{\"anchor\":\"Tailoring-default-behaviours\",\"level\":2,\"type\":\"heading\",\"text\":\"Tailoring default behaviours\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" comes with multiple modifiers to override default behaviour of the stack view so that it is easy to customize view with unique animation, style and scale factor.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following table reveals a list of available modifiers that adjust the view as expected.\"}]},{\"type\":\"table\",\"rows\":[[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Modifier\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Description\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckAnimation(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle animation of the shuffle deck view.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckDisabled(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to shuffle deck content views.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckScale(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the left and right content views of shuffle deck view.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckStyle(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle style of the shuffle deck view.\"}]}]]],\"header\":\"row\"},{\"anchor\":\"Monitoring-shuffle-events-and-translation\",\"level\":2,\"type\":\"heading\",\"text\":\"Monitoring shuffle events and translation\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" provides useful modifiers that listens shuffle events and shuffling translation to perform a particular action based on those values after shuffling succeeds or while shuffling deck view.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following modifiers helps to observe shuffling events and translation changes.\"}]},{\"type\":\"table\",\"rows\":[[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Modifier\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Decription\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleDeck(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle deck view.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleDeckTranslation(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while shuffling content views.\"}]}]]],\"header\":\"row\"},{\"anchor\":\"Triggering-shuffling-programmatically\",\"level\":2,\"type\":\"heading\",\"text\":\"Triggering shuffling programmatically\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" also allows programmatic shuffling by accepting a series of events from the upstream publisher. Whenever the publisher fires an event, it blocks user interaction on the view and performs shuffling action.\"}]},{\"type\":\"table\",\"rows\":[[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Modifier\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Description\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckTrigger(on:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic shuffling.\"}]}]]],\"header\":\"row\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onShuffleDeck(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeck(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeck\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A11DeckContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleDeck(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffledeck(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/body\":{\"role\":\"symbol\",\"title\":\"body\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"var\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"body\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/body\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/body\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to shuffle deck content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckdisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledecktrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle animation of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the left and right content views of shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/init(_:initialIndex:content:)-6ou47\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"Content\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:content:)\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/init(_:initialIndex:content:)-6ou47\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/init(_:initialindex:content:)-6ou47\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/7SwiftUI4ViewP\":{\"type\":\"unresolvable\",\"title\":\"SwiftUI.View\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/7SwiftUI4ViewP\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/shuffleDeckStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DeckStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle style of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/shuffleDeckStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/init(_:initialIndex:content:)-9osfg\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"Content\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:content:)\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\")\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" and exposes translation value to child content through view builder.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/init(_:initialIndex:content:)-9osfg\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/init(_:initialindex:content:)-9osfg\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck/onShuffleDeckTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeckTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeckTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while shuffling content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\\/onShuffleDeckTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffledecktranslation(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckanimation/!=(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"internalParam\",\"text\":\"lhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"internalParam\",\"text\":\"rhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/!=(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/!=(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"Equatable.!=(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"roleHeading\":\"Operator\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"symbolKind\":\"op\",\"externalID\":\"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:9ShuffleIt0A13DeckAnimationO\",\"extendedModule\":\"Swift\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/Equatable-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/!=(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/equatable-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckanimation/easein.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeIn\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/easein\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/easeIn\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in animation.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeIn\"}],\"title\":\"ShuffleDeckAnimation.easeIn\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A13DeckAnimationO6easeInyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation/easeIn\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation.easeIn\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeIn\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/easeIn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/easein\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckanimation/easeinout.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeInOut\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/easeinout\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/easeInOut\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in-out animation.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeInOut\"}],\"title\":\"ShuffleDeckAnimation.easeInOut\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A13DeckAnimationO9easeInOutyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation/easeInOut\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation.easeInOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeInOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in-out animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/easeInOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/easeinout\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckanimation/easeout.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeOut\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/easeout\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/easeOut\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-out animation.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeOut\"}],\"title\":\"ShuffleDeckAnimation.easeOut\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A13DeckAnimationO7easeOutyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation/easeOut\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation.easeOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-out animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/easeOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/easeout\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckanimation/equatable-implementations.json",
    "content": "{\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/equatable-implementations\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/Equatable-Implementations\",\"interfaceLanguage\":\"swift\"},\"topicSections\":[{\"title\":\"Operators\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/!=(_:_:)\"],\"generated\":true}],\"kind\":\"article\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\"},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/!=(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckanimation/linear.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"linear\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/linear\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/linear\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A linear animation.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"linear\"}],\"title\":\"ShuffleDeckAnimation.linear\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A13DeckAnimationO6linearyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation/linear\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation.linear\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"linear\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A linear animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/linear\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/linear\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckanimation.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"ShuffleDeck\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"title\":\"ShuffleDeckAnimation\",\"roleHeading\":\"Enumeration\",\"role\":\"symbol\",\"symbolKind\":\"enum\",\"externalID\":\"s:9ShuffleIt0A13DeckAnimationO\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}]},\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"interfaceLanguage\":\"swift\"},\"relationshipsSections\":[{\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/SQ\",\"doc:\\/\\/ShuffleIt\\/SH\"],\"kind\":\"relationships\",\"title\":\"Conforms To\",\"type\":\"conformsTo\"}],\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Enumeration Cases\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/easeIn\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/easeInOut\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/easeOut\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/linear\"]},{\"title\":\"Default Implementations\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/Equatable-Implementations\"],\"generated\":true}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"kind\":\"symbol\",\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"references\":{\"doc://ShuffleIt/SQ\":{\"type\":\"unresolvable\",\"title\":\"Swift.Equatable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SQ\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation/easeIn\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation.easeIn\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeIn\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/easeIn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/easein\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/SH\":{\"type\":\"unresolvable\",\"title\":\"Swift.Hashable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SH\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation/linear\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation.linear\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"linear\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A linear animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/linear\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/linear\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation/easeInOut\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation.easeInOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeInOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-in-out animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/easeInOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/easeinout\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation/easeOut\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation.easeOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"easeOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An ease-out animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/easeOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/easeout\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/equatable-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckcontext/direction.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"direction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckDirectionO\",\"text\":\"ShuffleDeckDirection\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckcontext\\/direction\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\\/direction\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A property of shuffle deck direction to which content view was dragged.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"direction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckDirectionO\"}],\"title\":\"direction\",\"roleHeading\":\"Instance Property\",\"role\":\"symbol\",\"symbolKind\":\"property\",\"externalID\":\"s:9ShuffleIt0A11DeckContextV9directionAA0aC9DirectionOvp\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext/direction\":{\"role\":\"symbol\",\"title\":\"direction\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"direction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckDirectionO\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of shuffle deck direction to which content view was dragged.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\\/direction\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\\/direction\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckcontext/index.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"index\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckcontext\\/index\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\\/index\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A property of current index of shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"index\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"title\":\"index\",\"roleHeading\":\"Instance Property\",\"role\":\"symbol\",\"symbolKind\":\"property\",\"externalID\":\"s:9ShuffleIt0A11DeckContextV5indexSivp\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext/index\":{\"role\":\"symbol\",\"title\":\"index\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"index\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of current index of shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\\/index\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\\/index\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckcontext/previousindex.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previousIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckcontext\\/previousindex\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\\/previousIndex\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A property of previous index of shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previousIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"title\":\"previousIndex\",\"roleHeading\":\"Instance Property\",\"role\":\"symbol\",\"symbolKind\":\"property\",\"externalID\":\"s:9ShuffleIt0A11DeckContextV13previousIndexSivp\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext/previousIndex\":{\"role\":\"symbol\",\"title\":\"previousIndex\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previousIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of previous index of shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\\/previousIndex\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\\/previousindex\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckcontext.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"ShuffleDeck\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckcontext\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"title\":\"ShuffleDeckContext\",\"roleHeading\":\"Structure\",\"role\":\"symbol\",\"symbolKind\":\"struct\",\"externalID\":\"s:9ShuffleIt0A11DeckContextV\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Instance Properties\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\\/direction\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\\/index\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\\/previousIndex\"]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext/index\":{\"role\":\"symbol\",\"title\":\"index\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"index\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of current index of shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\\/index\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\\/index\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext/previousIndex\":{\"role\":\"symbol\",\"title\":\"previousIndex\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previousIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of previous index of shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\\/previousIndex\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\\/previousindex\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext/direction\":{\"role\":\"symbol\",\"title\":\"direction\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"let\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"direction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckDirectionO\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A property of shuffle deck direction to which content view was dragged.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\\/direction\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\\/direction\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckdirection/!=(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"internalParam\",\"text\":\"lhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"internalParam\",\"text\":\"rhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/!=(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/!=(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"Equatable.!=(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"roleHeading\":\"Operator\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"symbolKind\":\"op\",\"externalID\":\"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:9ShuffleIt0A13DeckDirectionO\",\"extendedModule\":\"Swift\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/Equatable-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/equatable-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/!=(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckdirection/equatable-implementations.json",
    "content": "{\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/equatable-implementations\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/Equatable-Implementations\",\"interfaceLanguage\":\"swift\"},\"topicSections\":[{\"title\":\"Operators\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/!=(_:_:)\"],\"generated\":true}],\"kind\":\"article\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\"},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/!=(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckdirection/left.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"left\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/left\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/left\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle direction to the left.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"left\"}],\"title\":\"ShuffleDeckDirection.left\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A13DeckDirectionO4leftyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection/left\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection.left\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"left\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle direction to the left.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/left\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/left\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckdirection/right.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"right\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/right\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/right\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle direction to the right.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"right\"}],\"title\":\"ShuffleDeckDirection.right\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A13DeckDirectionO5rightyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection/right\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection.right\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"right\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle direction to the right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/right\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/right\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckdirection.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"ShuffleDeck\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"title\":\"ShuffleDeckDirection\",\"roleHeading\":\"Enumeration\",\"role\":\"symbol\",\"symbolKind\":\"enum\",\"externalID\":\"s:9ShuffleIt0A13DeckDirectionO\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}]},\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"interfaceLanguage\":\"swift\"},\"relationshipsSections\":[{\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/SQ\",\"doc:\\/\\/ShuffleIt\\/SH\"],\"kind\":\"relationships\",\"title\":\"Conforms To\",\"type\":\"conformsTo\"}],\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Enumeration Cases\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/left\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/right\"]},{\"title\":\"Default Implementations\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/Equatable-Implementations\"],\"generated\":true}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"kind\":\"symbol\",\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection/right\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection.right\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"right\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle direction to the right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/right\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/right\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/SH\":{\"type\":\"unresolvable\",\"title\":\"Swift.Hashable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SH\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection/left\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection.left\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"left\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle direction to the left.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/left\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/left\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/equatable-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"},\"doc://ShuffleIt/SQ\":{\"type\":\"unresolvable\",\"title\":\"Swift.Equatable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SQ\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckstyle/!=(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"internalParam\",\"text\":\"lhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"internalParam\",\"text\":\"rhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/!=(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/!=(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"Equatable.!=(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"roleHeading\":\"Operator\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"symbolKind\":\"op\",\"externalID\":\"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:9ShuffleIt0A9DeckStyleO\",\"extendedModule\":\"Swift\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/Equatable-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/!=(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/equatable-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckstyle/equatable-implementations.json",
    "content": "{\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/equatable-implementations\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/Equatable-Implementations\",\"interfaceLanguage\":\"swift\"},\"topicSections\":[{\"title\":\"Operators\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/!=(_:_:)\"],\"generated\":true}],\"kind\":\"article\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\"},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/!=(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckstyle/finiteshuffle.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"finiteShuffle\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/finiteshuffle\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/finiteShuffle\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle deck style which ends content views at both ends so that it cannot be shuffled infinitely.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"finiteShuffle\"}],\"title\":\"ShuffleDeckStyle.finiteShuffle\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A9DeckStyleO06finiteA0yA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle/finiteShuffle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle.finiteShuffle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"finiteShuffle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle deck style which ends content views at both ends so that it cannot be shuffled infinitely.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/finiteShuffle\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/finiteshuffle\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckstyle/infiniteshuffle.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"infiniteShuffle\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/infiniteshuffle\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/infiniteShuffle\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle deck style which makes content views scroll in the loop without ending.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"infiniteShuffle\"}],\"title\":\"ShuffleDeckStyle.infiniteShuffle\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A9DeckStyleO08infiniteA0yA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle/infiniteShuffle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle.infiniteShuffle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"infiniteShuffle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle deck style which makes content views scroll in the loop without ending.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/infiniteShuffle\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/infiniteshuffle\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledeckstyle.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"ShuffleDeck\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"title\":\"ShuffleDeckStyle\",\"roleHeading\":\"Enumeration\",\"role\":\"symbol\",\"symbolKind\":\"enum\",\"externalID\":\"s:9ShuffleIt0A9DeckStyleO\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}]},\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"interfaceLanguage\":\"swift\"},\"relationshipsSections\":[{\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/SQ\",\"doc:\\/\\/ShuffleIt\\/SH\"],\"kind\":\"relationships\",\"title\":\"Conforms To\",\"type\":\"conformsTo\"}],\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Enumeration Cases\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/finiteShuffle\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/infiniteShuffle\"]},{\"title\":\"Default Implementations\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/Equatable-Implementations\"],\"generated\":true}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"kind\":\"symbol\",\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle/infiniteShuffle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle.infiniteShuffle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"infiniteShuffle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle deck style which makes content views scroll in the loop without ending.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/infiniteShuffle\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/infiniteshuffle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle/finiteShuffle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle.finiteShuffle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"finiteShuffle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle deck style which ends content views at both ends so that it cannot be shuffled infinitely.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/finiteShuffle\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/finiteshuffle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/equatable-implementations\"},\"doc://ShuffleIt/SQ\":{\"type\":\"unresolvable\",\"title\":\"Swift.Equatable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SQ\"},\"doc://ShuffleIt/SH\":{\"type\":\"unresolvable\",\"title\":\"Swift.Hashable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SH\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledirection/!=(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"internalParam\",\"text\":\"lhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"internalParam\",\"text\":\"rhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledirection\\/!=(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/!=(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"Equatable.!=(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"roleHeading\":\"Operator\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"symbolKind\":\"op\",\"externalID\":\"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:9ShuffleIt0A9DirectionO\",\"extendedModule\":\"Swift\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/Equatable-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\\/!=(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\\/equatable-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledirection/equatable-implementations.json",
    "content": "{\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledirection\\/equatable-implementations\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/Equatable-Implementations\",\"interfaceLanguage\":\"swift\"},\"topicSections\":[{\"title\":\"Operators\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/!=(_:_:)\"],\"generated\":true}],\"kind\":\"article\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\"},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\\/!=(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledirection/left.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"left\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledirection\\/left\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/left\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle direction to the left.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"left\"}],\"title\":\"ShuffleDirection.left\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A9DirectionO4leftyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection/left\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection.left\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"left\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle direction to the left.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/left\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\\/left\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledirection/right.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"right\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledirection\\/right\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/right\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle direction to the right.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"right\"}],\"title\":\"ShuffleDirection.right\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A9DirectionO5rightyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection/right\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection.right\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"right\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle direction to the right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/right\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\\/right\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shuffledirection.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"ShuffleStack\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"title\":\"ShuffleDirection\",\"roleHeading\":\"Enumeration\",\"role\":\"symbol\",\"symbolKind\":\"enum\",\"externalID\":\"s:9ShuffleIt0A9DirectionO\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}]},\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"interfaceLanguage\":\"swift\"},\"relationshipsSections\":[{\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/SQ\",\"doc:\\/\\/ShuffleIt\\/SH\"],\"kind\":\"relationships\",\"title\":\"Conforms To\",\"type\":\"conformsTo\"}],\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Enumeration Cases\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/left\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/right\"]},{\"title\":\"Default Implementations\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/Equatable-Implementations\"],\"generated\":true}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shuffledirection\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"kind\":\"symbol\",\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection/right\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection.right\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"right\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle direction to the right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/right\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\\/right\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection/left\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection.left\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"left\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle direction to the left.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/left\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\\/left\"},\"doc://ShuffleIt/SH\":{\"type\":\"unresolvable\",\"title\":\"Swift.Hashable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SH\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"},\"doc://ShuffleIt/SQ\":{\"type\":\"unresolvable\",\"title\":\"Swift.Equatable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SQ\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\\/equatable-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext\":{\"role\":\"symbol\",\"title\":\"ShuffleContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accentcolor(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accentcolor(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accentColor(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accentColor(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accentColor(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11accentColoryQrAA0E0VSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use the asset catalog's accent color or View.tint(_:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use the asset catalog's accent color or View.tint(_:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use the asset catalog's accent color or View.tint(_:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use the asset catalog's accent color or View.tint(_:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use the asset catalog's accent color or View.tint(_:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accentColor(_:)\":{\"role\":\"symbol\",\"title\":\"accentColor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accentColor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accentcolor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibility(activationpoint:)-1nikr.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(activationpoint:)-1nikr\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(activationPoint:)-1nikr\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(activationPoint:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility15activationPointAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSo7CGPointV_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(activationPoint:)-1nikr\":{\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(activationPoint:)-1nikr\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(activationpoint:)-1nikr\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibility(activationpoint:)-9o1ut.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(activationpoint:)-9o1ut\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(activationPoint:)-9o1ut\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(activationPoint:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility15activationPointAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA04UnitF0V_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityActivationPoint(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(activationPoint:)-9o1ut\":{\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(activationPoint:)-9o1ut\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(activationpoint:)-9o1ut\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibility(addtraits:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"addTraits\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"traits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(addtraits:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(addTraits:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(addTraits:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(addTraits:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"addTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility9addTraitsAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0V_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityAddTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityAddTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityAddTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityAddTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(addTraits:)\":{\"role\":\"symbol\",\"title\":\"accessibility(addTraits:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"addTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(addTraits:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(addtraits:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibility(hidden:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(hidden:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(hidden:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(hidden:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(hidden:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility6hiddenAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSb_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHidden(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHidden(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHidden(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHidden(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(hidden:)\":{\"role\":\"symbol\",\"title\":\"accessibility(hidden:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(hidden:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(hidden:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibility(hint:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(hint:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(hint:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(hint:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(hint:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility4hintAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHint(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHint(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityHint(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(hint:)\":{\"role\":\"symbol\",\"title\":\"accessibility(hint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(hint:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(hint:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibility(identifier:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(identifier:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(identifier:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(identifier:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(identifier:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility10identifierAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSS_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityIdentifier(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityIdentifier(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityIdentifier(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityIdentifier(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(identifier:)\":{\"role\":\"symbol\",\"title\":\"accessibility(identifier:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(identifier:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(identifier:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibility(inputlabels:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(inputlabels:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(inputLabels:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(inputLabels:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(inputLabels:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility11inputLabelsAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayAA4TextVG_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityInputLabels(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityInputLabels(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityInputLabels(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityInputLabels(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(inputLabels:)\":{\"role\":\"symbol\",\"title\":\"accessibility(inputLabels:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(inputLabels:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(inputlabels:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibility(label:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(label:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(label:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(label:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(label:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility5labelAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityLabel(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityLabel(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityLabel(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityLabel(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(label:)\":{\"role\":\"symbol\",\"title\":\"accessibility(label:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(label:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(label:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibility(removetraits:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"removeTraits\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"traits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(removetraits:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(removeTraits:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(removeTraits:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(removeTraits:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"removeTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility12removeTraitsAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0V_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityRemoveTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityRemoveTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityRemoveTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityRemoveTraits(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(removeTraits:)\":{\"role\":\"symbol\",\"title\":\"accessibility(removeTraits:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"removeTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(removeTraits:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(removetraits:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibility(selectionidentifier:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"selectionIdentifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyHashable\",\"preciseIdentifier\":\"s:s11AnyHashableV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(selectionidentifier:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(selectionIdentifier:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(selectionIdentifier:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(selectionIdentifier:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"selectionIdentifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyHashable\",\"preciseIdentifier\":\"s:s11AnyHashableV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility19selectionIdentifierAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGs11AnyHashableV_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":true},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":true},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":true},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":true}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(selectionIdentifier:)\":{\"role\":\"symbol\",\"title\":\"accessibility(selectionIdentifier:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"selectionIdentifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyHashable\",\"preciseIdentifier\":\"s:s11AnyHashableV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(selectionIdentifier:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(selectionidentifier:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibility(sortpriority:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(sortpriority:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(sortPriority:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(sortPriority:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(sortPriority:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility12sortPriorityAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSd_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilitySortPriority(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilitySortPriority(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilitySortPriority(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilitySortPriority(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(sortPriority:)\":{\"role\":\"symbol\",\"title\":\"accessibility(sortPriority:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(sortPriority:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(sortpriority:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibility(value:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(value:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(value:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibility(value:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibility(value:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13accessibility5valueAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityValue(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityValue(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityValue(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"accessibilityValue(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(value:)\":{\"role\":\"symbol\",\"title\":\"accessibility(value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(value:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityaction(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"actionKind\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityActionKind\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityActionKindV\"},{\"kind\":\"text\",\"text\":\" = .default, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityActionKind\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityActionKindV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityActionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0hE4KindV_yyctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAction(_:_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityActionKind\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityActionKindV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityaction(action:label:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(action:label:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(action:label:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(action:label:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(action:label:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityAction6action5labelQryyc_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAction(action:label:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(action:label:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(action:label:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(action:label:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityaction(named:_:)-5nf29.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"nameKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(named:_:)-5nf29\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(named:_:)-5nf29\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(named:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityAction5named_AA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_yyctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAction(named:_:)-5nf29\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(named:_:)-5nf29\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(named:_:)-5nf29\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityaction(named:_:)-7rxae.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(named:_:)-7rxae\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(named:_:)-7rxae\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(named:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityAction5named_AA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd___yyctSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAction(named:_:)-7rxae\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(named:_:)-7rxae\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(named:_:)-7rxae\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityaction(named:_:)-7tk0c.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(named:_:)-7tk0c\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(named:_:)-7tk0c\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAction(named:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityAction5named_AA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_yyctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAction(named:_:)-7tk0c\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(named:_:)-7tk0c\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(named:_:)-7tk0c\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityactivationpoint(_:)-57vfb.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityactivationpoint(_:)-57vfb\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityActivationPoint(_:)-57vfb\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityActivationPoint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE28accessibilityActivationPointyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA04UnitF0VF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityActivationPoint(_:)-57vfb\":{\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityActivationPoint(_:)-57vfb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityactivationpoint(_:)-57vfb\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityactivationpoint(_:)-9osvr.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityactivationpoint(_:)-9osvr\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityActivationPoint(_:)-9osvr\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityActivationPoint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE28accessibilityActivationPointyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSo7CGPointVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityActivationPoint(_:)-9osvr\":{\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityActivationPoint(_:)-9osvr\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityactivationpoint(_:)-9osvr\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityaddtraits(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAddTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"traits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaddtraits(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAddTraits(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAddTraits(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAddTraits(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAddTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE22accessibilityAddTraitsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0VF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAddTraits(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAddTraits(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAddTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAddTraits(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaddtraits(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityadjustableaction(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAdjustableAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAdjustmentDirection\",\"preciseIdentifier\":\"s:7SwiftUI32AccessibilityAdjustmentDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityadjustableaction(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAdjustableAction(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityAdjustableAction(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityAdjustableAction(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAdjustableAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAdjustmentDirection\",\"preciseIdentifier\":\"s:7SwiftUI32AccessibilityAdjustmentDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE29accessibilityAdjustableActionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGyAA0I19AdjustmentDirectionOcF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAdjustableAction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAdjustableAction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAdjustableAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAdjustmentDirection\",\"preciseIdentifier\":\"s:7SwiftUI32AccessibilityAdjustmentDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAdjustableAction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityadjustableaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitychartdescriptor(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChartDescriptor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"representable\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXChartDescriptorRepresentable\",\"preciseIdentifier\":\"s:7SwiftUI30AXChartDescriptorRepresentableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitychartdescriptor(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityChartDescriptor(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityChartDescriptor(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityChartDescriptor(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChartDescriptor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE28accessibilityChartDescriptoryQrqd__AA07AXChartF13RepresentableRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityChartDescriptor(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityChartDescriptor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChartDescriptor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityChartDescriptor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitychartdescriptor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitychildren(children:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChildren\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitychildren(children:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityChildren(children:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityChildren(children:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityChildren(children:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChildren\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21accessibilityChildren8childrenQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityChildren(children:)\":{\"role\":\"symbol\",\"title\":\"accessibilityChildren(children:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChildren\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityChildren(children:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitychildren(children:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-1gi9v.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"valueKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-1gi9v\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-1gi9v\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_ALSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-1gi9v\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-1gi9v\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-1gi9v\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-375xz.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-375xz\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-375xz\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_qd__So08AXCustomF10ImportanceVtSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-375xz\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-375xz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-375xz\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-571fc.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-571fc\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-571fc\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGqd___qd_0_So08AXCustomF10ImportanceVtSyRd__SyRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Using non-localized strings for labels is not directly supported. Instead, wrap both the label and the value in a Text struct.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-571fc\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-571fc\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-571fc\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-72sim.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-72sim\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-72sim\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA4TextV_ALSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-72sim\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-72sim\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-72sim\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-7h1pz.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-7h1pz\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-7h1pz\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_AA4TextVSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-7h1pz\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-7h1pz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-7h1pz\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-8sma2.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"valueKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-8sma2\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-8sma2\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0ieF3KeyV_AA015LocalizedStringL0VSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-8sma2\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-8sma2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-8sma2\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-956rk.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-956rk\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-956rk\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0ieF3KeyV_AA4TextVSgSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-956rk\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-956rk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-956rk\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-96ur4.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\" = .default) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-96ur4\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-96ur4\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityCustomContent(_:_:importance:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0ieF3KeyV_qd__So08AXCustomF10ImportanceVtSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-96ur4\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-96ur4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-96ur4\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityelement(children:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityElement\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityChildBehavior\",\"preciseIdentifier\":\"s:7SwiftUI26AccessibilityChildBehaviorV\"},{\"kind\":\"text\",\"text\":\" = .ignore) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityelement(children:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityElement(children:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityElement(children:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityElement(children:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityElement\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityChildBehavior\",\"preciseIdentifier\":\"s:7SwiftUI26AccessibilityChildBehaviorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20accessibilityElement8childrenQrAA26AccessibilityChildBehaviorV_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityElement(children:)\":{\"role\":\"symbol\",\"title\":\"accessibilityElement(children:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityElement\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityChildBehavior\",\"preciseIdentifier\":\"s:7SwiftUI26AccessibilityChildBehaviorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityElement(children:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityelement(children:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityfocused(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"condition\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityfocused(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityFocused(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityFocused(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20accessibilityFocusedyQrAA23AccessibilityFocusStateV7BindingVySb_GF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityFocused(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityFocused(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityfocused(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityfocused(_:equals:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"binding\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityfocused(_:equals:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityFocused(_:equals:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityFocused(_:equals:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:equals:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20accessibilityFocused_6equalsQrAA23AccessibilityFocusStateV7BindingVyqd___G_qd__tSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityFocused(_:equals:)\":{\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:equals:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityFocused(_:equals:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityfocused(_:equals:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityheading(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHeading\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"level\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityHeadingLevel\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityHeadingLevelO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityheading(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHeading(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHeading(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHeading(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHeading\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityHeadingLevel\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityHeadingLevelO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20accessibilityHeadingyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0hE5LevelOF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityHeading(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityHeading(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHeading\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityHeadingLevel\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityHeadingLevelO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHeading(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityheading(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityhidden(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHidden\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhidden(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHidden(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHidden(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHidden(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHidden\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19accessibilityHiddenyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityHidden(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityHidden(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHidden\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHidden(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhidden(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityhint(_:)-45b9m.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhint(_:)-45b9m\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHint(_:)-45b9m\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17accessibilityHintyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityHint(_:)-45b9m\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHint(_:)-45b9m\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhint(_:)-45b9m\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityhint(_:)-6451d.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"hintKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhint(_:)-6451d\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHint(_:)-6451d\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17accessibilityHintyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityHint(_:)-6451d\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHint(_:)-6451d\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhint(_:)-6451d\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityhint(_:)-6m2eb.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhint(_:)-6m2eb\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHint(_:)-6m2eb\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityHint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17accessibilityHintyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityHint(_:)-6m2eb\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHint(_:)-6m2eb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhint(_:)-6m2eb\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityidentifier(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIdentifier\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityidentifier(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityIdentifier(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityIdentifier(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityIdentifier(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIdentifier\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE23accessibilityIdentifieryAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSSF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityIdentifier(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityIdentifier(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIdentifier\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityIdentifier(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityidentifier(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityignoresinvertcolors(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIgnoresInvertColors\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"active\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityignoresinvertcolors(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityIgnoresInvertColors(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityIgnoresInvertColors(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityIgnoresInvertColors(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIgnoresInvertColors\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE32accessibilityIgnoresInvertColorsyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityIgnoresInvertColors(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityIgnoresInvertColors(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIgnoresInvertColors\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityIgnoresInvertColors(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityignoresinvertcolors(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityinputlabels(_:)-3mfon.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"inputLabelKeys\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityinputlabels(_:)-3mfon\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityInputLabels(_:)-3mfon\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityInputLabels(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityInputLabelsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayAA18LocalizedStringKeyVGF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityInputLabels(_:)-3mfon\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityInputLabels(_:)-3mfon\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityinputlabels(_:)-3mfon\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityinputlabels(_:)-7hs3b.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityinputlabels(_:)-7hs3b\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityInputLabels(_:)-7hs3b\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityInputLabels(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">([\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityInputLabelsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayqd__GSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityInputLabels(_:)-7hs3b\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">([\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityInputLabels(_:)-7hs3b\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityinputlabels(_:)-7hs3b\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityinputlabels(_:)-7kg3p.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityinputlabels(_:)-7kg3p\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityInputLabels(_:)-7kg3p\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityInputLabels(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityInputLabelsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayAA4TextVGF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityInputLabels(_:)-7kg3p\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityInputLabels(_:)-7kg3p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityinputlabels(_:)-7kg3p\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitylabel(_:)-3has0.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabel(_:)-3has0\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabel(_:)-3has0\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityLabelyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityLabel(_:)-3has0\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabel(_:)-3has0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabel(_:)-3has0\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitylabel(_:)-6dv6y.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabel(_:)-6dv6y\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabel(_:)-6dv6y\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityLabelyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityLabel(_:)-6dv6y\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabel(_:)-6dv6y\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabel(_:)-6dv6y\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitylabel(_:)-e66p.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabel(_:)-e66p\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabel(_:)-e66p\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityLabelyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityLabel(_:)-e66p\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabel(_:)-e66p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabel(_:)-e66p\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitylabeledpair(role:id:in:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabeledPair\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"role\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityLabeledPairRole\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityLabeledPairRoleO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabeledpair(role:id:in:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabeledPair(role:id:in:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLabeledPair(role:id:in:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLabeledPair(role:id:in:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabeledPair\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"role\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityLabeledPairRole\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityLabeledPairRoleO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityLabeledPair4role2id2inQrAA013AccessibilityeF4RoleO_qd__AA9NamespaceV2IDVtSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityLabeledPair(role:id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityLabeledPair(role:id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabeledPair\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"role\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityLabeledPairRole\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityLabeledPairRoleO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabeledPair(role:id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabeledpair(role:id:in:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitylinkedgroup(id:in:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLinkedGroup\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylinkedgroup(id:in:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLinkedGroup(id:in:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityLinkedGroup(id:in:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityLinkedGroup(id:in:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLinkedGroup\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE24accessibilityLinkedGroup2id2inQrqd___AA9NamespaceV2IDVtSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityLinkedGroup(id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityLinkedGroup(id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLinkedGroup\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLinkedGroup(id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylinkedgroup(id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityremovetraits(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRemoveTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"traits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityremovetraits(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRemoveTraits(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRemoveTraits(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRemoveTraits(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRemoveTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25accessibilityRemoveTraitsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0VF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRemoveTraits(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRemoveTraits(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRemoveTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRemoveTraits(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityremovetraits(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrepresentation(representation:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRepresentation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"representation\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrepresentation(representation:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRepresentation(representation:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRepresentation(representation:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRepresentation(representation:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRepresentation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"representation\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE27accessibilityRepresentation14representationQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRepresentation(representation:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRepresentation(representation:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRepresentation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"representation\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRepresentation(representation:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrepresentation(representation:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrespondstouserinteraction(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRespondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"respondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrespondstouserinteraction(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRespondsToUserInteraction(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRespondsToUserInteraction(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRespondsToUserInteraction(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRespondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE38accessibilityRespondsToUserInteractionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRespondsToUserInteraction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRespondsToUserInteraction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRespondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRespondsToUserInteraction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrespondstouserinteraction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:)-3a01s.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityRotorContent\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityRotorContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-3a01s\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-3a01s\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrAA18LocalizedStringKeyV_qd__yctAA013AccessibilityE7ContentRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:)-3a01s\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-3a01s\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-3a01s\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:)-661b4.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"systemRotor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityRotorContent\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityRotorContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-661b4\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-661b4\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrAA019AccessibilitySystemE0V_qd__yctAA0gE7ContentRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:)-661b4\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-661b4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-661b4\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:)-7kbeo.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityRotorContent\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityRotorContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-7kbeo\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-7kbeo\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrAA4TextV_qd__yctAA013AccessibilityE7ContentRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:)-7kbeo\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-7kbeo\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-7kbeo\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:)-f4c5.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityRotorContent\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityRotorContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-f4c5\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-f4c5\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrqd___qd_0_yctSyRd__AA013AccessibilityE7ContentRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:)-f4c5\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-f4c5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-f4c5\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entryid:entrylabel:)-1kufn.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-1kufn\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-1kufn\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryID:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrAA18LocalizedStringKeyV_Sayqd__Gs0L4PathCyqd__qd_0_GALyqd__SSGtSHRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryID:entryLabel:)-1kufn\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-1kufn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-1kufn\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entryid:entrylabel:)-1o7jk.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"systemRotor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-1o7jk\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-1o7jk\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryID:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrAA019AccessibilitySystemE0V_Sayqd__Gs7KeyPathCyqd__qd_0_GALyqd__SSGtSHRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryID:entryLabel:)-1o7jk\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-1o7jk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-1o7jk\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entryid:entrylabel:)-2ng74.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-2ng74\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-2ng74\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryID:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrAA4TextV_Sayqd__Gs7KeyPathCyqd__qd_0_GALyqd__SSGtSHRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryID:entryLabel:)-2ng74\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-2ng74\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-2ng74\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entryid:entrylabel:)-6akr8.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-6akr8\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-6akr8\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryID:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrqd___Sayqd_0_Gs7KeyPathCyqd_0_qd_1_GAJyqd_0_SSGtSyRd__SHRd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryID:entryLabel:)-6akr8\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-6akr8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-6akr8\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entrylabel:)-6o30j.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-6o30j\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-6o30j\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrAA4TextV_Sayqd__Gs7KeyPathCyqd__SSGts12IdentifiableRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryLabel:)-6o30j\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-6o30j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-6o30j\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entrylabel:)-8e6r9.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-8e6r9\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-8e6r9\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrAA18LocalizedStringKeyV_Sayqd__Gs0K4PathCyqd__SSGts12IdentifiableRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryLabel:)-8e6r9\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-8e6r9\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-8e6r9\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entrylabel:)-bva6.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"systemRotor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-bva6\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-bva6\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrAA019AccessibilitySystemE0V_Sayqd__Gs7KeyPathCyqd__SSGts12IdentifiableRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryLabel:)-bva6\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-bva6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-bva6\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entrylabel:)-cxx7.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"rotorLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-cxx7\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-cxx7\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:entries:entryLabel:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrqd___Sayqd_0_Gs7KeyPathCyqd_0_SSGtSyRd__s12IdentifiableRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryLabel:)-cxx7\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-cxx7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-cxx7\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:textranges:)-1v5os.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"labelKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-1v5os\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-1v5os\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:textRanges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrAA18LocalizedStringKeyV_SaySnySS5IndexVGGtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:textRanges:)-1v5os\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-1v5os\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-1v5os\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:textranges:)-5mce6.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"systemRotor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-5mce6\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-5mce6\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:textRanges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrAA019AccessibilitySystemE0V_SaySnySS5IndexVGGtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:textRanges:)-5mce6\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-5mce6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-5mce6\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:textranges:)-7fpc1.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-7fpc1\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-7fpc1\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:textRanges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrAA4TextV_SaySnySS5IndexVGGtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:textRanges:)-7fpc1\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-7fpc1\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-7fpc1\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotor(_:textranges:)-91on2.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-91on2\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-91on2\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotor(_:textRanges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrqd___SaySnySS5IndexVGGtSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:textRanges:)-91on2\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-91on2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-91on2\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityrotorentry(id:in:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotorEntry\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotorentry(id:in:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotorEntry(id:in:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityRotorEntry(id:in:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityRotorEntry(id:in:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotorEntry\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE23accessibilityRotorEntry2id2inQrqd___AA9NamespaceV2IDVtSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotorEntry(id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRotorEntry(id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotorEntry\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotorEntry(id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotorentry(id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityscrollaction(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityScrollAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"handler\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityscrollaction(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityScrollAction(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityScrollAction(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityScrollAction(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityScrollAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25accessibilityScrollActionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGyAA4EdgeOcF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityScrollAction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityScrollAction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityScrollAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityScrollAction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityscrollaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityshowslargecontentviewer().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityshowslargecontentviewer()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityShowsLargeContentViewer()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityShowsLargeContentViewer()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE36accessibilityShowsLargeContentViewerQryF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityShowsLargeContentViewer()\":{\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityShowsLargeContentViewer()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityshowslargecontentviewer()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityshowslargecontentviewer(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"largeContentView\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityshowslargecontentviewer(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityShowsLargeContentViewer(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityShowsLargeContentViewer(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE36accessibilityShowsLargeContentVieweryQrqd__yXEAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityShowsLargeContentViewer(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityShowsLargeContentViewer(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityshowslargecontentviewer(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitysortpriority(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilitySortPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitysortpriority(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilitySortPriority(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilitySortPriority(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilitySortPriority(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilitySortPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25accessibilitySortPriorityyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSdF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilitySortPriority(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilitySortPriority(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilitySortPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilitySortPriority(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitysortpriority(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilitytextcontenttype(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityTextContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTextContentType\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityTextContentTypeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitytextcontenttype(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityTextContentType(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityTextContentType(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityTextContentType(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityTextContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTextContentType\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityTextContentTypeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE28accessibilityTextContentTypeyAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0iefG0VF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityTextContentType(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityTextContentType(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityTextContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTextContentType\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityTextContentTypeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityTextContentType(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitytextcontenttype(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityvalue(_:)-6kh76.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"valueKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityvalue(_:)-6kh76\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityValue(_:)-6kh76\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityValue(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityValueyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityValue(_:)-6kh76\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityValue(_:)-6kh76\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityvalue(_:)-6kh76\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityvalue(_:)-6x5in.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"valueDescription\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityvalue(_:)-6x5in\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityValue(_:)-6x5in\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityValue(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityValueyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityValue(_:)-6x5in\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityValue(_:)-6x5in\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityvalue(_:)-6x5in\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/accessibilityvalue(_:)-tcbi.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityvalue(_:)-tcbi\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityValue(_:)-tcbi\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.accessibilityValue(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18accessibilityValueyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityValue(_:)-tcbi\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityValue(_:)-tcbi\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityvalue(_:)-tcbi\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(_:ispresented:actions:)-13ppe.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:)-13ppe\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:)-13ppe\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actionsQrqd___AA7BindingVySbGqd_0_yXEtSyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:actions:)-13ppe\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:)-13ppe\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:)-13ppe\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(_:ispresented:actions:)-31fv4.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:)-31fv4\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:)-31fv4\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:actions:)-31fv4\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:)-31fv4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:)-31fv4\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(_:ispresented:actions:)-svpk.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:)-svpk\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:)-svpk\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actionsQrAA4TextV_AA7BindingVySbGqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:actions:)-svpk\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:)-svpk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:)-svpk\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(_:ispresented:actions:message:)-1lplz.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:message:)-1lplz\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:message:)-1lplz\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actions7messageQrqd___AA7BindingVySbGqd_0_yXEqd_1_yXEtSyRd__AaBRd_0_AaBRd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:actions:message:)-1lplz\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:message:)-1lplz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:message:)-1lplz\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(_:ispresented:actions:message:)-42hzu.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:message:)-42hzu\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:message:)-42hzu\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actions7messageQrAA4TextV_AA7BindingVySbGqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:actions:message:)-42hzu\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:message:)-42hzu\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:message:)-42hzu\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(_:ispresented:actions:message:)-8jr1q.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:message:)-8jr1q\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:message:)-8jr1q\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:actions:message:)-8jr1q\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:message:)-8jr1q\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:message:)-8jr1q\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(_:ispresented:presenting:actions:)-135kk.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:)-135kk\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:)-135kk\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:presenting:actions:)-135kk\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:)-135kk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:)-135kk\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(_:ispresented:presenting:actions:)-7je0d.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:)-7je0d\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:)-7je0d\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actionsQrqd___AA7BindingVySbGqd_1_Sgqd_0_qd_1_XEtSyRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:presenting:actions:)-7je0d\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:)-7je0d\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:)-7je0d\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(_:ispresented:presenting:actions:)-7zzve.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:)-7zzve\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:)-7zzve\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actionsQrAA4TextV_AA7BindingVySbGqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:presenting:actions:)-7zzve\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:)-7zzve\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:)-7zzve\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(_:ispresented:presenting:actions:message:)-17uu0.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:message:)-17uu0\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:message:)-17uu0\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:presenting:actions:message:)-17uu0\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:message:)-17uu0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:message:)-17uu0\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(_:ispresented:presenting:actions:message:)-36zvz.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:message:)-36zvz\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:message:)-36zvz\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actions7messageQrqd___AA7BindingVySbGqd_2_Sgqd_0_qd_2_XEqd_1_qd_2_XEtSyRd__AaBRd_0_AaBRd_1_r2_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:presenting:actions:message:)-36zvz\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:message:)-36zvz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:message:)-36zvz\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(_:ispresented:presenting:actions:message:)-7caah.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:message:)-7caah\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:message:)-7caah\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(_:isPresented:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actions7messageQrAA4TextV_AA7BindingVySbGqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:presenting:actions:message:)-7caah\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:message:)-7caah\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:message:)-7caah\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(ispresented:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(ispresented:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(isPresented:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(isPresented:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(isPresented:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert11isPresented7contentQrAA7BindingVySbG_AA5AlertVyXEtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"use `alert(title:isPresented:presenting::actions:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(isPresented:content:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(isPresented:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(ispresented:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(ispresented:error:actions:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedError\",\"preciseIdentifier\":\"s:10Foundation14LocalizedErrorP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(ispresented:error:actions:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(isPresented:error:actions:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(isPresented:error:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert11isPresented5error7actionsQrAA7BindingVySbG_qd__Sgqd_0_yXEt10Foundation14LocalizedErrorRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(isPresented:error:actions:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(isPresented:error:actions:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(ispresented:error:actions:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(ispresented:error:actions:message:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedError\",\"preciseIdentifier\":\"s:10Foundation14LocalizedErrorP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(ispresented:error:actions:message:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(isPresented:error:actions:message:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(isPresented:error:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert11isPresented5error7actions7messageQrAA7BindingVySbG_qd__Sgqd_0_qd__XEqd_1_qd__XEt10Foundation14LocalizedErrorRd__AaBRd_0_AaBRd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(isPresented:error:actions:message:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(isPresented:error:actions:message:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(ispresented:error:actions:message:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alert(item:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(item:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(item:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alert(item:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alert(item:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5alert4item7contentQrAA7BindingVyqd__SgG_AA5AlertVqd__XEts12IdentifiableRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"use `alert(title:isPresented:presenting::actions:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"use `alert(title:isPresented:presenting::actions:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(item:content:)\":{\"role\":\"symbol\",\"title\":\"alert(item:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(item:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(item:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alignmentguide(_:computevalue:)-23g26.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"g\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alignmentguide(_:computevalue:)-23g26\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alignmentGuide(_:computeValue:)-23g26\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alignmentGuide(_:computeValue:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14alignmentGuide_12computeValueQrAA19HorizontalAlignmentV_12CoreGraphics7CGFloatVAA0C10DimensionsVctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alignmentGuide(_:computeValue:)-23g26\":{\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alignmentGuide(_:computeValue:)-23g26\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alignmentguide(_:computevalue:)-23g26\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/alignmentguide(_:computevalue:)-4kcej.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"g\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/alignmentguide(_:computevalue:)-4kcej\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alignmentGuide(_:computeValue:)-4kcej\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.alignmentGuide(_:computeValue:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14alignmentGuide_12computeValueQrAA17VerticalAlignmentV_12CoreGraphics7CGFloatVAA0C10DimensionsVctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alignmentGuide(_:computeValue:)-4kcej\":{\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alignmentGuide(_:computeValue:)-4kcej\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alignmentguide(_:computevalue:)-4kcej\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/allowshittesting(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsHitTesting\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"enabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/allowshittesting(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/allowsHitTesting(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.allowsHitTesting(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"allowsHitTesting(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsHitTesting\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16allowsHitTestingyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/allowsHitTesting(_:)\":{\"role\":\"symbol\",\"title\":\"allowsHitTesting(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsHitTesting\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/allowsHitTesting(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/allowshittesting(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/allowstightening(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsTightening\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"flag\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/allowstightening(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/allowsTightening(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.allowsTightening(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"allowsTightening(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsTightening\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16allowsTighteningyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/allowsTightening(_:)\":{\"role\":\"symbol\",\"title\":\"allowsTightening(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsTightening\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/allowsTightening(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/allowstightening(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/anchorpreference(key:value:transform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"anchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/anchorpreference(key:value:transform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/anchorPreference(key:value:transform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.anchorPreference(key:value:transform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"anchorPreference(key:value:transform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"anchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16anchorPreference3key5value9transformQrqd_0_m_AA6AnchorV6SourceVyqd___G5ValueQyd_0_AIyqd__GctAA0E3KeyRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/anchorPreference(key:value:transform:)\":{\"role\":\"symbol\",\"title\":\"anchorPreference(key:value:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"anchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/anchorPreference(key:value:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/anchorpreference(key:value:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/animation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/animation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/animation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.animation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"animation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9animationyQrAA9AnimationVSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"15.0\",\"message\":\"Use withAnimation or animation(_:value:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"12.0\",\"message\":\"Use withAnimation or animation(_:value:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"15.0\",\"message\":\"Use withAnimation or animation(_:value:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"8.0\",\"message\":\"Use withAnimation or animation(_:value:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use withAnimation or animation(_:value:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/animation(_:)\":{\"role\":\"symbol\",\"title\":\"animation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/animation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/animation(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/animation(_:value:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Equatable\",\"preciseIdentifier\":\"s:SQ\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/animation(_:value:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/animation(_:value:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.animation(_:value:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"animation(_:value:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9animation_5valueQrAA9AnimationVSg_qd__tSQRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/animation(_:value:)\":{\"role\":\"symbol\",\"title\":\"animation(_:value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/animation(_:value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/animation(_:value:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/aspectratio(_:contentmode:)-9iav9.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/aspectratio(_:contentmode:)-9iav9\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/aspectRatio(_:contentMode:)-9iav9\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.aspectRatio(_:contentMode:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11aspectRatio_11contentModeQrSo6CGSizeV_AA07ContentG0OtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/aspectRatio(_:contentMode:)-9iav9\":{\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/aspectRatio(_:contentMode:)-9iav9\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/aspectratio(_:contentmode:)-9iav9\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/aspectratio(_:contentmode:)-ggdx.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/aspectratio(_:contentmode:)-ggdx\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/aspectRatio(_:contentMode:)-ggdx\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.aspectRatio(_:contentMode:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11aspectRatio_11contentModeQr12CoreGraphics7CGFloatVSg_AA07ContentG0OtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/aspectRatio(_:contentMode:)-ggdx\":{\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/aspectRatio(_:contentMode:)-ggdx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/aspectratio(_:contentmode:)-ggdx\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/background(_:alignment:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:alignment:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:alignment:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(_:alignment:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(_:alignment:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background_9alignmentQrqd___AA9AlignmentVtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `background(alignment:content:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `background(alignment:content:)` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `background(alignment:content:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `background(alignment:content:)` instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use `background(alignment:content:)` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(_:alignment:)\":{\"role\":\"symbol\",\"title\":\"background(_:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:alignment:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/background(_:ignoressafeareaedges:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:ignoressafeareaedges:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:ignoresSafeAreaEdges:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(_:ignoresSafeAreaEdges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(_:ignoresSafeAreaEdges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background_20ignoresSafeAreaEdgesQrqd___AA4EdgeO3SetVtAA10ShapeStyleRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(_:ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"background(_:ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:ignoressafeareaedges:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/background(_:in:fillstyle:)-1a2bf.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:in:fillstyle:)-1a2bf\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:in:fillStyle:)-1a2bf\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(_:in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background_2in9fillStyleQrqd___qd_0_AA04FillG0VtAA05ShapeG0Rd__AA0I0Rd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(_:in:fillStyle:)-1a2bf\":{\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:in:fillStyle:)-1a2bf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:in:fillstyle:)-1a2bf\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/background(_:in:fillstyle:)-8qwr1.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"InsettableShape\",\"preciseIdentifier\":\"s:7SwiftUI15InsettableShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:in:fillstyle:)-8qwr1\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:in:fillStyle:)-8qwr1\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(_:in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background_2in9fillStyleQrqd___qd_0_AA04FillG0VtAA05ShapeG0Rd__AA010InsettableI0Rd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(_:in:fillStyle:)-8qwr1\":{\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:in:fillStyle:)-8qwr1\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:in:fillstyle:)-8qwr1\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/background(alignment:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/background(alignment:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(alignment:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(alignment:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(alignment:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background9alignment7contentQrAA9AlignmentV_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(alignment:content:)\":{\"role\":\"symbol\",\"title\":\"background(alignment:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(alignment:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(alignment:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/background(ignoressafeareaedges:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/background(ignoressafeareaedges:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(ignoresSafeAreaEdges:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(ignoresSafeAreaEdges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(ignoresSafeAreaEdges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background20ignoresSafeAreaEdgesQrAA4EdgeO3SetV_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"background(ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(ignoressafeareaedges:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/background(in:fillstyle:)-58j5e.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/background(in:fillstyle:)-58j5e\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(in:fillStyle:)-58j5e\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background2in9fillStyleQrqd___AA04FillG0VtAA5ShapeRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(in:fillStyle:)-58j5e\":{\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(in:fillStyle:)-58j5e\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(in:fillstyle:)-58j5e\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/background(in:fillstyle:)-8w09p.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"InsettableShape\",\"preciseIdentifier\":\"s:7SwiftUI15InsettableShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/background(in:fillstyle:)-8w09p\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(in:fillStyle:)-8w09p\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.background(in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10background2in9fillStyleQrqd___AA04FillG0VtAA15InsettableShapeRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(in:fillStyle:)-8w09p\":{\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(in:fillStyle:)-8w09p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(in:fillstyle:)-8w09p\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/backgroundpreferencevalue(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"backgroundPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type = Key.self, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/backgroundpreferencevalue(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/backgroundPreferenceValue(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.backgroundPreferenceValue(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"backgroundPreferenceValue(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"backgroundPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25backgroundPreferenceValueyQrqd__m_qd_0_0F0Qyd__ctAA0E3KeyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/backgroundPreferenceValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"backgroundPreferenceValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"backgroundPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/backgroundPreferenceValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/backgroundpreferencevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/badge(_:)-26gjx.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-26gjx\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-26gjx\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.badge(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"badge(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5badgeyQrAA18LocalizedStringKeyVSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/badge(_:)-26gjx\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-26gjx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-26gjx\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/badge(_:)-2cz64.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-2cz64\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-2cz64\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.badge(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"badge(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5badgeyQrAA4TextVSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/badge(_:)-2cz64\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-2cz64\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-2cz64\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/badge(_:)-31kbp.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-31kbp\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-31kbp\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.badge(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"badge(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5badgeyQrSiF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/badge(_:)-31kbp\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-31kbp\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-31kbp\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/badge(_:)-4i0v1.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-4i0v1\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-4i0v1\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.badge(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"badge(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5badgeyQrqd__SgSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/badge(_:)-4i0v1\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-4i0v1\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-4i0v1\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/blendmode(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"BlendMode\",\"preciseIdentifier\":\"s:7SwiftUI9BlendModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/blendmode(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/blendMode(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.blendMode(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"blendMode(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"BlendMode\",\"preciseIdentifier\":\"s:7SwiftUI9BlendModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9blendModeyQrAA05BlendE0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/blendMode(_:)\":{\"role\":\"symbol\",\"title\":\"blendMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"BlendMode\",\"preciseIdentifier\":\"s:7SwiftUI9BlendModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/blendMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/blendmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/blur(radius:opaque:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blur\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/blur(radius:opaque:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/blur(radius:opaque:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.blur(radius:opaque:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"blur(radius:opaque:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blur\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4blur6radius6opaqueQr12CoreGraphics7CGFloatV_SbtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/blur(radius:opaque:)\":{\"role\":\"symbol\",\"title\":\"blur(radius:opaque:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blur\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/blur(radius:opaque:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/blur(radius:opaque:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/body.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"var\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"body\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" { \"},{\"kind\":\"keyword\",\"text\":\"get\"},{\"kind\":\"text\",\"text\":\" }\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/body\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/body\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.body\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"var\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"body\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"title\":\"body\",\"roleHeading\":\"Instance Property\",\"role\":\"symbol\",\"symbolKind\":\"property\",\"externalID\":\"s:9ShuffleIt0A5StackV4bodyQrvp\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/body\":{\"role\":\"symbol\",\"title\":\"body\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"var\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"body\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/body\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/body\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/border(_:width:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"border\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 1) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/border(_:width:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/border(_:width:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.border(_:width:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"border(_:width:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"border\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6border_5widthQrqd___12CoreGraphics7CGFloatVtAA10ShapeStyleRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/border(_:width:)\":{\"role\":\"symbol\",\"title\":\"border(_:width:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"border\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/border(_:width:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/border(_:width:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/brightness(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"brightness\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"amount\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/brightness(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/brightness(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.brightness(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"brightness(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"brightness\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10brightnessyQrSdF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/brightness(_:)\":{\"role\":\"symbol\",\"title\":\"brightness(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"brightness\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/brightness(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/brightness(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/buttonbordershape(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonBorderShape\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonBorderShape\",\"preciseIdentifier\":\"s:7SwiftUI17ButtonBorderShapeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/buttonbordershape(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/buttonBorderShape(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.buttonBorderShape(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"buttonBorderShape(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonBorderShape\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonBorderShape\",\"preciseIdentifier\":\"s:7SwiftUI17ButtonBorderShapeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17buttonBorderShapeyQrAA06ButtoneF0VF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/buttonBorderShape(_:)\":{\"role\":\"symbol\",\"title\":\"buttonBorderShape(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonBorderShape\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonBorderShape\",\"preciseIdentifier\":\"s:7SwiftUI17ButtonBorderShapeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/buttonBorderShape(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/buttonbordershape(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/buttonstyle(_:)-42cf.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PrimitiveButtonStyle\",\"preciseIdentifier\":\"s:7SwiftUI20PrimitiveButtonStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/buttonstyle(_:)-42cf\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/buttonStyle(_:)-42cf\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.buttonStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11buttonStyleyQrqd__AA015PrimitiveButtonE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/buttonStyle(_:)-42cf\":{\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/buttonStyle(_:)-42cf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/buttonstyle(_:)-42cf\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/buttonstyle(_:)-4hs9e.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonStyle\",\"preciseIdentifier\":\"s:7SwiftUI11ButtonStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/buttonstyle(_:)-4hs9e\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/buttonStyle(_:)-4hs9e\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.buttonStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11buttonStyleyQrqd__AA06ButtonE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/buttonStyle(_:)-4hs9e\":{\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/buttonStyle(_:)-4hs9e\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/buttonstyle(_:)-4hs9e\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/carouselanimation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselAnimationO\",\"text\":\"CarouselAnimation\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given carousel animation.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"animation\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle animation for carousel stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" comes with \"},{\"type\":\"codeVoice\",\"code\":\"linear\"},{\"type\":\"text\",\"text\":\" animation to animate scrolling behaviour. With \"},{\"type\":\"codeVoice\",\"code\":\"carouselAnimation(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can be overridden with the given animation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example shows the usage of overriding default carousel animation with \"},{\"type\":\"codeVoice\",\"code\":\"easeInOut\"},{\"type\":\"text\",\"text\":\" animation that will be used while shuffling.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselAnimation(.easeInOut)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselanimation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselAnimation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default carousel animation of the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselAnimation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE17carouselAnimationyQrAD08CarouselG0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"carouselAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default carousel animation of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselanimation(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/carouseldisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given boolean.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"disabled\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A boolean value to decide whether it should be disabled or not.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Based on the boolean passing into the modifier, the user interaction will be disabled accordingly. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"true\"},{\"type\":\"text\",\"text\":\", it will no longer turn on the interaction to UI. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"false\"},{\"type\":\"text\",\"text\":\", it allows to carousel content views.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following piece of code show how to disable the user interaction on the shuffle stack view.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselDisabled(false)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/carouseldisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to carousel content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"carouselDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE16carouselDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"carouselDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to carousel content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouseldisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/carouselpadding(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselPadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given padding.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"padding\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A padding value for a carousel stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" come with 20 pixels to add extra space between its frame and its content views. To be overriden, it can be done by passing the desired padding value through \"},{\"type\":\"codeVoice\",\"code\":\"carouselPadding(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"carouselPadding(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselPadding(15)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselpadding(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselPadding(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselPadding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselPadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE15carouselPaddingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselPadding(_:)\":{\"role\":\"symbol\",\"title\":\"carouselPadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselPadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselPadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselpadding(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/carouselscale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given scaling factor.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"scale\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A scaling factor to shrink or enlarge the size of content views.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" allows to scale up (set value above 1) and scale down (set value below 1) contents so that the desired ui can be achieved by passing the value through \"},{\"type\":\"codeVoice\",\"code\":\"carouselScale(_:)\"},{\"type\":\"text\",\"text\":\" modifier. By defaults, it comes with the value of 1.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"carouselScale(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselScale(1.2)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselscale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselScale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the contents right next to the current content of the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselScale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE13carouselScaleyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselScale(_:)\":{\"role\":\"symbol\",\"title\":\"carouselScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the contents right next to the current content of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/carouselspacing(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given spacing.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"spacing\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A spacing value between the content views of the carousel stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To add spacing between carousel stack contents, it can be achieved by passing the value through \"},{\"type\":\"codeVoice\",\"code\":\"carouselSpacing(_:)\"},{\"type\":\"text\",\"text\":\" modifier. By default, it uses 10 pixels to make a gap between contents.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code sample shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"carouselSpacing(_:)\"},{\"type\":\"text\",\"text\":\" modifier by adding the space of 15 pixels to see a gap between stack contents.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselSpacing(15)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselspacing(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselSpacing(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value which is used to add some spacing between carousel stack contents.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselSpacing(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE15carouselSpacingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselSpacing(_:)\":{\"role\":\"symbol\",\"title\":\"carouselSpacing(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value which is used to add some spacing between carousel stack contents.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselSpacing(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselspacing(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/carouselstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"preciseIdentifier\":\"s:9ShuffleIt13CarouselStyleO\",\"text\":\"CarouselStyle\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given carousel style.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"style\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A carousel style for carousel stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" provides two different carousel styles - \"},{\"type\":\"codeVoice\",\"code\":\"finiteScroll\"},{\"type\":\"text\",\"text\":\" (default) and \"},{\"type\":\"codeVoice\",\"code\":\"infiniteScroll\"},{\"type\":\"text\",\"text\":\". To apply style as desired, it can be overridden with \"},{\"type\":\"codeVoice\",\"code\":\"carouselStyle(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet demonstrates how to override the carousel style to be able to scroll infinitely left and right.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselStyle(.infiniteScroll)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default carousel style of the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselStyle\",\"preciseIdentifier\":\"s:9ShuffleIt13CarouselStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE13carouselStyleyQrAD08CarouselG0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle\":{\"role\":\"symbol\",\"title\":\"CarouselStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselStyle(_:)\":{\"role\":\"symbol\",\"title\":\"carouselStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselStyle\",\"preciseIdentifier\":\"s:9ShuffleIt13CarouselStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default carousel style of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/carouseltrigger(on:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"publisher\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Publisher\",\"preciseIdentifier\":\"s:7Combine9PublisherP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Failure\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"Never\",\"preciseIdentifier\":\"s:s5NeverO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselDirectionO\",\"text\":\"CarouselDirection\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given publisher object.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"publisher\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A publisher object that fires \"},{\"type\":\"codeVoice\",\"code\":\"CarouselDirection\"},{\"type\":\"text\",\"text\":\" values.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"In purpose of programmatic sliding such as using timer, \"},{\"type\":\"codeVoice\",\"code\":\"CarouselStack\"},{\"type\":\"text\",\"text\":\" accepts events via \"},{\"type\":\"codeVoice\",\"code\":\"carouselTrigger(on:)\"},{\"type\":\"text\",\"text\":\" modifier which is needed to inject an instance of publisher with \"},{\"type\":\"codeVoice\",\"code\":\"CarouselDirection\"},{\"type\":\"text\",\"text\":\" output type and \"},{\"type\":\"codeVoice\",\"code\":\"Never\"},{\"type\":\"text\",\"text\":\" failure type.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the programmatic approach of triggering slide event by sending \"},{\"type\":\"codeVoice\",\"code\":\"CarouselDirection\"},{\"type\":\"text\",\"text\":\" value through the publisher.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"let carouselPublisher = PassthroughSubject<CarouselDirection, Never>()\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .carouselPublisher(on: carouselPublisher)\",\"}\",\"carouselPublisher.send(.left)\",\"carouselPublisher.send(.right)\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/carouseltrigger(on:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselTrigger(on:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic sliding.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"carouselTrigger(on:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE15carouselTrigger2onQrqd___t7Combine9PublisherRd__s5NeverO7FailureRtd__AD17CarouselDirectionO6OutputRtd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"carouselTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouseltrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/clipped(antialiased:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipped\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/clipped(antialiased:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/clipped(antialiased:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.clipped(antialiased:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"clipped(antialiased:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipped\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7clipped11antialiasedQrSb_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/clipped(antialiased:)\":{\"role\":\"symbol\",\"title\":\"clipped(antialiased:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipped\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/clipped(antialiased:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/clipped(antialiased:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/clipshape(_:style:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/clipshape(_:style:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/clipShape(_:style:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.clipShape(_:style:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"clipShape(_:style:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9clipShape_5styleQrqd___AA9FillStyleVtAA0E0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/clipShape(_:style:)\":{\"role\":\"symbol\",\"title\":\"clipShape(_:style:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/clipShape(_:style:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/clipshape(_:style:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/colorinvert().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorInvert\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/colorinvert()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/colorInvert()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.colorInvert()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"colorInvert()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorInvert\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11colorInvertQryF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/colorInvert()\":{\"role\":\"symbol\",\"title\":\"colorInvert()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorInvert\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/colorInvert()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/colorinvert()\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/colormultiply(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorMultiply\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/colormultiply(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/colorMultiply(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.colorMultiply(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"colorMultiply(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorMultiply\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13colorMultiplyyQrAA5ColorVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/colorMultiply(_:)\":{\"role\":\"symbol\",\"title\":\"colorMultiply(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorMultiply\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/colorMultiply(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/colormultiply(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/colorscheme(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/colorscheme(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/colorScheme(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.colorScheme(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"colorScheme(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11colorSchemeyQrAA05ColorE0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"preferredColorScheme(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"preferredColorScheme(_:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"preferredColorScheme(_:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"preferredColorScheme(_:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/colorScheme(_:)\":{\"role\":\"symbol\",\"title\":\"colorScheme(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/colorScheme(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/colorscheme(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/compositinggroup().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"compositingGroup\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/compositinggroup()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/compositingGroup()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.compositingGroup()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"compositingGroup()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"compositingGroup\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16compositingGroupQryF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/compositingGroup()\":{\"role\":\"symbol\",\"title\":\"compositingGroup()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"compositingGroup\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/compositingGroup()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/compositinggroup()\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:actions:)-41ud8.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-41ud8\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-41ud8\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:actions:)-41ud8\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-41ud8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-41ud8\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:actions:)-4ywhx.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-4ywhx\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-4ywhx\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actionsQrqd___AA7BindingVySbGAA0I0Oqd_0_yXEtSyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:actions:)-4ywhx\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-4ywhx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-4ywhx\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:actions:)-7ipnf.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-7ipnf\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-7ipnf\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actionsQrAA4TextV_AA7BindingVySbGAA0I0Oqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:actions:)-7ipnf\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-7ipnf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-7ipnf\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1kurz.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1kurz\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-1kurz\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actions7messageQrqd___AA7BindingVySbGAA0I0Oqd_0_yXEqd_1_yXEtSyRd__AaBRd_0_AaBRd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-1kurz\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-1kurz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1kurz\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5vmyl.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5vmyl\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-5vmyl\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actions7messageQrAA4TextV_AA7BindingVySbGAA0I0Oqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-5vmyl\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-5vmyl\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5vmyl\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9sue3.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9sue3\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-9sue3\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-9sue3\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-9sue3\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9sue3\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1tkx.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1tkx\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1tkx\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1tkx\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1tkx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1tkx\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5diu1.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5diu1\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-5diu1\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actionsQrqd___AA7BindingVySbGAA0I0Oqd_1_Sgqd_0_qd_1_XEtSyRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-5diu1\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-5diu1\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5diu1\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pkdq.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pkdq\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7pkdq\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actionsQrAA4TextV_AA7BindingVySbGAA0I0Oqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7pkdq\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7pkdq\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pkdq\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-296mh.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-296mh\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-296mh\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actions7messageQrqd___AA7BindingVySbGAA0I0Oqd_2_Sgqd_0_qd_2_XEqd_1_qd_2_XEtSyRd__AaBRd_0_AaBRd_1_r2_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-296mh\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-296mh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-296mh\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-5uj0y.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-5uj0y\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-5uj0y\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-5uj0y\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-5uj0y\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-5uj0y\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-7cjsq.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-7cjsq\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-7cjsq\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actions7messageQrAA4TextV_AA7BindingVySbGAA0I0Oqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-7cjsq\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-7cjsq\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-7cjsq\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/containershape(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"containerShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"InsettableShape\",\"preciseIdentifier\":\"s:7SwiftUI15InsettableShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/containershape(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/containerShape(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.containerShape(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"containerShape(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"containerShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14containerShapeyQrqd__AA010InsettableE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/containerShape(_:)\":{\"role\":\"symbol\",\"title\":\"containerShape(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"containerShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/containerShape(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/containershape(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/contentshape(_:_:eofill:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"kind\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentShapeKinds\",\"preciseIdentifier\":\"s:7SwiftUI17ContentShapeKindsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/contentshape(_:_:eofill:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contentShape(_:_:eoFill:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contentShape(_:_:eoFill:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contentShape(_:_:eoFill:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentShapeKinds\",\"preciseIdentifier\":\"s:7SwiftUI17ContentShapeKindsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12contentShape__6eoFillQrAA07ContentE5KindsV_qd__SbtAA0E0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/contentShape(_:_:eoFill:)\":{\"role\":\"symbol\",\"title\":\"contentShape(_:_:eoFill:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentShapeKinds\",\"preciseIdentifier\":\"s:7SwiftUI17ContentShapeKindsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contentShape(_:_:eoFill:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contentshape(_:_:eofill:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/contentshape(_:eofill:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/contentshape(_:eofill:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contentShape(_:eoFill:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contentShape(_:eoFill:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contentShape(_:eoFill:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12contentShape_6eoFillQrqd___SbtAA0E0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/contentShape(_:eoFill:)\":{\"role\":\"symbol\",\"title\":\"contentShape(_:eoFill:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contentShape(_:eoFill:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contentshape(_:eofill:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/contextmenu(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContextMenu\",\"preciseIdentifier\":\"s:7SwiftUI11ContextMenuV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/contextmenu(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contextMenu(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contextMenu(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contextMenu(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContextMenu\",\"preciseIdentifier\":\"s:7SwiftUI11ContextMenuV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11contextMenuyQrAA07ContextE0Vyqd__GSgAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `contextMenu(menuItems:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `contextMenu(menuItems:)` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"deprecatedAt\":\"7.0\",\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use `contextMenu(menuItems:)` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/contextMenu(_:)\":{\"role\":\"symbol\",\"title\":\"contextMenu(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContextMenu\",\"preciseIdentifier\":\"s:7SwiftUI11ContextMenuV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contextMenu(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contextmenu(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/contextmenu(menuitems:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"menuItems\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/contextmenu(menuitems:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contextMenu(menuItems:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contextMenu(menuItems:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contextMenu(menuItems:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"menuItems\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11contextMenu9menuItemsQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"deprecatedAt\":\"7.0\",\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/contextMenu(menuItems:)\":{\"role\":\"symbol\",\"title\":\"contextMenu(menuItems:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"menuItems\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contextMenu(menuItems:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contextmenu(menuitems:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/contrast(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contrast\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"amount\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/contrast(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contrast(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.contrast(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"contrast(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contrast\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8contrastyQrSdF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/contrast(_:)\":{\"role\":\"symbol\",\"title\":\"contrast(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contrast\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contrast(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contrast(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/controlgroupstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlGroupStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlGroupStyle\",\"preciseIdentifier\":\"s:7SwiftUI17ControlGroupStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/controlgroupstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/controlGroupStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.controlGroupStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"controlGroupStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlGroupStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17controlGroupStyleyQrqd__AA07ControleF0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/controlGroupStyle(_:)\":{\"role\":\"symbol\",\"title\":\"controlGroupStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlGroupStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/controlGroupStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/controlgroupstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/controlsize(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlSize\",\"preciseIdentifier\":\"s:7SwiftUI11ControlSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/controlsize(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/controlSize(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.controlSize(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"controlSize(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlSize\",\"preciseIdentifier\":\"s:7SwiftUI11ControlSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11controlSizeyQrAA07ControlE0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/controlSize(_:)\":{\"role\":\"symbol\",\"title\":\"controlSize(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlSize\",\"preciseIdentifier\":\"s:7SwiftUI11ControlSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/controlSize(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/controlsize(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/coordinatespace(name:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"coordinateSpace\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/coordinatespace(name:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/coordinateSpace(name:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.coordinateSpace(name:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"coordinateSpace(name:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"coordinateSpace\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15coordinateSpace4nameQrqd___tSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/coordinateSpace(name:)\":{\"role\":\"symbol\",\"title\":\"coordinateSpace(name:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"coordinateSpace\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/coordinateSpace(name:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/coordinatespace(name:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/cornerradius(_:antialiased:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"cornerRadius\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/cornerradius(_:antialiased:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/cornerRadius(_:antialiased:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.cornerRadius(_:antialiased:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"cornerRadius(_:antialiased:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"cornerRadius\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12cornerRadius_11antialiasedQr12CoreGraphics7CGFloatV_SbtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/cornerRadius(_:antialiased:)\":{\"role\":\"symbol\",\"title\":\"cornerRadius(_:antialiased:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"cornerRadius\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/cornerRadius(_:antialiased:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/cornerradius(_:antialiased:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/datepickerstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"datePickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"DatePickerStyle\",\"preciseIdentifier\":\"s:7SwiftUI15DatePickerStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/datepickerstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/datePickerStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.datePickerStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"datePickerStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"datePickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15datePickerStyleyQrqd__AA04DateeF0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/datePickerStyle(_:)\":{\"role\":\"symbol\",\"title\":\"datePickerStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"datePickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/datePickerStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/datepickerstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/defaultappstorage(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"defaultAppStorage\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"store\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UserDefaults\",\"preciseIdentifier\":\"c:objc(cs)NSUserDefaults\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/defaultappstorage(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/defaultAppStorage(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.defaultAppStorage(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"defaultAppStorage(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"defaultAppStorage\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UserDefaults\",\"preciseIdentifier\":\"c:objc(cs)NSUserDefaults\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17defaultAppStorageyQrSo14NSUserDefaultsCF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/defaultAppStorage(_:)\":{\"role\":\"symbol\",\"title\":\"defaultAppStorage(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"defaultAppStorage\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UserDefaults\",\"preciseIdentifier\":\"c:objc(cs)NSUserDefaults\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/defaultAppStorage(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/defaultappstorage(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/deletedisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"deleteDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isDisabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/deletedisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/deleteDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.deleteDisabled(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"deleteDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"deleteDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14deleteDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/deleteDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"deleteDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"deleteDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/deleteDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/deletedisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/disableautocorrection(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disableAutocorrection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disable\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/disableautocorrection(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/disableAutocorrection(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.disableAutocorrection(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"disableAutocorrection(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disableAutocorrection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21disableAutocorrectionyQrSbSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/disableAutocorrection(_:)\":{\"role\":\"symbol\",\"title\":\"disableAutocorrection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disableAutocorrection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/disableAutocorrection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/disableautocorrection(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/disabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/disabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/disabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.disabled(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"disabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8disabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/disabled(_:)\":{\"role\":\"symbol\",\"title\":\"disabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/disabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/disabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/drawinggroup(opaque:colormode:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"drawingGroup\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = false, \"},{\"kind\":\"externalParam\",\"text\":\"colorMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI18ColorRenderingModeO\"},{\"kind\":\"text\",\"text\":\" = .nonLinear) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/drawinggroup(opaque:colormode:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/drawingGroup(opaque:colorMode:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.drawingGroup(opaque:colorMode:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"drawingGroup(opaque:colorMode:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"drawingGroup\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"colorMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI18ColorRenderingModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12drawingGroup6opaque9colorModeQrSb_AA014ColorRenderingH0OtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/drawingGroup(opaque:colorMode:)\":{\"role\":\"symbol\",\"title\":\"drawingGroup(opaque:colorMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"drawingGroup\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"colorMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI18ColorRenderingModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/drawingGroup(opaque:colorMode:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/drawinggroup(opaque:colormode:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/dynamictypesize(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"dynamicTypeSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"size\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DynamicTypeSize\",\"preciseIdentifier\":\"s:7SwiftUI15DynamicTypeSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/dynamictypesize(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/dynamicTypeSize(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.dynamicTypeSize(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"dynamicTypeSize(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"dynamicTypeSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"DynamicTypeSize\",\"preciseIdentifier\":\"s:7SwiftUI15DynamicTypeSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15dynamicTypeSizeyQrAA07DynamiceF0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/dynamicTypeSize(_:)\":{\"role\":\"symbol\",\"title\":\"dynamicTypeSize(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"dynamicTypeSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"DynamicTypeSize\",\"preciseIdentifier\":\"s:7SwiftUI15DynamicTypeSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/dynamicTypeSize(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/dynamictypesize(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/edgesignoringsafearea(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"edgesIgnoringSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/edgesignoringsafearea(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/edgesIgnoringSafeArea(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.edgesIgnoringSafeArea(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"edgesIgnoringSafeArea(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"edgesIgnoringSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21edgesIgnoringSafeAreayQrAA4EdgeO3SetVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use ignoresSafeArea(_:edges:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use ignoresSafeArea(_:edges:) instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use ignoresSafeArea(_:edges:) instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use ignoresSafeArea(_:edges:) instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use ignoresSafeArea(_:edges:) instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/edgesIgnoringSafeArea(_:)\":{\"role\":\"symbol\",\"title\":\"edgesIgnoringSafeArea(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"edgesIgnoringSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/edgesIgnoringSafeArea(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/edgesignoringsafearea(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/environment(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"keyPath\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/environment(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/environment(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.environment(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"environment(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11environmentyQrs15WritableKeyPathCyAA17EnvironmentValuesVqd__G_qd__tlF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/environment(_:_:)\":{\"role\":\"symbol\",\"title\":\"environment(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/environment(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/environment(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/environmentobject(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environmentObject\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"object\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ObservableObject\",\"preciseIdentifier\":\"s:7Combine16ObservableObjectP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/environmentobject(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/environmentObject(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.environmentObject(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"environmentObject(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environmentObject\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17environmentObjectyQrqd__7Combine010ObservableE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/environmentObject(_:)\":{\"role\":\"symbol\",\"title\":\"environmentObject(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environmentObject\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/environmentObject(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/environmentobject(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/exportsitemproviders(_:onexport:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"contentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/exportsitemproviders(_:onexport:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/exportsItemProviders(_:onExport:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.exportsItemProviders(_:onExport:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20exportsItemProviders_8onExportQrSay22UniformTypeIdentifiers6UTTypeVG_SaySo14NSItemProviderCGyctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/exportsItemProviders(_:onExport:)\":{\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/exportsItemProviders(_:onExport:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/exportsitemproviders(_:onexport:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/exportsitemproviders(_:onexport:onedit:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"contentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onEdit\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/exportsitemproviders(_:onexport:onedit:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/exportsItemProviders(_:onExport:onEdit:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.exportsItemProviders(_:onExport:onEdit:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:onEdit:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onEdit\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20exportsItemProviders_8onExport0G4EditQrSay22UniformTypeIdentifiers6UTTypeVG_SaySo14NSItemProviderCGycSbAMctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/exportsItemProviders(_:onExport:onEdit:)\":{\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:onEdit:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onEdit\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/exportsItemProviders(_:onExport:onEdit:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/exportsitemproviders(_:onexport:onedit:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-6evgr.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"FileDocument\",\"preciseIdentifier\":\"s:7SwiftUI12FileDocumentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-6evgr\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-6evgr\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileExporter11isPresented8document11contentType15defaultFilename12onCompletionQrAA7BindingVySbG_qd__Sg07UniformJ11Identifiers6UTTypeVSSSgys6ResultOy10Foundation3URLVs5Error_pGctAA12FileDocumentRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-6evgr\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-6evgr\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-6evgr\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-8iv2y.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ReferenceFileDocument\",\"preciseIdentifier\":\"s:7SwiftUI21ReferenceFileDocumentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-8iv2y\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-8iv2y\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileExporter11isPresented8document11contentType15defaultFilename12onCompletionQrAA7BindingVySbG_qd__Sg07UniformJ11Identifiers6UTTypeVSSSgys6ResultOy10Foundation3URLVs5Error_pGctAA21ReferenceFileDocumentRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-8iv2y\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-8iv2y\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-8iv2y\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/fileexporter(ispresented:documents:contenttype:oncompletion:)-233kd.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Collection\",\"preciseIdentifier\":\"s:Sl\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ReferenceFileDocument\",\"preciseIdentifier\":\"s:7SwiftUI21ReferenceFileDocumentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-233kd\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-233kd\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileExporter(isPresented:documents:contentType:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileExporter11isPresented9documents11contentType12onCompletionQrAA7BindingVySbG_qd__07UniformJ11Identifiers6UTTypeVys6ResultOySay10Foundation3URLVGs5Error_pGctSlRd__AA21ReferenceFileDocument7ElementRpd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileExporter(isPresented:documents:contentType:onCompletion:)-233kd\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-233kd\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-233kd\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/fileexporter(ispresented:documents:contenttype:oncompletion:)-7map2.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Collection\",\"preciseIdentifier\":\"s:Sl\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"FileDocument\",\"preciseIdentifier\":\"s:7SwiftUI12FileDocumentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-7map2\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-7map2\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileExporter(isPresented:documents:contentType:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileExporter11isPresented9documents11contentType12onCompletionQrAA7BindingVySbG_qd__07UniformJ11Identifiers6UTTypeVys6ResultOySay10Foundation3URLVGs5Error_pGctSlRd__AA12FileDocument7ElementRpd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileExporter(isPresented:documents:contentType:onCompletion:)-7map2\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-7map2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-7map2\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"allowsMultipleSelection\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"allowsMultipleSelection\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileImporter11isPresented19allowedContentTypes23allowsMultipleSelection12onCompletionQrAA7BindingVySbG_Say22UniformTypeIdentifiers6UTTypeVGSbys6ResultOySay10Foundation3URLVGs5Error_pGctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"allowsMultipleSelection\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/fileimporter(ispresented:allowedcontenttypes:oncompletion:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileImporter(isPresented:allowedContentTypes:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12fileImporter11isPresented19allowedContentTypes12onCompletionQrAA7BindingVySbG_Say22UniformTypeIdentifiers6UTTypeVGys6ResultOy10Foundation3URLVs5Error_pGctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileImporter(isPresented:allowedContentTypes:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/filemover(ispresented:file:oncompletion:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"file\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/filemover(ispresented:file:oncompletion:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileMover(isPresented:file:onCompletion:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileMover(isPresented:file:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileMover(isPresented:file:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"file\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9fileMover11isPresented0D012onCompletionQrAA7BindingVySbG_10Foundation3URLVSgys6ResultOyAMs5Error_pGctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileMover(isPresented:file:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileMover(isPresented:file:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"file\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileMover(isPresented:file:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/filemover(ispresented:file:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/filemover(ispresented:files:oncompletion:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"files\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Collection\",\"preciseIdentifier\":\"s:Sl\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/filemover(ispresented:files:oncompletion:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileMover(isPresented:files:onCompletion:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fileMover(isPresented:files:onCompletion:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fileMover(isPresented:files:onCompletion:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"files\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9fileMover11isPresented5files12onCompletionQrAA7BindingVySbG_qd__ys6ResultOySay10Foundation3URLVGs5Error_pGctSlRd__AO7ElementRtd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileMover(isPresented:files:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileMover(isPresented:files:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"files\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileMover(isPresented:files:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/filemover(ispresented:files:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/fixedsize().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/fixedsize()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fixedSize()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fixedSize()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fixedSize()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9fixedSizeQryF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fixedSize()\":{\"role\":\"symbol\",\"title\":\"fixedSize()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fixedSize()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fixedsize()\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/fixedsize(horizontal:vertical:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"horizontal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"vertical\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/fixedsize(horizontal:vertical:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fixedSize(horizontal:vertical:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.fixedSize(horizontal:vertical:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"fixedSize(horizontal:vertical:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"horizontal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"vertical\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9fixedSize10horizontal8verticalQrSb_SbtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fixedSize(horizontal:vertical:)\":{\"role\":\"symbol\",\"title\":\"fixedSize(horizontal:vertical:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"horizontal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"vertical\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fixedSize(horizontal:vertical:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fixedsize(horizontal:vertical:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/flipsforrighttoleftlayoutdirection(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"flipsForRightToLeftLayoutDirection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"enabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/flipsforrighttoleftlayoutdirection(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/flipsForRightToLeftLayoutDirection(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.flipsForRightToLeftLayoutDirection(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"flipsForRightToLeftLayoutDirection(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"flipsForRightToLeftLayoutDirection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE34flipsForRightToLeftLayoutDirectionyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/flipsForRightToLeftLayoutDirection(_:)\":{\"role\":\"symbol\",\"title\":\"flipsForRightToLeftLayoutDirection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"flipsForRightToLeftLayoutDirection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/flipsForRightToLeftLayoutDirection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/flipsforrighttoleftlayoutdirection(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/focusable(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isFocusable\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/focusable(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusable(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusable(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusable(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9focusableyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focusable(_:)\":{\"role\":\"symbol\",\"title\":\"focusable(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusable(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusable(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/focusable(_:onfocuschange:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isFocusable\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true, \"},{\"kind\":\"externalParam\",\"text\":\"onFocusChange\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\" = { _ in }) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/focusable(_:onfocuschange:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusable(_:onFocusChange:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusable(_:onFocusChange:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusable(_:onFocusChange:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onFocusChange\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9focusable_13onFocusChangeQrSb_ySbctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"12.0\",\"message\":\"Use FocusState<T> and View.focused(_:equals) for functionality previously provided by the onChange parameter.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"15.0\",\"message\":\"Use FocusState<T> and View.focused(_:equals) for functionality previously provided by the onChange parameter.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"8.0\",\"message\":\"Use FocusState<T> and View.focused(_:equals) for functionality previously provided by the onChange parameter.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use FocusState<T> and View.focused(_:equals) for functionality previously provided by the onChange parameter.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focusable(_:onFocusChange:)\":{\"role\":\"symbol\",\"title\":\"focusable(_:onFocusChange:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onFocusChange\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusable(_:onFocusChange:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusable(_:onfocuschange:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/focused(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"condition\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/focused(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focused(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focused(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focused(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7focusedyQrAA10FocusStateV7BindingVySb_GF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focused(_:)\":{\"role\":\"symbol\",\"title\":\"focused(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focused(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focused(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/focused(_:equals:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"binding\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/focused(_:equals:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focused(_:equals:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focused(_:equals:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focused(_:equals:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7focused_6equalsQrAA10FocusStateV7BindingVyqd___G_qd__tSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focused(_:equals:)\":{\"role\":\"symbol\",\"title\":\"focused(_:equals:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focused(_:equals:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focused(_:equals:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/focusedscenevalue(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedSceneValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"keyPath\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/focusedscenevalue(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusedSceneValue(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusedSceneValue(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusedSceneValue(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedSceneValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17focusedSceneValueyQrs15WritableKeyPathCyAA13FocusedValuesVqd__SgG_qd__tlF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focusedSceneValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"focusedSceneValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedSceneValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusedSceneValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusedscenevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/focusedvalue(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"keyPath\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/focusedvalue(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusedValue(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusedValue(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusedValue(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12focusedValueyQrs15WritableKeyPathCyAA13FocusedValuesVqd__SgG_qd__tlF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focusedValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"focusedValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusedValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusedvalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/focusscope(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/focusscope(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusScope(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.focusScope(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"focusScope(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10focusScopeyQrAA9NamespaceV2IDVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focusScope(_:)\":{\"role\":\"symbol\",\"title\":\"focusScope(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusScope(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusscope(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/font(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Font\",\"preciseIdentifier\":\"s:7SwiftUI4FontV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/font(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/font(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.font(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"font(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Font\",\"preciseIdentifier\":\"s:7SwiftUI4FontV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4fontyQrAA4FontVSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/font(_:)\":{\"role\":\"symbol\",\"title\":\"font(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Font\",\"preciseIdentifier\":\"s:7SwiftUI4FontV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/font(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/font(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/foregroundcolor(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundcolor(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundColor(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.foregroundColor(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"foregroundColor(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15foregroundColoryQrAA0E0VSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/foregroundColor(_:)\":{\"role\":\"symbol\",\"title\":\"foregroundColor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundColor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundcolor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/foregroundstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.foregroundStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"foregroundStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15foregroundStyleyQrqd__AA05ShapeE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/foregroundStyle(_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/foregroundstyle(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"primary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"secondary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundstyle(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundStyle(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.foregroundStyle(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15foregroundStyleyQrqd___qd_0_tAA05ShapeE0Rd__AaERd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/foregroundStyle(_:_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundStyle(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundstyle(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/foregroundstyle(_:_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"primary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"secondary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tertiary\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundstyle(_:_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundStyle(_:_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.foregroundStyle(_:_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15foregroundStyleyQrqd___qd_0_qd_1_tAA05ShapeE0Rd__AaERd_0_AaERd_1_r1_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/foregroundStyle(_:_:_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundStyle(_:_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundstyle(_:_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/frame().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/frame()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/frame()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.frame()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"frame()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5frameQryF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Please pass one or more parameters.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/frame()\":{\"role\":\"symbol\",\"title\":\"frame()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/frame()\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/frame()\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"idealWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"maxWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"minHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"idealHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"maxHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"minHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5frame8minWidth05idealF003maxF00E6Height0gI00hI09alignmentQr12CoreGraphics7CGFloatVSg_A5oA9AlignmentVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\":{\"role\":\"symbol\",\"title\":\"frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"minHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/frame(width:height:alignment:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"height\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/frame(width:height:alignment:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/frame(width:height:alignment:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.frame(width:height:alignment:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"frame(width:height:alignment:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"height\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5frame5width6height9alignmentQr12CoreGraphics7CGFloatVSg_AkA9AlignmentVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/frame(width:height:alignment:)\":{\"role\":\"symbol\",\"title\":\"frame(width:height:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"height\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/frame(width:height:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/frame(width:height:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/gesture(_:including:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Gesture\",\"preciseIdentifier\":\"s:7SwiftUI7GestureP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/gesture(_:including:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/gesture(_:including:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.gesture(_:including:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"gesture(_:including:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7gesture_9includingQrqd___AA11GestureMaskVtAA0F0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/gesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"gesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/gesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/gesture(_:including:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/grayscale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"grayscale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"amount\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/grayscale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/grayscale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.grayscale(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"grayscale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"grayscale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9grayscaleyQrSdF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/grayscale(_:)\":{\"role\":\"symbol\",\"title\":\"grayscale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"grayscale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/grayscale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/grayscale(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/groupboxstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"groupBoxStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"GroupBoxStyle\",\"preciseIdentifier\":\"s:7SwiftUI13GroupBoxStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/groupboxstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/groupBoxStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.groupBoxStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"groupBoxStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"groupBoxStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13groupBoxStyleyQrqd__AA05GroupeF0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/groupBoxStyle(_:)\":{\"role\":\"symbol\",\"title\":\"groupBoxStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"groupBoxStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/groupBoxStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/groupboxstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/handlesexternalevents(preferring:allowing:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"handlesExternalEvents\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"preferring\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/handlesexternalevents(preferring:allowing:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/handlesExternalEvents(preferring:allowing:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.handlesExternalEvents(preferring:allowing:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"handlesExternalEvents(preferring:allowing:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"handlesExternalEvents\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"preferring\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21handlesExternalEvents10preferring8allowingQrShySSG_AGtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/handlesExternalEvents(preferring:allowing:)\":{\"role\":\"symbol\",\"title\":\"handlesExternalEvents(preferring:allowing:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"handlesExternalEvents\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"preferring\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/handlesExternalEvents(preferring:allowing:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/handlesexternalevents(preferring:allowing:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/headerprominence(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"headerProminence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"prominence\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Prominence\",\"preciseIdentifier\":\"s:7SwiftUI10ProminenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/headerprominence(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/headerProminence(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.headerProminence(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"headerProminence(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"headerProminence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Prominence\",\"preciseIdentifier\":\"s:7SwiftUI10ProminenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16headerProminenceyQrAA0E0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/headerProminence(_:)\":{\"role\":\"symbol\",\"title\":\"headerProminence(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"headerProminence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Prominence\",\"preciseIdentifier\":\"s:7SwiftUI10ProminenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/headerProminence(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/headerprominence(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/help(_:)-296.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"textKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/help(_:)-296\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/help(_:)-296\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.help(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"help(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4helpyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/help(_:)-296\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/help(_:)-296\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/help(_:)-296\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/help(_:)-2u744.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/help(_:)-2u744\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/help(_:)-2u744\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.help(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"help(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4helpyQrqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/help(_:)-2u744\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/help(_:)-2u744\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/help(_:)-2u744\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/help(_:)-4q5ms.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/help(_:)-4q5ms\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/help(_:)-4q5ms\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.help(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"help(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4helpyQrAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/help(_:)-4q5ms\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/help(_:)-4q5ms\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/help(_:)-4q5ms\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/hidden().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/hidden()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/hidden()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.hidden()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"hidden()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6hiddenQryF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/hidden()\":{\"role\":\"symbol\",\"title\":\"hidden()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/hidden()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/hidden()\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/highprioritygesture(_:including:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"highPriorityGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Gesture\",\"preciseIdentifier\":\"s:7SwiftUI7GestureP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/highprioritygesture(_:including:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/highPriorityGesture(_:including:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.highPriorityGesture(_:including:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"highPriorityGesture(_:including:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"highPriorityGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19highPriorityGesture_9includingQrqd___AA0F4MaskVtAA0F0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/highPriorityGesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"highPriorityGesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"highPriorityGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/highPriorityGesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/highprioritygesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/horizontalradiogrouplayout().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"horizontalRadioGroupLayout\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/horizontalradiogrouplayout()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/horizontalRadioGroupLayout()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.horizontalRadioGroupLayout()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"horizontalRadioGroupLayout()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"horizontalRadioGroupLayout\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26horizontalRadioGroupLayoutQryF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/horizontalRadioGroupLayout()\":{\"role\":\"symbol\",\"title\":\"horizontalRadioGroupLayout()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"horizontalRadioGroupLayout\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/horizontalRadioGroupLayout()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/horizontalradiogrouplayout()\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/huerotation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hueRotation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"angle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/huerotation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/hueRotation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.hueRotation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"hueRotation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hueRotation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11hueRotationyQrAA5AngleVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/hueRotation(_:)\":{\"role\":\"symbol\",\"title\":\"hueRotation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hueRotation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/hueRotation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/huerotation(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/id(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/id(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/id(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.id(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"id(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE2idyQrqd__SHRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/id(_:)\":{\"role\":\"symbol\",\"title\":\"id(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/id(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/id(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/ignoressafearea(_:edges:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ignoresSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"regions\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SafeAreaRegions\",\"preciseIdentifier\":\"s:7SwiftUI15SafeAreaRegionsV\"},{\"kind\":\"text\",\"text\":\" = .all, \"},{\"kind\":\"externalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/ignoressafearea(_:edges:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/ignoresSafeArea(_:edges:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.ignoresSafeArea(_:edges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"ignoresSafeArea(_:edges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ignoresSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SafeAreaRegions\",\"preciseIdentifier\":\"s:7SwiftUI15SafeAreaRegionsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15ignoresSafeArea_5edgesQrAA0eF7RegionsV_AA4EdgeO3SetVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/ignoresSafeArea(_:edges:)\":{\"role\":\"symbol\",\"title\":\"ignoresSafeArea(_:edges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ignoresSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SafeAreaRegions\",\"preciseIdentifier\":\"s:7SwiftUI15SafeAreaRegionsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/ignoresSafeArea(_:edges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ignoressafearea(_:edges:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/imagescale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"imageScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Image\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Scale\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV5ScaleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/imagescale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/imageScale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.imageScale(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"imageScale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"imageScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Image\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Scale\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV5ScaleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10imageScaleyQrAA5ImageV0E0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/imageScale(_:)\":{\"role\":\"symbol\",\"title\":\"imageScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"imageScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Image\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Scale\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV5ScaleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/imageScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/imagescale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/importsitemproviders(_:onimport:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"importsItemProviders\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"contentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onImport\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/importsitemproviders(_:onimport:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/importsItemProviders(_:onImport:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.importsItemProviders(_:onImport:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"importsItemProviders(_:onImport:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"importsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onImport\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20importsItemProviders_8onImportQrSay22UniformTypeIdentifiers6UTTypeVG_SbSaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/importsItemProviders(_:onImport:)\":{\"role\":\"symbol\",\"title\":\"importsItemProviders(_:onImport:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"importsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onImport\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/importsItemProviders(_:onImport:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/importsitemproviders(_:onimport:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/init(_:initialindex:stackcontent:)-4x5f3.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"stackContent\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"StackContent\"},{\"kind\":\"text\",\"text\":\")\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"data\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A collection of data that will be provided to content views through closure.\"}]}]},{\"name\":\"initialIndex\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"An initial index of data for which content view will be rendered first.\"}]}]},{\"name\":\"stackContent\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view builder that dynamically renders content view based on current index and data provided. It also exposes the translation value of how much view is been dragging while shuffling.\"}]}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/init(_:initialindex:stackcontent:)-4x5f3\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/init(_:initialIndex:stackContent:)-4x5f3\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" and exposes translation value to child content through view builder.\"}],\"kind\":\"symbol\",\"metadata\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"StackContent\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:stackContent:)\",\"roleHeading\":\"Initializer\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"stackContent\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"StackContent\"},{\"kind\":\"text\",\"text\":\")\"}],\"symbolKind\":\"init\",\"externalID\":\"s:9ShuffleIt0A5StackV_12initialIndex12stackContentACyxq_Gx_0E0QzSgq_7ElementQz_12CoreGraphics7CGFloatVtctcfc\",\"extendedModule\":\"ShuffleIt\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/init(_:initialIndex:stackContent:)-4x5f3\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"StackContent\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:stackContent:)\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"stackContent\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"StackContent\"},{\"kind\":\"text\",\"text\":\")\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" and exposes translation value to child content through view builder.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/init(_:initialIndex:stackContent:)-4x5f3\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/init(_:initialindex:stackcontent:)-4x5f3\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/init(_:initialindex:stackcontent:)-8ktnr.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"stackContent\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"StackContent\"},{\"kind\":\"text\",\"text\":\")\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"data\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A collection of data that will be provided to content views through closure.\"}]}]},{\"name\":\"initialIndex\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"An initial index of data for which content view will be rendered first.\"}]}]},{\"name\":\"stackContent\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view builder that dynamically renders content view based on current index and data provided.\"}]}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/init(_:initialindex:stackcontent:)-8ktnr\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/init(_:initialIndex:stackContent:)-8ktnr\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"StackContent\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:stackContent:)\",\"roleHeading\":\"Initializer\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"stackContent\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"StackContent\"},{\"kind\":\"text\",\"text\":\")\"}],\"symbolKind\":\"init\",\"externalID\":\"s:9ShuffleIt0A5StackV_12initialIndex12stackContentACyxq_Gx_0E0QzSgq_7ElementQzctcfc\",\"extendedModule\":\"ShuffleIt\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/init(_:initialIndex:stackContent:)-8ktnr\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"StackContent\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:stackContent:)\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"stackContent\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"StackContent\"},{\"kind\":\"text\",\"text\":\")\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/init(_:initialIndex:stackContent:)-8ktnr\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/init(_:initialindex:stackcontent:)-8ktnr\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/interactivedismissdisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"interactiveDismissDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isDisabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/interactivedismissdisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/interactiveDismissDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.interactiveDismissDisabled(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"interactiveDismissDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"interactiveDismissDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26interactiveDismissDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/interactiveDismissDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"interactiveDismissDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"interactiveDismissDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/interactiveDismissDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/interactivedismissdisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/itemprovider(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"itemProvider\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Optional\",\"preciseIdentifier\":\"s:Sq\"},{\"kind\":\"text\",\"text\":\"<() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"?>) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/itemprovider(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/itemProvider(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.itemProvider(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"itemProvider(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"itemProvider\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Optional\",\"preciseIdentifier\":\"s:Sq\"},{\"kind\":\"text\",\"text\":\"<() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"?>) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12itemProvideryQrSo06NSItemE0CSgycSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/itemProvider(_:)\":{\"role\":\"symbol\",\"title\":\"itemProvider(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"itemProvider\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Optional\",\"preciseIdentifier\":\"s:Sq\"},{\"kind\":\"text\",\"text\":\"<() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"?>) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/itemProvider(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/itemprovider(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/keyboardshortcut(_:)-30f12.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shortcut\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:)-30f12\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:)-30f12\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.keyboardShortcut(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16keyboardShortcutyQrAA08KeyboardE0VSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.4\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.3\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/keyboardShortcut(_:)-30f12\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:)-30f12\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:)-30f12\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/keyboardshortcut(_:)-38k96.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shortcut\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:)-38k96\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:)-38k96\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.keyboardShortcut(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16keyboardShortcutyQrAA08KeyboardE0VF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/keyboardShortcut(_:)-38k96\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:)-38k96\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:)-38k96\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/keyboardshortcut(_:modifiers:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\" = .command) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:modifiers:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:modifiers:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.keyboardShortcut(_:modifiers:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16keyboardShortcut_9modifiersQrAA13KeyEquivalentV_AA14EventModifiersVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/keyboardShortcut(_:modifiers:)\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:modifiers:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:modifiers:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/keyboardshortcut(_:modifiers:localization:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\" = .command, \"},{\"kind\":\"externalParam\",\"text\":\"localization\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Localization\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV12LocalizationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:modifiers:localization:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:modifiers:localization:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.keyboardShortcut(_:modifiers:localization:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:localization:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"localization\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Localization\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV12LocalizationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16keyboardShortcut_9modifiers12localizationQrAA13KeyEquivalentV_AA14EventModifiersVAA08KeyboardE0V12LocalizationVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/keyboardShortcut(_:modifiers:localization:)\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:localization:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"localization\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Localization\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV12LocalizationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:modifiers:localization:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:modifiers:localization:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/labelshidden().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelsHidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/labelshidden()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/labelsHidden()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.labelsHidden()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"labelsHidden()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelsHidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12labelsHiddenQryF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/labelsHidden()\":{\"role\":\"symbol\",\"title\":\"labelsHidden()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelsHidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/labelsHidden()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/labelshidden()\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/labelstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"LabelStyle\",\"preciseIdentifier\":\"s:7SwiftUI10LabelStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/labelstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/labelStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.labelStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"labelStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10labelStyleyQrqd__AA05LabelE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/labelStyle(_:)\":{\"role\":\"symbol\",\"title\":\"labelStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/labelStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/labelstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/layoutpriority(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"layoutPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/layoutpriority(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/layoutPriority(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.layoutPriority(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"layoutPriority(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"layoutPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14layoutPriorityyQrSdF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/layoutPriority(_:)\":{\"role\":\"symbol\",\"title\":\"layoutPriority(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"layoutPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/layoutPriority(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/layoutpriority(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/linelimit(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineLimit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"number\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/linelimit(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/lineLimit(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.lineLimit(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"lineLimit(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineLimit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9lineLimityQrSiSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/lineLimit(_:)\":{\"role\":\"symbol\",\"title\":\"lineLimit(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineLimit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/lineLimit(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/linelimit(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/linespacing(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/linespacing(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/lineSpacing(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.lineSpacing(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"lineSpacing(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11lineSpacingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/lineSpacing(_:)\":{\"role\":\"symbol\",\"title\":\"lineSpacing(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/lineSpacing(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/linespacing(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/listitemtint(_:)-66j6h.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ListItemTint\",\"preciseIdentifier\":\"s:7SwiftUI12ListItemTintV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/listitemtint(_:)-66j6h\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listItemTint(_:)-66j6h\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listItemTint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ListItemTint\",\"preciseIdentifier\":\"s:7SwiftUI12ListItemTintV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12listItemTintyQrAA04ListeF0VSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/listItemTint(_:)-66j6h\":{\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ListItemTint\",\"preciseIdentifier\":\"s:7SwiftUI12ListItemTintV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listItemTint(_:)-66j6h\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/listitemtint(_:)-66j6h\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/listitemtint(_:)-6zn9q.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/listitemtint(_:)-6zn9q\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listItemTint(_:)-6zn9q\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listItemTint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12listItemTintyQrAA5ColorVSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/listItemTint(_:)-6zn9q\":{\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listItemTint(_:)-6zn9q\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/listitemtint(_:)-6zn9q\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/listrowbackground(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowBackground\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"view\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/listrowbackground(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listRowBackground(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listRowBackground(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listRowBackground(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowBackground\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE17listRowBackgroundyQrqd__SgAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/listRowBackground(_:)\":{\"role\":\"symbol\",\"title\":\"listRowBackground(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowBackground\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listRowBackground(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/listrowbackground(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/listrowinsets(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowInsets\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"insets\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/listrowinsets(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listRowInsets(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listRowInsets(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listRowInsets(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowInsets\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13listRowInsetsyQrAA04EdgeF0VSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/listRowInsets(_:)\":{\"role\":\"symbol\",\"title\":\"listRowInsets(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowInsets\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listRowInsets(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/listrowinsets(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/liststyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ListStyle\",\"preciseIdentifier\":\"s:7SwiftUI9ListStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/liststyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.listStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"listStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9listStyleyQrqd__AA04ListE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/listStyle(_:)\":{\"role\":\"symbol\",\"title\":\"listStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/liststyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/luminancetoalpha().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"luminanceToAlpha\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/luminancetoalpha()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/luminanceToAlpha()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.luminanceToAlpha()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"luminanceToAlpha()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"luminanceToAlpha\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16luminanceToAlphaQryF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/luminanceToAlpha()\":{\"role\":\"symbol\",\"title\":\"luminanceToAlpha()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"luminanceToAlpha\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/luminanceToAlpha()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/luminancetoalpha()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/mask(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/mask(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/mask(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.mask(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"mask(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4maskyQrqd__AaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use overload where mask accepts a @ViewBuilder instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use overload where mask accepts a @ViewBuilder instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use overload where mask accepts a @ViewBuilder instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use overload where mask accepts a @ViewBuilder instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use overload where mask accepts a @ViewBuilder instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/mask(_:)\":{\"role\":\"symbol\",\"title\":\"mask(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/mask(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/mask(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/mask(alignment:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/mask(alignment:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/mask(alignment:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.mask(alignment:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"mask(alignment:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4mask9alignment_QrAA9AlignmentV_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/mask(alignment:_:)\":{\"role\":\"symbol\",\"title\":\"mask(alignment:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/mask(alignment:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/mask(alignment:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/matchedgeometryeffect(id:in:properties:anchor:issource:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"matchedGeometryEffect\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"properties\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"MatchedGeometryProperties\",\"preciseIdentifier\":\"s:7SwiftUI25MatchedGeometryPropertiesV\"},{\"kind\":\"text\",\"text\":\" = .frame, \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"isSource\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/matchedgeometryeffect(id:in:properties:anchor:issource:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.matchedGeometryEffect(id:in:properties:anchor:isSource:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"matchedGeometryEffect\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"properties\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"MatchedGeometryProperties\",\"preciseIdentifier\":\"s:7SwiftUI25MatchedGeometryPropertiesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isSource\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21matchedGeometryEffect2id2in10properties6anchor8isSourceQrqd___AA9NamespaceV2IDVAA07MatchedE10PropertiesVAA9UnitPointVSbtSHRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/matchedGeometryEffect(id:in:properties:anchor:isSource:)\":{\"role\":\"symbol\",\"title\":\"matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"matchedGeometryEffect\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"properties\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"MatchedGeometryProperties\",\"preciseIdentifier\":\"s:7SwiftUI25MatchedGeometryPropertiesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isSource\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/matchedgeometryeffect(id:in:properties:anchor:issource:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/menubuttonstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuButtonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuButtonStyle\",\"preciseIdentifier\":\"s:7SwiftUI15MenuButtonStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/menubuttonstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/menuButtonStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.menuButtonStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"menuButtonStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuButtonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15menuButtonStyleyQrqd__AA04MenueF0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `menuStyle(_:)` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use `menuStyle(_:)` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/menuButtonStyle(_:)\":{\"role\":\"symbol\",\"title\":\"menuButtonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuButtonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/menuButtonStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/menubuttonstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/menuindicator(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuIndicator\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"visibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/menuindicator(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/menuIndicator(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.menuIndicator(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"menuIndicator(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuIndicator\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13menuIndicatoryQrAA10VisibilityOF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/menuIndicator(_:)\":{\"role\":\"symbol\",\"title\":\"menuIndicator(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuIndicator\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/menuIndicator(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/menuindicator(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/menustyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuStyle\",\"preciseIdentifier\":\"s:7SwiftUI9MenuStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/menustyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/menuStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.menuStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"menuStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9menuStyleyQrqd__AA04MenuE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/menuStyle(_:)\":{\"role\":\"symbol\",\"title\":\"menuStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/menuStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/menustyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/minimumscalefactor(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"minimumScaleFactor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"factor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/minimumscalefactor(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/minimumScaleFactor(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.minimumScaleFactor(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"minimumScaleFactor(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"minimumScaleFactor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18minimumScaleFactoryQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/minimumScaleFactor(_:)\":{\"role\":\"symbol\",\"title\":\"minimumScaleFactor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"minimumScaleFactor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/minimumScaleFactor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/minimumscalefactor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/modifier(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/modifier(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/modifier(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.modifier(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"modifier(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8modifieryAA15ModifiedContentVyxqd__Gqd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/modifier(_:)\":{\"role\":\"symbol\",\"title\":\"modifier(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/modifier(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/modifier(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/monospaceddigit().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"monospacedDigit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/monospaceddigit()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/monospacedDigit()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.monospacedDigit()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"monospacedDigit()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"monospacedDigit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15monospacedDigitQryF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/monospacedDigit()\":{\"role\":\"symbol\",\"title\":\"monospacedDigit()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"monospacedDigit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/monospacedDigit()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/monospaceddigit()\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/movedisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"moveDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isDisabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/movedisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/moveDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.moveDisabled(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"moveDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"moveDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12moveDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/moveDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"moveDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"moveDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/moveDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/movedisabled(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/multilinetextalignment(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"multilineTextAlignment\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TextAlignment\",\"preciseIdentifier\":\"s:7SwiftUI13TextAlignmentO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/multilinetextalignment(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/multilineTextAlignment(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.multilineTextAlignment(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"multilineTextAlignment(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"multilineTextAlignment\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TextAlignment\",\"preciseIdentifier\":\"s:7SwiftUI13TextAlignmentO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE22multilineTextAlignmentyQrAA0eF0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/multilineTextAlignment(_:)\":{\"role\":\"symbol\",\"title\":\"multilineTextAlignment(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"multilineTextAlignment\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TextAlignment\",\"preciseIdentifier\":\"s:7SwiftUI13TextAlignmentO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/multilineTextAlignment(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/multilinetextalignment(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/navigationsubtitle(_:)-16d52.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"subtitleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationsubtitle(_:)-16d52\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationSubtitle(_:)-16d52\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationSubtitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18navigationSubtitleyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"Mac Catalyst\",\"introducedAt\":\"14.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationSubtitle(_:)-16d52\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationSubtitle(_:)-16d52\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationsubtitle(_:)-16d52\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/navigationsubtitle(_:)-206md.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"subtitle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationsubtitle(_:)-206md\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationSubtitle(_:)-206md\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationSubtitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18navigationSubtitleyQrqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"Mac Catalyst\",\"introducedAt\":\"14.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationSubtitle(_:)-206md\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationSubtitle(_:)-206md\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationsubtitle(_:)-206md\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/navigationsubtitle(_:)-7em2i.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"subtitle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationsubtitle(_:)-7em2i\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationSubtitle(_:)-7em2i\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationSubtitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18navigationSubtitleyQrAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"Mac Catalyst\",\"introducedAt\":\"14.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationSubtitle(_:)-7em2i\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationSubtitle(_:)-7em2i\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationsubtitle(_:)-7em2i\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/navigationtitle(_:)-7aj99.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"titleKey\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7aj99\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7aj99\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationTitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15navigationTitleyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationTitle(_:)-7aj99\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7aj99\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7aj99\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/navigationtitle(_:)-7jd07.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7jd07\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7jd07\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationTitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15navigationTitleyQrqd__SyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationTitle(_:)-7jd07\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7jd07\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7jd07\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/navigationtitle(_:)-7twkm.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7twkm\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7twkm\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationTitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15navigationTitleyQrAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationTitle(_:)-7twkm\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7twkm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7twkm\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/navigationtitle(_:)-7w547.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"title\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7w547\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7w547\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationTitle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15navigationTitleyQrqd__yXEAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationTitle(_:)-7w547\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7w547\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7w547\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/navigationviewstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"NavigationViewStyle\",\"preciseIdentifier\":\"s:7SwiftUI19NavigationViewStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationviewstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationViewStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.navigationViewStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"navigationViewStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE010navigationC5StyleyQrqd__AA010NavigationcE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"navigationViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/offset(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/offset(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/offset(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.offset(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"offset(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6offsetyQrSo6CGSizeVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/offset(_:)\":{\"role\":\"symbol\",\"title\":\"offset(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/offset(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/offset(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/offset(x:y:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0, \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/offset(x:y:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/offset(x:y:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.offset(x:y:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"offset(x:y:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6offset1x1yQr12CoreGraphics7CGFloatV_AItF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/offset(x:y:)\":{\"role\":\"symbol\",\"title\":\"offset(x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/offset(x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/offset(x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onappear(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onAppear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onappear(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onAppear(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onAppear(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onAppear(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onAppear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8onAppear7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onAppear(perform:)\":{\"role\":\"symbol\",\"title\":\"onAppear(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onAppear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onAppear(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onappear(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/oncarousel(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarousel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"preciseIdentifier\":\"s:9ShuffleIt15CarouselContextV\",\"text\":\"CarouselContext\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action for side effect of sliding.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes carousel context to perform everytime sliding occurs.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Using \"},{\"type\":\"codeVoice\",\"code\":\"onCarousel(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can be injected with a closure that exposes sliding information - \"},{\"type\":\"codeVoice\",\"code\":\"CarouselContext\"},{\"type\":\"text\",\"text\":\" through its parameter to perform a particular task whenever the user slides content views or sliding is executed programmatically.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following piece of code provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onCarousel(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .onCarousel { (context: CarouselContext) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/oncarousel(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCarousel(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens sliding events occurring on the carousel stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onCarousel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarousel\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselContext\",\"preciseIdentifier\":\"s:9ShuffleIt15CarouselContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE10onCarouselyQryAD0G7ContextVcF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext\":{\"role\":\"symbol\",\"title\":\"CarouselContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onCarousel(_:)\":{\"role\":\"symbol\",\"title\":\"onCarousel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarousel\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselContext\",\"preciseIdentifier\":\"s:9ShuffleIt15CarouselContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens sliding events occurring on the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCarousel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncarousel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/oncarouseltranslation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarouselTranslation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action to listen translation changes.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes translation changes while sliding.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To listen translation value of content views while sliding, \"},{\"type\":\"codeVoice\",\"code\":\"onCarouselTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier can be used by passing a closure in order to perform a specific task based on the translation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onCarouselTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    CarouselStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .onCarouselTranslation { (translation: CGFloat) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Besides, you can also directly listen translation value through the initializer instead of using this modifier.\"}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/oncarouseltranslation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCarouselTranslation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while sliding content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onCarouselTranslation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarouselTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE21onCarouselTranslationyQry12CoreGraphics7CGFloatVcF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onCarouselTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onCarouselTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarouselTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while sliding content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCarouselTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncarouseltranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onchange(of:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Equatable\",\"preciseIdentifier\":\"s:SQ\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onchange(of:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onChange(of:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onChange(of:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onChange(of:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8onChange2of7performQrqd___yqd__ctSQRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onChange(of:perform:)\":{\"role\":\"symbol\",\"title\":\"onChange(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onChange(of:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onchange(of:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/oncommand(_:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"selector\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Selector\",\"preciseIdentifier\":\"s:10ObjectiveC8SelectorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/oncommand(_:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCommand(_:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onCommand(_:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onCommand(_:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Selector\",\"preciseIdentifier\":\"s:10ObjectiveC8SelectorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9onCommand_7performQr10ObjectiveC8SelectorV_yycSgtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onCommand(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onCommand(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Selector\",\"preciseIdentifier\":\"s:10ObjectiveC8SelectorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCommand(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncommand(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/oncontinueuseractivity(_:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onContinueUserActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activityType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/oncontinueuseractivity(_:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onContinueUserActivity(_:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onContinueUserActivity(_:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onContinueUserActivity(_:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onContinueUserActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE22onContinueUserActivity_7performQrSS_ySo06NSUserG0CctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onContinueUserActivity(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onContinueUserActivity(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onContinueUserActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onContinueUserActivity(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncontinueuseractivity(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/oncopycommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCopyCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/oncopycommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCopyCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onCopyCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onCopyCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCopyCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13onCopyCommand7performQrSaySo14NSItemProviderCGycSg_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onCopyCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onCopyCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCopyCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCopyCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncopycommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/oncutcommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCutCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/oncutcommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCutCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onCutCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onCutCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCutCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12onCutCommand7performQrSaySo14NSItemProviderCGycSg_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onCutCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onCutCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCutCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCutCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncutcommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/ondeletecommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDeleteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/ondeletecommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDeleteCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDeleteCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDeleteCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDeleteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15onDeleteCommand7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDeleteCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onDeleteCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDeleteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDeleteCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondeletecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/ondisappear(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDisappear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/ondisappear(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDisappear(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDisappear(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDisappear(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDisappear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11onDisappear7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDisappear(perform:)\":{\"role\":\"symbol\",\"title\":\"onDisappear(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDisappear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDisappear(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondisappear(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/ondrag(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrag(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrag(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrag(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrag(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDragyQrSo14NSItemProviderCycF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.4\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrag(_:)\":{\"role\":\"symbol\",\"title\":\"onDrag(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrag(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrag(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/ondrag(_:preview:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"data\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"preview\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrag(_:preview:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrag(_:preview:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrag(_:preview:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrag(_:preview:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"preview\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrag_7previewQrSo14NSItemProviderCyc_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrag(_:preview:)\":{\"role\":\"symbol\",\"title\":\"onDrag(_:preview:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"preview\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrag(_:preview:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrag(_:preview:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/ondrop(of:delegate:)-1ea27.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:delegate:)-1ea27\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:delegate:)-1ea27\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:delegate:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of8delegateQrSay22UniformTypeIdentifiers6UTTypeVG_AA0E8Delegate_ptF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrop(of:delegate:)-1ea27\":{\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:delegate:)-1ea27\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:delegate:)-1ea27\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/ondrop(of:delegate:)-8thdr.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:delegate:)-8thdr\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:delegate:)-8thdr\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:delegate:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of8delegateQrSaySSG_AA0E8Delegate_ptF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"13.4\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrop(of:delegate:)-8thdr\":{\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:delegate:)-8thdr\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:delegate:)-8thdr\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/ondrop(of:istargeted:perform:)-363wn.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-363wn\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-363wn\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:isTargeted:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSay22UniformTypeIdentifiers6UTTypeVG_AA7BindingVySbGSgSbSaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrop(of:isTargeted:perform:)-363wn\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-363wn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-363wn\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/ondrop(of:istargeted:perform:)-3bmbv.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-3bmbv\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-3bmbv\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:isTargeted:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSaySSG_AA7BindingVySbGSgSbSaySo14NSItemProviderCG_So7CGPointVtctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"13.4\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrop(of:isTargeted:perform:)-3bmbv\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-3bmbv\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-3bmbv\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/ondrop(of:istargeted:perform:)-82gpe.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-82gpe\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-82gpe\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:isTargeted:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSay22UniformTypeIdentifiers6UTTypeVG_AA7BindingVySbGSgSbSaySo14NSItemProviderCG_So7CGPointVtctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrop(of:isTargeted:perform:)-82gpe\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-82gpe\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-82gpe\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/ondrop(of:istargeted:perform:)-84ef9.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-84ef9\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-84ef9\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onDrop(of:isTargeted:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSaySSG_AA7BindingVySbGSgSbSaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"13.4\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrop(of:isTargeted:perform:)-84ef9\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-84ef9\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-84ef9\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onexitcommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onExitCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onexitcommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onExitCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onExitCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onExitCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onExitCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13onExitCommand7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onExitCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onExitCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onExitCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onExitCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onexitcommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onhover(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onHover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onhover(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onHover(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onHover(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onHover(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onHover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7onHover7performQrySbc_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.4\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onHover(perform:)\":{\"role\":\"symbol\",\"title\":\"onHover(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onHover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onHover(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onhover(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\" = 0.5, \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 10, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration15maximumDistance7perform0D15PressingChangedQrSd_12CoreGraphics7CGFloatVyycySbcSgtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\" = 0.5, \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 10, \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration15maximumDistance8pressing7performQrSd_12CoreGraphics7CGFloatVySbcSgyyctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"onLongPressGesture(minimumDuration:maximumDuration:perform:onPressingChanged:)\",\"deprecated\":false,\"introducedAt\":\"13.0\",\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"onLongPressGesture(minimumDuration:maximumDuration:perform:onPressingChanged:)\",\"deprecated\":false,\"introducedAt\":\"10.15\",\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"onLongPressGesture(minimumDuration:maximumDuration:perform:onPressingChanged:)\",\"deprecated\":false,\"introducedAt\":\"6.0\",\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onlongpressgesture(minimumduration:perform:onpressingchanged:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\" = 0.5, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:perform:onpressingchanged:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onLongPressGesture(minimumDuration:perform:onPressingChanged:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration7perform0D15PressingChangedQrSd_yycySbcSgtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:perform:onpressingchanged:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onlongpressgesture(minimumduration:pressing:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\" = 0.5, \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:pressing:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:pressing:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onLongPressGesture(minimumDuration:pressing:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:pressing:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration8pressing7performQrSd_ySbcSgyyctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"renamed\":\"onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"deprecated\":false,\"introducedAt\":\"14.0\",\"name\":\"tvOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onLongPressGesture(minimumDuration:pressing:perform:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:pressing:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:pressing:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:pressing:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onmovecommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onMoveCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"MoveCommandDirection\",\"preciseIdentifier\":\"s:7SwiftUI20MoveCommandDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onmovecommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onMoveCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onMoveCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onMoveCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onMoveCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"MoveCommandDirection\",\"preciseIdentifier\":\"s:7SwiftUI20MoveCommandDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13onMoveCommand7performQryAA0eF9DirectionOcSg_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onMoveCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onMoveCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onMoveCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"MoveCommandDirection\",\"preciseIdentifier\":\"s:7SwiftUI20MoveCommandDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onMoveCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onmovecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onopenurl(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onOpenURL\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onopenurl(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onOpenURL(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onOpenURL(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onOpenURL(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onOpenURL\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9onOpenURL7performQry10Foundation0F0Vc_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onOpenURL(perform:)\":{\"role\":\"symbol\",\"title\":\"onOpenURL(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onOpenURL\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onOpenURL(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onopenurl(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onpastecommand(of:perform:)-4k6ie.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:perform:)-4k6ie\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:perform:)-4k6ie\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPasteCommand(of:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14onPasteCommand2of7performQrSaySSG_ySaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onPasteCommand(of:perform:)-4k6ie\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:perform:)-4k6ie\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:perform:)-4k6ie\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onpastecommand(of:perform:)-wliz.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:perform:)-wliz\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:perform:)-wliz\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPasteCommand(of:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14onPasteCommand2of7performQrSay22UniformTypeIdentifiers6UTTypeVG_ySaySo14NSItemProviderCGctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onPasteCommand(of:perform:)-wliz\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:perform:)-wliz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:perform:)-wliz\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onpastecommand(of:validator:perform:)-7tcqn.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:validator:perform:)-7tcqn\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:validator:perform:)-7tcqn\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPasteCommand(of:validator:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14onPasteCommand2of9validator7performQrSaySSG_qd__SgSaySo14NSItemProviderCGcyqd__ctlF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Provide `UTType`s as the `supportedContentTypes` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Provide `UTType`s as the `supportedContentTypes` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onPasteCommand(of:validator:perform:)-7tcqn\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:validator:perform:)-7tcqn\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:validator:perform:)-7tcqn\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onpastecommand(of:validator:perform:)-9ddq9.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"supportedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"payloadAction\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:validator:perform:)-9ddq9\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:validator:perform:)-9ddq9\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPasteCommand(of:validator:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14onPasteCommand2of9validator7performQrSay22UniformTypeIdentifiers6UTTypeVG_qd__SgSaySo14NSItemProviderCGcyqd__ctlF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onPasteCommand(of:validator:perform:)-9ddq9\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:validator:perform:)-9ddq9\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:validator:perform:)-9ddq9\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onplaypausecommand(perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPlayPauseCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onplaypausecommand(perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPlayPauseCommand(perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPlayPauseCommand(perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPlayPauseCommand(perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPlayPauseCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onPlayPauseCommand7performQryycSg_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onPlayPauseCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onPlayPauseCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPlayPauseCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPlayPauseCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onplaypausecommand(perform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onpreferencechange(_:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPreferenceChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Equatable\",\"preciseIdentifier\":\"s:SQ\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onpreferencechange(_:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPreferenceChange(_:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onPreferenceChange(_:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onPreferenceChange(_:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPreferenceChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18onPreferenceChange_7performQrqd__m_y5ValueQyd__ctAA0E3KeyRd__SQAGRQlF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onPreferenceChange(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onPreferenceChange(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPreferenceChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPreferenceChange(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpreferencechange(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onreceive(_:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onReceive\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"publisher\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Publisher\",\"preciseIdentifier\":\"s:7Combine9PublisherP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Failure\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"Never\",\"preciseIdentifier\":\"s:s5NeverO\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onreceive(_:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onReceive(_:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onReceive(_:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onReceive(_:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onReceive\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE9onReceive_7performQrqd___y6OutputQyd__ct7Combine9PublisherRd__s5NeverO7FailureRtd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onReceive(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onReceive(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onReceive\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onReceive(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onreceive(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onshuffle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A7ContextV\",\"text\":\"ShuffleContext\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action for side effect of shuffling.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes shuffle context to perform everytime shuffling happens.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Using \"},{\"type\":\"codeVoice\",\"code\":\"onShuffle(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can be injected wtih a closure that exposes shuffling information - \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleContext\"},{\"type\":\"text\",\"text\":\" through its parameter to perform a particular task whenever the user swipes content views or shuffling is triggered programmatically.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onShuffle(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .onShuffle { (context: ShuffleContext) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onShuffle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffle\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A7ContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE02onD0yQryAD0D7ContextVcF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext\":{\"role\":\"symbol\",\"title\":\"ShuffleContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onShuffle(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffle\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A7ContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onshuffledeck(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeck\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A11DeckContextV\",\"text\":\"ShuffleDeckContext\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action for side effect of shuffling.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes shuffle deck context to perform everytime shuffling occurs.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Using \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleDeck(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can inject a closure that exposes shuffling information - \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeckContext\"},{\"type\":\"text\",\"text\":\" through its parameter to perform a particular task whenever the user shuffle content views or shuffling is triggered programmatically.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following piece of code provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleDeck(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .onShuffleDeck { (context: ShuffleDeckContext) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffledeck(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleDeck(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onShuffleDeck(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeck\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A11DeckContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE02onD4DeckyQryAD0dG7ContextVcF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onShuffleDeck(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeck(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeck\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A11DeckContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleDeck(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffledeck(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onshuffledecktranslation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeckTranslation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action to listen translation changes.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes translation changes while shuffling.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To listen translation value of content views, \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleDeckTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier can be used by passing a closure in order to perform a specific task based on the translation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleDeckTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .onShuffleDeckTranslation { (translation: CGFloat) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Besides, you can also directly listen translation value through the view builder instead.\"}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffledecktranslation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleDeckTranslation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while shuffling content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onShuffleDeckTranslation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeckTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE02onD15DeckTranslationyQry12CoreGraphics7CGFloatVcF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onShuffleDeckTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeckTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeckTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while shuffling content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleDeckTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffledecktranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onshuffletranslation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleTranslation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given action to listen translation changes.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"perform\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A closure that exposes translation changes while swiping.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To listen translation value of content views while shuffling, \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier can be used by passing a closure in order to perform a specific task based on the translation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the usage of \"},{\"type\":\"codeVoice\",\"code\":\"onShuffleTranslation(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .onShuffleTranslation { (translation: CGFloat) in\",\"        \\/* some stuff *\\/\",\"    }\",\"}\"]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Besides, you can also directly listen translation value through the initializer instead of using this modifier.\"}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffletranslation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleTranslation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while swiping content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"onShuffleTranslation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE02onD11TranslationyQry12CoreGraphics7CGFloatVcF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onShuffleTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while swiping content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffletranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/onsubmit(of:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onSubmit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"triggers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitTriggers\",\"preciseIdentifier\":\"s:7SwiftUI14SubmitTriggersV\"},{\"kind\":\"text\",\"text\":\" = .text, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/onsubmit(of:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onSubmit(of:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onSubmit(of:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onSubmit(of:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onSubmit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitTriggers\",\"preciseIdentifier\":\"s:7SwiftUI14SubmitTriggersV\"},{\"kind\":\"text\",\"text\":\", (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8onSubmit2of_QrAA0E8TriggersV_yyctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onSubmit(of:_:)\":{\"role\":\"symbol\",\"title\":\"onSubmit(of:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onSubmit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitTriggers\",\"preciseIdentifier\":\"s:7SwiftUI14SubmitTriggersV\"},{\"kind\":\"text\",\"text\":\", (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onSubmit(of:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onsubmit(of:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/ontapgesture(count:perform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onTapGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\" = 1, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/ontapgesture(count:perform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onTapGesture(count:perform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.onTapGesture(count:perform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"onTapGesture(count:perform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onTapGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12onTapGesture5count7performQrSi_yyctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onTapGesture(count:perform:)\":{\"role\":\"symbol\",\"title\":\"onTapGesture(count:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onTapGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onTapGesture(count:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ontapgesture(count:perform:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/opacity(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/opacity(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/opacity(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.opacity(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"opacity(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7opacityyQrSdF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/opacity(_:)\":{\"role\":\"symbol\",\"title\":\"opacity(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/opacity(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/opacity(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/overlay(_:alignment:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(_:alignment:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(_:alignment:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlay(_:alignment:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlay(_:alignment:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7overlay_9alignmentQrqd___AA9AlignmentVtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `overlay(alignment:content:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"iOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `overlay(alignment:content:)` instead.\",\"introducedAt\":\"10.15\",\"deprecated\":false,\"name\":\"macOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `overlay(alignment:content:)` instead.\",\"introducedAt\":\"13.0\",\"deprecated\":false,\"name\":\"tvOS\",\"beta\":false},{\"unavailable\":false,\"deprecatedAt\":\"100000.0\",\"message\":\"Use `overlay(alignment:content:)` instead.\",\"introducedAt\":\"6.0\",\"deprecated\":false,\"name\":\"watchOS\",\"beta\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"deprecationSummary\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Use `overlay(alignment:content:)` instead.\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/overlay(_:alignment:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(_:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(_:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/overlay(_:ignoressafeareaedges:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(_:ignoressafeareaedges:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(_:ignoresSafeAreaEdges:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlay(_:ignoresSafeAreaEdges:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlay(_:ignoresSafeAreaEdges:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7overlay_20ignoresSafeAreaEdgesQrqd___AA4EdgeO3SetVtAA10ShapeStyleRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/overlay(_:ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(_:ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(_:ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/overlay(_:in:fillstyle:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"shape\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\" = FillStyle()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ShapeStyle\",\"preciseIdentifier\":\"s:7SwiftUI10ShapeStyleP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Shape\",\"preciseIdentifier\":\"s:7SwiftUI5ShapeP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(_:in:fillstyle:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(_:in:fillStyle:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlay(_:in:fillStyle:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlay(_:in:fillStyle:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7overlay_2in9fillStyleQrqd___qd_0_AA04FillG0VtAA05ShapeG0Rd__AA0I0Rd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/overlay(_:in:fillStyle:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(_:in:fillStyle:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(_:in:fillstyle:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/overlay(alignment:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(alignment:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(alignment:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlay(alignment:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlay(alignment:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7overlay9alignment7contentQrAA9AlignmentV_qd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/overlay(alignment:content:)\":{\"role\":\"symbol\",\"title\":\"overlay(alignment:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(alignment:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(alignment:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/overlaypreferencevalue(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlayPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type = Key.self, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/overlaypreferencevalue(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlayPreferenceValue(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.overlayPreferenceValue(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"overlayPreferenceValue(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlayPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE22overlayPreferenceValueyQrqd__m_qd_0_0F0Qyd__ctAA0E3KeyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/overlayPreferenceValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"overlayPreferenceValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlayPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlayPreferenceValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlaypreferencevalue(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/padding(_:)-7zetw.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"length\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/padding(_:)-7zetw\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/padding(_:)-7zetw\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.padding(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"padding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7paddingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/padding(_:)-7zetw\":{\"role\":\"symbol\",\"title\":\"padding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/padding(_:)-7zetw\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/padding(_:)-7zetw\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/padding(_:)-9obs7.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"insets\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/padding(_:)-9obs7\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/padding(_:)-9obs7\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.padding(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"padding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7paddingyQrAA10EdgeInsetsVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/padding(_:)-9obs7\":{\"role\":\"symbol\",\"title\":\"padding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/padding(_:)-9obs7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/padding(_:)-9obs7\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/padding(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"length\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/padding(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/padding(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.padding(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"padding(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7paddingyQrAA4EdgeO3SetV_12CoreGraphics7CGFloatVSgtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/padding(_:_:)\":{\"role\":\"symbol\",\"title\":\"padding(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/padding(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/padding(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/pagecommand(value:in:step:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pageCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"bounds\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ClosedRange\",\"preciseIdentifier\":\"s:SN\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"step\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" = 1) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"BinaryInteger\",\"preciseIdentifier\":\"s:Sz\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/pagecommand(value:in:step:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/pageCommand(value:in:step:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.pageCommand(value:in:step:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"pageCommand(value:in:step:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pageCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ClosedRange\",\"preciseIdentifier\":\"s:SN\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"step\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11pageCommand5value2in4stepQrAA7BindingVyqd__G_SNyqd__Gqd__tSzRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.3\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/pageCommand(value:in:step:)\":{\"role\":\"symbol\",\"title\":\"pageCommand(value:in:step:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pageCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ClosedRange\",\"preciseIdentifier\":\"s:SN\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"step\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/pageCommand(value:in:step:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/pagecommand(value:in:step:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/pickerstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PickerStyle\",\"preciseIdentifier\":\"s:7SwiftUI11PickerStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/pickerstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/pickerStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.pickerStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"pickerStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11pickerStyleyQrqd__AA06PickerE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/pickerStyle(_:)\":{\"role\":\"symbol\",\"title\":\"pickerStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/pickerStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/pickerstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/popover(ispresented:attachmentanchor:arrowedge:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\" = .rect(.bounds), \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\" = .top, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/popover(ispresented:attachmentanchor:arrowedge:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.popover(isPresented:attachmentAnchor:arrowEdge:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7popover11isPresented16attachmentAnchor9arrowEdge7contentQrAA7BindingVySbG_AA017PopoverAttachmentH0OAA0J0Oqd__yctAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/popover(isPresented:attachmentAnchor:arrowEdge:content:)\":{\"role\":\"symbol\",\"title\":\"popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/popover(ispresented:attachmentanchor:arrowedge:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/popover(item:attachmentanchor:arrowedge:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\" = .rect(.bounds), \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\" = .top, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/popover(item:attachmentanchor:arrowedge:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/popover(item:attachmentAnchor:arrowEdge:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.popover(item:attachmentAnchor:arrowEdge:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"popover(item:attachmentAnchor:arrowEdge:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7popover4item16attachmentAnchor9arrowEdge7contentQrAA7BindingVyqd__SgG_AA017PopoverAttachmentG0OAA0I0Oqd_0_qd__cts12IdentifiableRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/popover(item:attachmentAnchor:arrowEdge:content:)\":{\"role\":\"symbol\",\"title\":\"popover(item:attachmentAnchor:arrowEdge:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/popover(item:attachmentAnchor:arrowEdge:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/popover(item:attachmentanchor:arrowedge:content:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/position(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/position(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/position(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.position(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"position(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8positionyQrSo7CGPointVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/position(_:)\":{\"role\":\"symbol\",\"title\":\"position(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/position(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/position(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/position(x:y:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0, \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/position(x:y:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/position(x:y:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.position(x:y:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"position(x:y:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8position1x1yQr12CoreGraphics7CGFloatV_AItF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/position(x:y:)\":{\"role\":\"symbol\",\"title\":\"position(x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/position(x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/position(x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/preference(key:value:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/preference(key:value:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/preference(key:value:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.preference(key:value:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"preference(key:value:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10preference3key5valueQrqd__m_5ValueQyd__tAA13PreferenceKeyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/preference(key:value:)\":{\"role\":\"symbol\",\"title\":\"preference(key:value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/preference(key:value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/preference(key:value:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/preferredcolorscheme(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preferredColorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/preferredcolorscheme(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/preferredColorScheme(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.preferredColorScheme(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"preferredColorScheme(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preferredColorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20preferredColorSchemeyQrAA0eF0OSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/preferredColorScheme(_:)\":{\"role\":\"symbol\",\"title\":\"preferredColorScheme(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preferredColorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/preferredColorScheme(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/preferredcolorscheme(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/prefersdefaultfocus(_:in:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"namespace\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/prefersdefaultfocus(_:in:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/prefersDefaultFocus(_:in:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.prefersDefaultFocus(_:in:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"prefersDefaultFocus(_:in:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19prefersDefaultFocus_2inQrSb_AA9NamespaceV2IDVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/prefersDefaultFocus(_:in:)\":{\"role\":\"symbol\",\"title\":\"prefersDefaultFocus(_:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/prefersDefaultFocus(_:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/prefersdefaultfocus(_:in:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/presentedwindowstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"WindowStyle\",\"preciseIdentifier\":\"s:7SwiftUI11WindowStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/presentedwindowstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/presentedWindowStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.presentedWindowStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"presentedWindowStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20presentedWindowStyleyQrqd__AA0eF0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/presentedWindowStyle(_:)\":{\"role\":\"symbol\",\"title\":\"presentedWindowStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/presentedWindowStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/presentedwindowstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/presentedwindowtoolbarstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowToolbarStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"WindowToolbarStyle\",\"preciseIdentifier\":\"s:7SwiftUI18WindowToolbarStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/presentedwindowtoolbarstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/presentedWindowToolbarStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.presentedWindowToolbarStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"presentedWindowToolbarStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowToolbarStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE27presentedWindowToolbarStyleyQrqd__AA0efG0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/presentedWindowToolbarStyle(_:)\":{\"role\":\"symbol\",\"title\":\"presentedWindowToolbarStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowToolbarStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/presentedWindowToolbarStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/presentedwindowtoolbarstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/previewcontext(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewContext\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewContext\",\"preciseIdentifier\":\"s:7SwiftUI14PreviewContextP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/previewcontext(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewContext(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewContext(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewContext(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewContext\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14previewContextyQrqd__AA07PreviewE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/previewContext(_:)\":{\"role\":\"symbol\",\"title\":\"previewContext(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewContext\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewContext(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewcontext(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/previewdevice(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDevice\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewDevice\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewDeviceV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/previewdevice(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewDevice(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewDevice(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewDevice(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDevice\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewDevice\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewDeviceV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13previewDeviceyQrAA07PreviewE0VSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/previewDevice(_:)\":{\"role\":\"symbol\",\"title\":\"previewDevice(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDevice\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewDevice\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewDeviceV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewDevice(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewdevice(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/previewdisplayname(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDisplayName\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/previewdisplayname(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewDisplayName(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewDisplayName(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewDisplayName(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDisplayName\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE18previewDisplayNameyQrSSSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/previewDisplayName(_:)\":{\"role\":\"symbol\",\"title\":\"previewDisplayName(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDisplayName\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewDisplayName(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewdisplayname(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/previewinterfaceorientation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewInterfaceOrientation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"InterfaceOrientation\",\"preciseIdentifier\":\"s:7SwiftUI20InterfaceOrientationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/previewinterfaceorientation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewInterfaceOrientation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewInterfaceOrientation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewInterfaceOrientation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewInterfaceOrientation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"InterfaceOrientation\",\"preciseIdentifier\":\"s:7SwiftUI20InterfaceOrientationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE27previewInterfaceOrientationyQrAA0eF0VF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/previewInterfaceOrientation(_:)\":{\"role\":\"symbol\",\"title\":\"previewInterfaceOrientation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewInterfaceOrientation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"InterfaceOrientation\",\"preciseIdentifier\":\"s:7SwiftUI20InterfaceOrientationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewInterfaceOrientation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewinterfaceorientation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/previewlayout(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewLayout\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewLayout\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewLayoutO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/previewlayout(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewLayout(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.previewLayout(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"previewLayout(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewLayout\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewLayout\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewLayoutO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13previewLayoutyQrAA07PreviewE0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/previewLayout(_:)\":{\"role\":\"symbol\",\"title\":\"previewLayout(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewLayout\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewLayout\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewLayoutO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewLayout(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewlayout(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/privacysensitive(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"privacySensitive\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"sensitive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/privacysensitive(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/privacySensitive(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.privacySensitive(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"privacySensitive(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"privacySensitive\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16privacySensitiveyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/privacySensitive(_:)\":{\"role\":\"symbol\",\"title\":\"privacySensitive(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"privacySensitive\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/privacySensitive(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/privacysensitive(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/progressviewstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"progressViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ProgressViewStyle\",\"preciseIdentifier\":\"s:7SwiftUI17ProgressViewStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/progressviewstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/progressViewStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.progressViewStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"progressViewStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"progressViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE08progressC5StyleyQrqd__AA08ProgresscE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/progressViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"progressViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"progressViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/progressViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/progressviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/projectioneffect(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"projectionEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ProjectionTransform\",\"preciseIdentifier\":\"s:7SwiftUI19ProjectionTransformV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/projectioneffect(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/projectionEffect(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.projectionEffect(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"projectionEffect(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"projectionEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ProjectionTransform\",\"preciseIdentifier\":\"s:7SwiftUI19ProjectionTransformV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16projectionEffectyQrAA19ProjectionTransformVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/projectionEffect(_:)\":{\"role\":\"symbol\",\"title\":\"projectionEffect(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"projectionEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ProjectionTransform\",\"preciseIdentifier\":\"s:7SwiftUI19ProjectionTransformV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/projectionEffect(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/projectioneffect(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/redacted(reason:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"redacted\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"reason\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"RedactionReasons\",\"preciseIdentifier\":\"s:7SwiftUI16RedactionReasonsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/redacted(reason:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/redacted(reason:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.redacted(reason:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"redacted(reason:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"redacted\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"reason\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"RedactionReasons\",\"preciseIdentifier\":\"s:7SwiftUI16RedactionReasonsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8redacted6reasonQrAA16RedactionReasonsV_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/redacted(reason:)\":{\"role\":\"symbol\",\"title\":\"redacted(reason:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"redacted\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"reason\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"RedactionReasons\",\"preciseIdentifier\":\"s:7SwiftUI16RedactionReasonsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/redacted(reason:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/redacted(reason:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/refreshable(action:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"refreshable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/refreshable(action:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/refreshable(action:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.refreshable(action:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"refreshable(action:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"refreshable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11refreshable6actionQryyYaYbc_tF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/refreshable(action:)\":{\"role\":\"symbol\",\"title\":\"refreshable(action:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"refreshable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/refreshable(action:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/refreshable(action:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/rotation3deffect(_:axis:anchor:anchorz:perspective:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotation3DEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"angle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"axis\"},{\"kind\":\"text\",\"text\":\": (x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", z\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"), \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"anchorZ\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0, \"},{\"kind\":\"externalParam\",\"text\":\"perspective\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 1) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/rotation3deffect(_:axis:anchor:anchorz:perspective:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotation3DEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"axis\"},{\"kind\":\"text\",\"text\":\": (x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", z\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"), \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchorZ\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perspective\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16rotation3DEffect_4axis6anchor0G1Z11perspectiveQrAA5AngleV_12CoreGraphics7CGFloatV1x_AM1yAM1ztAA9UnitPointVA2MtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\":{\"role\":\"symbol\",\"title\":\"rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotation3DEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"axis\"},{\"kind\":\"text\",\"text\":\": (x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", z\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"), \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchorZ\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perspective\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/rotation3deffect(_:axis:anchor:anchorz:perspective:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/rotationeffect(_:anchor:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotationEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"angle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/rotationeffect(_:anchor:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/rotationEffect(_:anchor:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.rotationEffect(_:anchor:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"rotationEffect(_:anchor:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotationEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14rotationEffect_6anchorQrAA5AngleV_AA9UnitPointVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/rotationEffect(_:anchor:)\":{\"role\":\"symbol\",\"title\":\"rotationEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotationEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/rotationEffect(_:anchor:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/rotationeffect(_:anchor:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/safeareainset(edge:alignment:spacing:content:)-9cc9j.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/safeareainset(edge:alignment:spacing:content:)-9cc9j\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/safeAreaInset(edge:alignment:spacing:content:)-9cc9j\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.safeAreaInset(edge:alignment:spacing:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13safeAreaInset4edge9alignment7spacing7contentQrAA14HorizontalEdgeO_AA17VerticalAlignmentV12CoreGraphics7CGFloatVSgqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/safeAreaInset(edge:alignment:spacing:content:)-9cc9j\":{\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/safeAreaInset(edge:alignment:spacing:content:)-9cc9j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/safeareainset(edge:alignment:spacing:content:)-9cc9j\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/safeareainset(edge:alignment:spacing:content:)-9ojua.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalEdge\",\"preciseIdentifier\":\"s:7SwiftUI12VerticalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\" = .center, \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/safeareainset(edge:alignment:spacing:content:)-9ojua\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/safeAreaInset(edge:alignment:spacing:content:)-9ojua\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.safeAreaInset(edge:alignment:spacing:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalEdge\",\"preciseIdentifier\":\"s:7SwiftUI12VerticalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13safeAreaInset4edge9alignment7spacing7contentQrAA12VerticalEdgeO_AA19HorizontalAlignmentV12CoreGraphics7CGFloatVSgqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/safeAreaInset(edge:alignment:spacing:content:)-9ojua\":{\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalEdge\",\"preciseIdentifier\":\"s:7SwiftUI12VerticalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/safeAreaInset(edge:alignment:spacing:content:)-9ojua\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/safeareainset(edge:alignment:spacing:content:)-9ojua\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/saturation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"saturation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"amount\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/saturation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/saturation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.saturation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"saturation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"saturation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10saturationyQrSdF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/saturation(_:)\":{\"role\":\"symbol\",\"title\":\"saturation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"saturation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/saturation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/saturation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/scaledtofill().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFill\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/scaledtofill()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaledToFill()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaledToFill()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaledToFill()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFill\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12scaledToFillQryF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/scaledToFill()\":{\"role\":\"symbol\",\"title\":\"scaledToFill()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFill\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaledToFill()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaledtofill()\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/scaledtofit().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/scaledtofit()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaledToFit()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaledToFit()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaledToFit()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11scaledToFitQryF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/scaledToFit()\":{\"role\":\"symbol\",\"title\":\"scaledToFit()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaledToFit()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaledtofit()\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/scaleeffect(_:anchor:)-2caa5.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/scaleeffect(_:anchor:)-2caa5\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaleEffect(_:anchor:)-2caa5\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaleEffect(_:anchor:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11scaleEffect_6anchorQrSo6CGSizeV_AA9UnitPointVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/scaleEffect(_:anchor:)-2caa5\":{\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaleEffect(_:anchor:)-2caa5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaleeffect(_:anchor:)-2caa5\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/scaleeffect(_:anchor:)-718iu.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"s\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/scaleeffect(_:anchor:)-718iu\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaleEffect(_:anchor:)-718iu\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaleEffect(_:anchor:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11scaleEffect_6anchorQr12CoreGraphics7CGFloatV_AA9UnitPointVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/scaleEffect(_:anchor:)-718iu\":{\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaleEffect(_:anchor:)-718iu\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaleeffect(_:anchor:)-718iu\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/scaleeffect(x:y:anchor:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 1.0, \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 1.0, \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\" = .center) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/scaleeffect(x:y:anchor:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaleEffect(x:y:anchor:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scaleEffect(x:y:anchor:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scaleEffect(x:y:anchor:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11scaleEffect1x1y6anchorQr12CoreGraphics7CGFloatV_AjA9UnitPointVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/scaleEffect(x:y:anchor:)\":{\"role\":\"symbol\",\"title\":\"scaleEffect(x:y:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaleEffect(x:y:anchor:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaleeffect(x:y:anchor:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/scenepadding(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scenePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/scenepadding(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scenePadding(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.scenePadding(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"scenePadding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scenePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12scenePaddingyQrAA4EdgeO3SetVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/scenePadding(_:)\":{\"role\":\"symbol\",\"title\":\"scenePadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scenePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scenePadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scenepadding(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/searchable(text:placement:prompt:)-2vm7x.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:)-2vm7x\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:)-2vm7x\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6promptQrAA7BindingVySSG_AA20SearchFieldPlacementVAA18LocalizedStringKeyVtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchable(text:placement:prompt:)-2vm7x\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:)-2vm7x\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:)-2vm7x\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/searchable(text:placement:prompt:)-8rgzb.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"? = nil) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:)-8rgzb\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:)-8rgzb\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6promptQrAA7BindingVySSG_AA20SearchFieldPlacementVAA4TextVSgtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchable(text:placement:prompt:)-8rgzb\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:)-8rgzb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:)-8rgzb\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/searchable(text:placement:prompt:)-988ga.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:)-988ga\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:)-988ga\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6promptQrAA7BindingVySSG_AA20SearchFieldPlacementVqd__tSyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchable(text:placement:prompt:)-988ga\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:)-988ga\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:)-988ga\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/searchable(text:placement:prompt:suggestions:)-3zci7.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:suggestions:)-3zci7\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:suggestions:)-3zci7\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:suggestions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6prompt11suggestionsQrAA7BindingVySSG_AA20SearchFieldPlacementVAA4TextVSgqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchable(text:placement:prompt:suggestions:)-3zci7\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:suggestions:)-3zci7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:suggestions:)-3zci7\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/searchable(text:placement:prompt:suggestions:)-5taln.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:suggestions:)-5taln\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:suggestions:)-5taln\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:suggestions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6prompt11suggestionsQrAA7BindingVySSG_AA20SearchFieldPlacementVAA18LocalizedStringKeyVqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchable(text:placement:prompt:suggestions:)-5taln\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:suggestions:)-5taln\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:suggestions:)-5taln\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/searchable(text:placement:prompt:suggestions:)-8jhzt.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\" = .automatic, \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"StringProtocol\",\"preciseIdentifier\":\"s:Sy\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:suggestions:)-8jhzt\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:suggestions:)-8jhzt\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchable(text:placement:prompt:suggestions:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10searchable4text9placement6prompt11suggestionsQrAA7BindingVySSG_AA20SearchFieldPlacementVqd_0_qd__yXEtAaBRd__SyRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchable(text:placement:prompt:suggestions:)-8jhzt\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:suggestions:)-8jhzt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:suggestions:)-8jhzt\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/searchcompletion(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchCompletion\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"completion\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/searchcompletion(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchCompletion(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.searchCompletion(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"searchCompletion(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchCompletion\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE16searchCompletionyQrSSF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchCompletion(_:)\":{\"role\":\"symbol\",\"title\":\"searchCompletion(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchCompletion\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchCompletion(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchcompletion(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/shadow(color:radius:x:y:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shadow\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\" = Color(.sRGBLinear, white: 0, opacity: 0.33), \"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0, \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\" = 0) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/shadow(color:radius:x:y:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shadow(color:radius:x:y:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.shadow(color:radius:x:y:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"shadow(color:radius:x:y:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shadow\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6shadow5color6radius1x1yQrAA5ColorV_12CoreGraphics7CGFloatVA2MtF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shadow(color:radius:x:y:)\":{\"role\":\"symbol\",\"title\":\"shadow(color:radius:x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shadow\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shadow(color:radius:x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shadow(color:radius:x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/sheet(ispresented:ondismiss:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/sheet(ispresented:ondismiss:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/sheet(isPresented:onDismiss:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.sheet(isPresented:onDismiss:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"sheet(isPresented:onDismiss:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5sheet11isPresented9onDismiss7contentQrAA7BindingVySbG_yycSgqd__yctAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/sheet(isPresented:onDismiss:content:)\":{\"role\":\"symbol\",\"title\":\"sheet(isPresented:onDismiss:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/sheet(isPresented:onDismiss:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/sheet(ispresented:ondismiss:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/sheet(item:ondismiss:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")? = nil, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Identifiable\",\"preciseIdentifier\":\"s:s12IdentifiableP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/sheet(item:ondismiss:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/sheet(item:onDismiss:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.sheet(item:onDismiss:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"sheet(item:onDismiss:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE5sheet4item9onDismiss7contentQrAA7BindingVyqd__SgG_yycSgqd_0_qd__cts12IdentifiableRd__AaBRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/sheet(item:onDismiss:content:)\":{\"role\":\"symbol\",\"title\":\"sheet(item:onDismiss:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/sheet(item:onDismiss:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/sheet(item:ondismiss:content:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/shuffleanimation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A9AnimationO\",\"text\":\"ShuffleAnimation\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given shuffle animation.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"animation\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle animation for shuffle stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" uses \"},{\"type\":\"codeVoice\",\"code\":\"linear\"},{\"type\":\"text\",\"text\":\" animation to animate shuffling behaviour. With \"},{\"type\":\"codeVoice\",\"code\":\"shuffleAnimation(_:)\"},{\"type\":\"text\",\"text\":\" modifier, it can be overridden with the given animation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example shows the usage of overriding default shuffle animation with \"},{\"type\":\"codeVoice\",\"code\":\"easeInOut\"},{\"type\":\"text\",\"text\":\" animation that will be used while shuffling.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleAnimation(.easeInOut)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffleanimation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleAnimation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle animation of the shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleAnimation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A9AnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE16shuffleAnimationyQrAD0dG0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A9AnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle animation of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffleanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/shuffledeckanimation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckAnimationO\",\"text\":\"ShuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given shuffle deck animation.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"animation\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle animation for shuffle deck view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" uses \"},{\"type\":\"codeVoice\",\"code\":\"linear\"},{\"type\":\"text\",\"text\":\" animation to animate shuffling behaviour. With \"},{\"type\":\"codeVoice\",\"code\":\"shuffleDeckAnimation\"},{\"type\":\"text\",\"text\":\" modifier, it can be overridden with the given animation value.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example shows the usage of tailoring default shuffle deck animation with \"},{\"type\":\"codeVoice\",\"code\":\"easeIn\"},{\"type\":\"text\",\"text\":\" animation that will be used while shuffling.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckAnimation(.easeIn)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckanimation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckAnimation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle animation of the shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleDeckAnimation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE20shuffleDeckAnimationyQrAD0dgH0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleDeckAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle animation of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/shuffledeckdisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given boolean.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"disabled\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A boolean value to decide whether it should be disabled or not.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Based on the boolen passing into the modifier, the user interaction will be disabled accordingly, If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"true\"},{\"type\":\"text\",\"text\":\", it will no longer turn on the interaction to UI. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"false\"},{\"type\":\"text\",\"text\":\", it allows to shuffle views.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows how to disable the user interaction on the shuffle deck view.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckDisabled(false)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckdisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to shuffle deck content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"shuffleDeckDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE19shuffleDeckDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleDeckDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to shuffle deck content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckdisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/shuffledeckscale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given scaling factor.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"scale\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A scaling factor to shrink the size of content views.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Regarding scaling content views, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" only allows to set value between 0 and 1 inclusively. If the value is out of this range, it will be replaced with 0 and 1 based on the given value. The default scaling factor is 0.7.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"shuffleDeckScale(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckScale(0.5)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckscale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckScale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the left and right content views of shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleDeckScale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE16shuffleDeckScaleyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleDeckScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the left and right content views of shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckscale(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/shuffledeckstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DeckStyleO\",\"text\":\"ShuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given shuffle deck style.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"style\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle style for shuffle deck view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" comes with two different shuffling styles - \"},{\"type\":\"codeVoice\",\"code\":\"finiteShuffle\"},{\"type\":\"text\",\"text\":\" (default) and \"},{\"type\":\"codeVoice\",\"code\":\"infiniteShuffle\"},{\"type\":\"text\",\"text\":\". To apply style as wanted, it can be overridden with \"},{\"type\":\"codeVoice\",\"code\":\"shuffleDeckStyle(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet demonstrates how to override the shuffle style to be able to shuffle infinitely.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckStyle(.infiniteShuffle)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle style of the shuffle deck view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleDeckStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DeckStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE16shuffleDeckStyleyQrAD0dgH0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleDeckStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DeckStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle style of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/shuffledecktrigger(on:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"publisher\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Publisher\",\"preciseIdentifier\":\"s:7Combine9PublisherP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Failure\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"Never\",\"preciseIdentifier\":\"s:s5NeverO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckDirectionO\",\"text\":\"ShuffleDeckDirection\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given publisher object.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"publisher\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A publisher object that fires \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeckDirection\"},{\"type\":\"text\",\"text\":\" values.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"In purpose of programmatic shuffling using timer or manually, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeck\"},{\"type\":\"text\",\"text\":\" fires events via \"},{\"type\":\"codeVoice\",\"code\":\"shuffleDeckTrigger(on:)\"},{\"type\":\"text\",\"text\":\" modifier which is needed to inject an instance of publisher with \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeckDirection\"},{\"type\":\"text\",\"text\":\" output type and \"},{\"type\":\"codeVoice\",\"code\":\"Never\"},{\"type\":\"text\",\"text\":\" failure type.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the programmatic approach of triggering shuffle event by sending \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDeckDirection\"},{\"type\":\"text\",\"text\":\" value through the publisher.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"let shuffleDeckPublisher = PassthroughSubject<ShuffleDeckDirection, Never>()\",\"var body: some View {\",\"    ShuffleDeck(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(width: 200, height: 300)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDeckTrigger(on: shuffleDeckPublisher)\",\"}\",\"shuffleDeckPublisher.send(.left)\",\"shuffleDeckPublisher.send(.right)\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledecktrigger(on:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckTrigger(on:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic shuffling.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleDeckTrigger(on:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE18shuffleDeckTrigger2onQrqd___t7Combine9PublisherRd__s5NeverO7FailureRtd__AD0dG9DirectionO6OutputRtd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleDeckTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledecktrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/shuffledisabled(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given boolean.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"disabled\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A boolean value to decide whether it should be disabled or not.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Based on the boolean passing into the modifier, the user interaction will be disabled accordingly. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"true\"},{\"type\":\"text\",\"text\":\",  it will no longer turn on the interaction to UI. If the boolean is \"},{\"type\":\"codeVoice\",\"code\":\"false\"},{\"type\":\"text\",\"text\":\", it allows to shuffle content views.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following piece of code shows how to disable the user interaction on the shuffle stack view.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleDisabled(false)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledisabled(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDisabled(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that disables user interaction to shuffle content views.\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"shuffleDisabled(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE15shuffleDisabledyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that disables user interaction to shuffle content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/shuffleoffset(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleOffset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given offset.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"offset\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A offset value for the content views behind the current content view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"To shift the upcoming and previous content views of the shuffle stack view (not to overlay by the current view that display on the top of the stack), it can be adjust by setting offset value through \"},{\"type\":\"codeVoice\",\"code\":\"shuffleOffset(_:)\"},{\"type\":\"text\",\"text\":\" modifier. By default, it uses 15 pixels to shift the offset.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"shuffleOffset(_:)\"},{\"type\":\"text\",\"text\":\" modifier. By using 25 pixels, it will be noticable that there is more horizontal gap between the upcoming and previous content views and the current view than using the default offset.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleOffset(25)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffleoffset(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleOffset(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value that is used to shift the offset of the upcoming and previous content views behind the view of the current index.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleOffset(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleOffset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE13shuffleOffsetyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleOffset(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleOffset(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleOffset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value that is used to shift the offset of the upcoming and previous content views behind the view of the current index.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleOffset(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffleoffset(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/shufflepadding(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shufflePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given padding.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"padding\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A padding value for a shuffle stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"By default, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" uses 15 pixels to add extra space between its frame and its content views. To be overridden, it can be achieved by passing the desired padding value through \"},{\"type\":\"codeVoice\",\"code\":\"shufflePadding(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"shufflePadding(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shufflePadding(25)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflepadding(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shufflePadding(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shufflePadding(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shufflePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE14shufflePaddingyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shufflePadding(_:)\":{\"role\":\"symbol\",\"title\":\"shufflePadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shufflePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shufflePadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflepadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/shufflescale(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"scale\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given scaling factor.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"scale\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A scaling factor to shrink the size of content views.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Regarding scaling content views, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" only allows to set value between 0 and 1 inclusively. If the value is out of this range, it will be replaced with 0 or 1 based on the given value. The default scaling factor is 0.5.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following code snippet shows the usage of \"},{\"type\":\"codeVoice\",\"code\":\"shuffleScale(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleScale(0.6)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflescale(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleScale(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleScale(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE12shuffleScaleyQr12CoreGraphics7CGFloatVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflescale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/shufflestyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A5StyleO\",\"text\":\"ShuffleStyle\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given shuffle style.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"style\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A shuffle style for shuffle stack view.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" comes with three different shuffle styles - \"},{\"type\":\"codeVoice\",\"code\":\"slide\"},{\"type\":\"text\",\"text\":\" (default), \"},{\"type\":\"codeVoice\",\"code\":\"rotateIn\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"rotateOut\"},{\"type\":\"text\",\"text\":\" and uses \"},{\"type\":\"codeVoice\",\"code\":\"slide\"},{\"type\":\"text\",\"text\":\" as a default style. To apply other style, it can be overridden by using \"},{\"type\":\"codeVoice\",\"code\":\"shuffleStyle(_:)\"},{\"type\":\"text\",\"text\":\" modifier.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example shows the usage of overriding default shuffle style with \"},{\"type\":\"codeVoice\",\"code\":\"rotateOut\"},{\"type\":\"text\",\"text\":\" style to rotate and scale to the outside while shuffling.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleStyle(.rotateOut)\",\"}\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflestyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle style of the shuffle stack view.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A5StyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE12shuffleStyleyQrAD0dG0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A5StyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle style of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflestyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/shuffletrigger(on:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"publisher\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Publisher\",\"preciseIdentifier\":\"s:7Combine9PublisherP\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Failure\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"text\":\"Never\",\"preciseIdentifier\":\"s:s5NeverO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\" == \"},{\"kind\":\"typeIdentifier\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DirectionO\",\"text\":\"ShuffleDirection\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"return-value\",\"level\":2,\"type\":\"heading\",\"text\":\"Return Value\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A view with the given publisher object.\"}]}]},{\"kind\":\"parameters\",\"parameters\":[{\"name\":\"publisher\",\"content\":[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A publisher object that fires \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDirection\"},{\"type\":\"text\",\"text\":\" values.\"}]}]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"discussion\",\"level\":2,\"type\":\"heading\",\"text\":\"Discussion\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"In purpose of shuffling programmatically such as using timer, \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" accepts events via \"},{\"type\":\"codeVoice\",\"code\":\"shuffleTrigger(on:)\"},{\"type\":\"text\",\"text\":\" modifier which is needed to inject an instance of publisher with \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDirection\"},{\"type\":\"text\",\"text\":\" output type and \"},{\"type\":\"codeVoice\",\"code\":\"Never\"},{\"type\":\"text\",\"text\":\" failure type.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the programmatic way of triggering shuffle event by sending \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleDirection\"},{\"type\":\"text\",\"text\":\" value through the publisher.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"let shufflePublisher = PassthroughSubject<ShuffleDirection, Never>()\",\"var body: some View {\",\"    ShuffleStack(\",\"        colors,\",\"        initialIndex: 0\",\"    ) { color in\",\"        color\",\"            .frame(height: 200)\",\"            .cornerRadius(16)\",\"    }\",\"    .shuffleTrigger(on: shufflePublisher)\",\"}\",\"shufflePublisher.send(.left)\",\"shufflePublisher.send(.right)\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffletrigger(on:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleTrigger(on:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accpets events of direction to perform programmatic shuffling.\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"shuffleTrigger(on:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewP9ShuffleItE14shuffleTrigger2onQrqd___t7Combine9PublisherRd__s5NeverO7FailureRtd__AD0D9DirectionO6OutputRtd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accpets events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffletrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/simultaneousgesture(_:including:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"simultaneousGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\" = .all) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Gesture\",\"preciseIdentifier\":\"s:7SwiftUI7GestureP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/simultaneousgesture(_:including:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/simultaneousGesture(_:including:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.simultaneousGesture(_:including:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"simultaneousGesture(_:including:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"simultaneousGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19simultaneousGesture_9includingQrqd___AA0E4MaskVtAA0E0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/simultaneousGesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"simultaneousGesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"simultaneousGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/simultaneousGesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/simultaneousgesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/speechadjustedpitch(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAdjustedPitch\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/speechadjustedpitch(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechAdjustedPitch(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.speechAdjustedPitch(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"speechAdjustedPitch(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAdjustedPitch\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19speechAdjustedPitchyQrSdF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/speechAdjustedPitch(_:)\":{\"role\":\"symbol\",\"title\":\"speechAdjustedPitch(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAdjustedPitch\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechAdjustedPitch(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/speechadjustedpitch(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/speechalwaysincludespunctuation(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAlwaysIncludesPunctuation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/speechalwaysincludespunctuation(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechAlwaysIncludesPunctuation(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.speechAlwaysIncludesPunctuation(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"speechAlwaysIncludesPunctuation(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAlwaysIncludesPunctuation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE31speechAlwaysIncludesPunctuationyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/speechAlwaysIncludesPunctuation(_:)\":{\"role\":\"symbol\",\"title\":\"speechAlwaysIncludesPunctuation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAlwaysIncludesPunctuation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechAlwaysIncludesPunctuation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/speechalwaysincludespunctuation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/speechannouncementsqueued(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAnnouncementsQueued\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/speechannouncementsqueued(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechAnnouncementsQueued(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.speechAnnouncementsQueued(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"speechAnnouncementsQueued(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAnnouncementsQueued\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25speechAnnouncementsQueuedyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/speechAnnouncementsQueued(_:)\":{\"role\":\"symbol\",\"title\":\"speechAnnouncementsQueued(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAnnouncementsQueued\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechAnnouncementsQueued(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/speechannouncementsqueued(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/speechspellsoutcharacters(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechSpellsOutCharacters\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/speechspellsoutcharacters(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechSpellsOutCharacters(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.speechSpellsOutCharacters(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"speechSpellsOutCharacters(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechSpellsOutCharacters\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25speechSpellsOutCharactersyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/speechSpellsOutCharacters(_:)\":{\"role\":\"symbol\",\"title\":\"speechSpellsOutCharacters(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechSpellsOutCharacters\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechSpellsOutCharacters(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/speechspellsoutcharacters(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/submitlabel(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitLabel\",\"preciseIdentifier\":\"s:7SwiftUI11SubmitLabelV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/submitlabel(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/submitLabel(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.submitLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"submitLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitLabel\",\"preciseIdentifier\":\"s:7SwiftUI11SubmitLabelV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11submitLabelyQrAA06SubmitE0VF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/submitLabel(_:)\":{\"role\":\"symbol\",\"title\":\"submitLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitLabel\",\"preciseIdentifier\":\"s:7SwiftUI11SubmitLabelV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/submitLabel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/submitlabel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/submitscope(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"isBlocking\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/submitscope(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/submitScope(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.submitScope(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"submitScope(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11submitScopeyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/submitScope(_:)\":{\"role\":\"symbol\",\"title\":\"submitScope(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/submitScope(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/submitscope(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/swipeactions(edge:allowsfullswipe:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"swipeActions\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\" = .trailing, \"},{\"kind\":\"externalParam\",\"text\":\"allowsFullSwipe\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/swipeactions(edge:allowsfullswipe:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/swipeActions(edge:allowsFullSwipe:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.swipeActions(edge:allowsFullSwipe:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"swipeActions(edge:allowsFullSwipe:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"swipeActions\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"allowsFullSwipe\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12swipeActions4edge15allowsFullSwipe7contentQrAA14HorizontalEdgeO_Sbqd__yXEtAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/swipeActions(edge:allowsFullSwipe:content:)\":{\"role\":\"symbol\",\"title\":\"swipeActions(edge:allowsFullSwipe:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"swipeActions\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"allowsFullSwipe\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/swipeActions(edge:allowsFullSwipe:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/swipeactions(edge:allowsfullswipe:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/symbolrenderingmode(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolRenderingMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI19SymbolRenderingModeV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/symbolrenderingmode(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/symbolRenderingMode(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.symbolRenderingMode(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"symbolRenderingMode(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolRenderingMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI19SymbolRenderingModeV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19symbolRenderingModeyQrAA06SymboleF0VSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/symbolRenderingMode(_:)\":{\"role\":\"symbol\",\"title\":\"symbolRenderingMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolRenderingMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI19SymbolRenderingModeV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/symbolRenderingMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/symbolrenderingmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/symbolvariant(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolVariant\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"variant\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolVariants\",\"preciseIdentifier\":\"s:7SwiftUI14SymbolVariantsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/symbolvariant(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/symbolVariant(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.symbolVariant(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"symbolVariant(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolVariant\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolVariants\",\"preciseIdentifier\":\"s:7SwiftUI14SymbolVariantsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13symbolVariantyQrAA14SymbolVariantsVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/symbolVariant(_:)\":{\"role\":\"symbol\",\"title\":\"symbolVariant(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolVariant\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolVariants\",\"preciseIdentifier\":\"s:7SwiftUI14SymbolVariantsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/symbolVariant(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/symbolvariant(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/tabitem(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabItem\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/tabitem(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tabItem(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tabItem(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tabItem(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabItem\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7tabItemyQrqd__yXEAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/tabItem(_:)\":{\"role\":\"symbol\",\"title\":\"tabItem(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabItem\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tabItem(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tabitem(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/tablestyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tableStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"TableStyle\",\"preciseIdentifier\":\"s:7SwiftUI10TableStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/tablestyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tableStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tableStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tableStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tableStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10tableStyleyQrqd__AA05TableE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/tableStyle(_:)\":{\"role\":\"symbol\",\"title\":\"tableStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tableStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tableStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tablestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/tabviewstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"TabViewStyle\",\"preciseIdentifier\":\"s:7SwiftUI12TabViewStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/tabviewstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tabViewStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tabViewStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tabViewStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE03tabC5StyleyQrqd__AA03TabcE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/tabViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"tabViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tabViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tabviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/tag(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Hashable\",\"preciseIdentifier\":\"s:SH\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/tag(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tag(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tag(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tag(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE3tagyQrqd__SHRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/tag(_:)\":{\"role\":\"symbol\",\"title\":\"tag(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tag(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tag(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/task(id:priority:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\" = .userInitiated, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"Equatable\",\"preciseIdentifier\":\"s:SQ\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/task(id:priority:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/task(id:priority:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.task(id:priority:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"task(id:priority:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4task2id8priority_Qrqd___ScPyyYaYbctSQRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/task(id:priority:_:)\":{\"role\":\"symbol\",\"title\":\"task(id:priority:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/task(id:priority:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/task(id:priority:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/task(priority:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\" = .userInitiated, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/task(priority:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/task(priority:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.task(priority:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"task(priority:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4task8priority_QrScP_yyYaYbctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/task(priority:_:)\":{\"role\":\"symbol\",\"title\":\"task(priority:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/task(priority:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/task(priority:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/textcase(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Case\",\"preciseIdentifier\":\"s:7SwiftUI4TextV4CaseO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/textcase(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textCase(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.textCase(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"textCase(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Case\",\"preciseIdentifier\":\"s:7SwiftUI4TextV4CaseO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8textCaseyQrAA4TextV0E0OSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/textCase(_:)\":{\"role\":\"symbol\",\"title\":\"textCase(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Case\",\"preciseIdentifier\":\"s:7SwiftUI4TextV4CaseO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textCase(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/textcase(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/textcontenttype(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSTextContentType\",\"preciseIdentifier\":\"c:@T@NSTextContentType\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/textcontenttype(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textContentType(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.textContentType(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"textContentType(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSTextContentType\",\"preciseIdentifier\":\"c:@T@NSTextContentType\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15textContentTypeyQrSo06NSTexteF0aSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/textContentType(_:)\":{\"role\":\"symbol\",\"title\":\"textContentType(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSTextContentType\",\"preciseIdentifier\":\"c:@T@NSTextContentType\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textContentType(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/textcontenttype(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/textfieldstyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textFieldStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"TextFieldStyle\",\"preciseIdentifier\":\"s:7SwiftUI14TextFieldStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/textfieldstyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textFieldStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.textFieldStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"textFieldStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textFieldStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14textFieldStyleyQrqd__AA04TexteF0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/textFieldStyle(_:)\":{\"role\":\"symbol\",\"title\":\"textFieldStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textFieldStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textFieldStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/textfieldstyle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/textselection(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textSelection\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"selectability\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"TextSelectability\",\"preciseIdentifier\":\"s:7SwiftUI17TextSelectabilityP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/textselection(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textSelection(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.textSelection(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"textSelection(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textSelection\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE13textSelectionyQrqd__AA17TextSelectabilityRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/textSelection(_:)\":{\"role\":\"symbol\",\"title\":\"textSelection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textSelection\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textSelection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/textselection(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/tint(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/tint(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tint(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.tint(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"tint(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE4tintyQrAA5ColorVSgF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"12.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"15.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"8.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/tint(_:)\":{\"role\":\"symbol\",\"title\":\"tint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tint(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tint(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/togglestyle(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toggleStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ToggleStyle\",\"preciseIdentifier\":\"s:7SwiftUI11ToggleStyleP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/togglestyle(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toggleStyle(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.toggleStyle(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"toggleStyle(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toggleStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11toggleStyleyQrqd__AA06ToggleE0Rd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/toggleStyle(_:)\":{\"role\":\"symbol\",\"title\":\"toggleStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toggleStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toggleStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/togglestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/toolbar(content:)-2fsde.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/toolbar(content:)-2fsde\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toolbar(content:)-2fsde\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.toolbar(content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7toolbar7contentQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/toolbar(content:)-2fsde\":{\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toolbar(content:)-2fsde\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/toolbar(content:)-2fsde\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/toolbar(content:)-9838r.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"ToolbarContent\",\"preciseIdentifier\":\"s:7SwiftUI14ToolbarContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/toolbar(content:)-9838r\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toolbar(content:)-9838r\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.toolbar(content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7toolbar7contentQrqd__yXE_tAA14ToolbarContentRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/toolbar(content:)-9838r\":{\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toolbar(content:)-9838r\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/toolbar(content:)-9838r\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/toolbar(id:content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"CustomizableToolbarContent\",\"preciseIdentifier\":\"s:7SwiftUI26CustomizableToolbarContentP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/toolbar(id:content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toolbar(id:content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.toolbar(id:content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"toolbar(id:content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE7toolbar2id7contentQrSS_qd__yXEtAA26CustomizableToolbarContentRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/toolbar(id:content:)\":{\"role\":\"symbol\",\"title\":\"toolbar(id:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toolbar(id:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/toolbar(id:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/touchbar(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBar\",\"preciseIdentifier\":\"s:7SwiftUI8TouchBarV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbar(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBar(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBar(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBar(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBar\",\"preciseIdentifier\":\"s:7SwiftUI8TouchBarV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8touchBaryQrAA05TouchE0Vyqd__GAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/touchBar(_:)\":{\"role\":\"symbol\",\"title\":\"touchBar(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBar\",\"preciseIdentifier\":\"s:7SwiftUI8TouchBarV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBar(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbar(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/touchbar(content:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbar(content:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBar(content:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBar(content:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBar(content:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE8touchBar7contentQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/touchBar(content:)\":{\"role\":\"symbol\",\"title\":\"touchBar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBar(content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbar(content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/touchbarcustomizationlabel(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarCustomizationLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbarcustomizationlabel(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBarCustomizationLabel(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBarCustomizationLabel(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBarCustomizationLabel(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarCustomizationLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE26touchBarCustomizationLabelyQrAA4TextVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/touchBarCustomizationLabel(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarCustomizationLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarCustomizationLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBarCustomizationLabel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbarcustomizationlabel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/touchbaritempresence(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPresence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"presence\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBarItemPresence\",\"preciseIdentifier\":\"s:7SwiftUI20TouchBarItemPresenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbaritempresence(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBarItemPresence(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBarItemPresence(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBarItemPresence(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPresence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBarItemPresence\",\"preciseIdentifier\":\"s:7SwiftUI20TouchBarItemPresenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20touchBarItemPresenceyQrAA05TouchefG0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/touchBarItemPresence(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarItemPresence(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPresence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBarItemPresence\",\"preciseIdentifier\":\"s:7SwiftUI20TouchBarItemPresenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBarItemPresence(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbaritempresence(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/touchbaritemprincipal(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPrincipal\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"principal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbaritemprincipal(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBarItemPrincipal(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.touchBarItemPrincipal(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"touchBarItemPrincipal(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPrincipal\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE21touchBarItemPrincipalyQrSbF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/touchBarItemPrincipal(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarItemPrincipal(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPrincipal\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBarItemPrincipal(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbaritemprincipal(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/transaction(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transaction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Transaction\",\"preciseIdentifier\":\"s:7SwiftUI11TransactionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/transaction(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transaction(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transaction(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transaction(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transaction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Transaction\",\"preciseIdentifier\":\"s:7SwiftUI11TransactionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE11transactionyQryAA11TransactionVzcF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/transaction(_:)\":{\"role\":\"symbol\",\"title\":\"transaction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transaction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Transaction\",\"preciseIdentifier\":\"s:7SwiftUI11TransactionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transaction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transaction(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/transformanchorpreference(key:value:transform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformAnchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/transformanchorpreference(key:value:transform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformAnchorPreference(key:value:transform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transformAnchorPreference(key:value:transform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transformAnchorPreference(key:value:transform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformAnchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE25transformAnchorPreference3key5value0D0Qrqd_0_m_AA0E0V6SourceVyqd___Gy5ValueQyd_0_z_AIyqd__GtctAA0F3KeyRd_0_r0_lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/transformAnchorPreference(key:value:transform:)\":{\"role\":\"symbol\",\"title\":\"transformAnchorPreference(key:value:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformAnchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformAnchorPreference(key:value:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transformanchorpreference(key:value:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/transformeffect(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGAffineTransform\",\"preciseIdentifier\":\"c:@S@CGAffineTransform\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/transformeffect(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformEffect(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transformEffect(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transformEffect(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGAffineTransform\",\"preciseIdentifier\":\"c:@S@CGAffineTransform\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE15transformEffectyQrSo17CGAffineTransformVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/transformEffect(_:)\":{\"role\":\"symbol\",\"title\":\"transformEffect(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGAffineTransform\",\"preciseIdentifier\":\"c:@S@CGAffineTransform\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformEffect(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transformeffect(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/transformenvironment(_:transform:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEnvironment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"keyPath\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/transformenvironment(_:transform:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformEnvironment(_:transform:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transformEnvironment(_:transform:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transformEnvironment(_:transform:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEnvironment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE20transformEnvironment_0D0Qrs15WritableKeyPathCyAA0E6ValuesVqd__G_yqd__zctlF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/transformEnvironment(_:transform:)\":{\"role\":\"symbol\",\"title\":\"transformEnvironment(_:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEnvironment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformEnvironment(_:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transformenvironment(_:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/transformpreference(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type = K.self, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"callback\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"PreferenceKey\",\"preciseIdentifier\":\"s:7SwiftUI13PreferenceKeyP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/transformpreference(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformPreference(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transformPreference(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transformPreference(_:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE19transformPreferenceyQrqd__m_y5ValueQyd__zctAA0E3KeyRd__lF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/transformPreference(_:_:)\":{\"role\":\"symbol\",\"title\":\"transformPreference(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformPreference(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transformpreference(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/transition(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transition\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"t\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyTransition\",\"preciseIdentifier\":\"s:7SwiftUI13AnyTransitionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/transition(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transition(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.transition(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"transition(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transition\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyTransition\",\"preciseIdentifier\":\"s:7SwiftUI13AnyTransitionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10transitionyQrAA13AnyTransitionVF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/transition(_:)\":{\"role\":\"symbol\",\"title\":\"transition(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transition\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyTransition\",\"preciseIdentifier\":\"s:7SwiftUI13AnyTransitionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transition(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transition(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/truncationmode(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"truncationMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"mode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"TruncationMode\",\"preciseIdentifier\":\"s:7SwiftUI4TextV14TruncationModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/truncationmode(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/truncationMode(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.truncationMode(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"truncationMode(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"truncationMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"TruncationMode\",\"preciseIdentifier\":\"s:7SwiftUI4TextV14TruncationModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE14truncationModeyQrAA4TextV010TruncationE0OF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/truncationMode(_:)\":{\"role\":\"symbol\",\"title\":\"truncationMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"truncationMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"TruncationMode\",\"preciseIdentifier\":\"s:7SwiftUI4TextV14TruncationModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/truncationMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/truncationmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/unredacted().json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"unredacted\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/unredacted()\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/unredacted()\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.unredacted()\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"unredacted()\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"unredacted\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE10unredactedQryF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/unredacted()\":{\"role\":\"symbol\",\"title\":\"unredacted()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"unredacted\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/unredacted()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/unredacted()\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/useractivity(_:element:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activityType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"element\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"update\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/useractivity(_:element:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/userActivity(_:element:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.userActivity(_:element:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"userActivity(_:element:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"element\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\"?, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12userActivity_7element_QrSS_qd__Sgyqd___So06NSUserE0CtctlF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/userActivity(_:element:_:)\":{\"role\":\"symbol\",\"title\":\"userActivity(_:element:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"element\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\"?, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/userActivity(_:element:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/useractivity(_:element:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/useractivity(_:isactive:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"activityType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isActive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\" = true, \"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"update\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"@escaping\"},{\"kind\":\"text\",\"text\":\" (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/useractivity(_:isactive:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/userActivity(_:isActive:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.userActivity(_:isActive:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"userActivity(_:isActive:_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isActive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE12userActivity_8isActive_QrSS_SbySo06NSUserE0CctF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"11.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"14.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"7.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/userActivity(_:isActive:_:)\":{\"role\":\"symbol\",\"title\":\"userActivity(_:isActive:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isActive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/userActivity(_:isActive:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/useractivity(_:isactive:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/view-implementations.json",
    "content": "{\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"interfaceLanguage\":\"swift\"},\"topicSections\":[{\"title\":\"Instance Methods\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accentColor(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(activationPoint:)-1nikr\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(activationPoint:)-9o1ut\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(addTraits:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(hidden:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(hint:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(identifier:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(inputLabels:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(label:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(removeTraits:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(selectionIdentifier:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(sortPriority:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(value:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(action:label:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(named:_:)-5nf29\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(named:_:)-7rxae\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(named:_:)-7tk0c\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityActivationPoint(_:)-57vfb\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityActivationPoint(_:)-9osvr\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAddTraits(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAdjustableAction(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityChartDescriptor(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityChildren(children:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-1gi9v\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-375xz\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-571fc\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-72sim\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-7h1pz\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-8sma2\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-956rk\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-96ur4\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityElement(children:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityFocused(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityFocused(_:equals:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHeading(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHidden(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHint(_:)-45b9m\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHint(_:)-6451d\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHint(_:)-6m2eb\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityIdentifier(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityIgnoresInvertColors(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityInputLabels(_:)-3mfon\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityInputLabels(_:)-7hs3b\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityInputLabels(_:)-7kg3p\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabel(_:)-3has0\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabel(_:)-6dv6y\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabel(_:)-e66p\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabeledPair(role:id:in:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLinkedGroup(id:in:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRemoveTraits(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRepresentation(representation:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRespondsToUserInteraction(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-3a01s\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-661b4\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-7kbeo\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-f4c5\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-1kufn\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-1o7jk\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-2ng74\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-6akr8\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-6o30j\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-8e6r9\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-bva6\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-cxx7\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-1v5os\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-5mce6\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-7fpc1\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-91on2\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotorEntry(id:in:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityScrollAction(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityShowsLargeContentViewer()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityShowsLargeContentViewer(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilitySortPriority(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityTextContentType(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityValue(_:)-6kh76\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityValue(_:)-6x5in\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityValue(_:)-tcbi\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:)-13ppe\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:)-31fv4\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:)-svpk\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:message:)-1lplz\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:message:)-42hzu\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:message:)-8jr1q\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:)-135kk\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:)-7je0d\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:)-7zzve\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:message:)-17uu0\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:message:)-36zvz\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:message:)-7caah\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(isPresented:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(isPresented:error:actions:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(isPresented:error:actions:message:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(item:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alignmentGuide(_:computeValue:)-23g26\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alignmentGuide(_:computeValue:)-4kcej\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/allowsHitTesting(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/allowsTightening(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/anchorPreference(key:value:transform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/animation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/animation(_:value:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/aspectRatio(_:contentMode:)-9iav9\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/aspectRatio(_:contentMode:)-ggdx\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:alignment:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:ignoresSafeAreaEdges:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:in:fillStyle:)-1a2bf\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:in:fillStyle:)-8qwr1\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(alignment:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(ignoresSafeAreaEdges:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(in:fillStyle:)-58j5e\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(in:fillStyle:)-8w09p\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/backgroundPreferenceValue(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-26gjx\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-2cz64\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-31kbp\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-4i0v1\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/blendMode(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/blur(radius:opaque:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/border(_:width:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/brightness(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/buttonBorderShape(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/buttonStyle(_:)-42cf\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/buttonStyle(_:)-4hs9e\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselAnimation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselPadding(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselScale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselSpacing(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselTrigger(on:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/clipShape(_:style:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/clipped(antialiased:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/colorInvert()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/colorMultiply(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/colorScheme(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/compositingGroup()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-41ud8\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-4ywhx\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-7ipnf\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-1kurz\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-5vmyl\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-9sue3\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1tkx\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-5diu1\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7pkdq\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-296mh\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-5uj0y\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-7cjsq\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/containerShape(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contentShape(_:_:eoFill:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contentShape(_:eoFill:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contextMenu(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contextMenu(menuItems:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contrast(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/controlGroupStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/controlSize(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/coordinateSpace(name:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/cornerRadius(_:antialiased:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/datePickerStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/defaultAppStorage(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/deleteDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/disableAutocorrection(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/disabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/drawingGroup(opaque:colorMode:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/dynamicTypeSize(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/edgesIgnoringSafeArea(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/environment(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/environmentObject(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/exportsItemProviders(_:onExport:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/exportsItemProviders(_:onExport:onEdit:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-6evgr\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-8iv2y\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-233kd\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-7map2\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileMover(isPresented:file:onCompletion:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileMover(isPresented:files:onCompletion:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fixedSize()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fixedSize(horizontal:vertical:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/flipsForRightToLeftLayoutDirection(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusScope(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusable(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusable(_:onFocusChange:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focused(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focused(_:equals:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusedSceneValue(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusedValue(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/font(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundColor(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundStyle(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundStyle(_:_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/frame()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/frame(width:height:alignment:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/gesture(_:including:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/grayscale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/groupBoxStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/handlesExternalEvents(preferring:allowing:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/headerProminence(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/help(_:)-296\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/help(_:)-2u744\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/help(_:)-4q5ms\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/hidden()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/highPriorityGesture(_:including:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/horizontalRadioGroupLayout()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/hueRotation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/id(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/ignoresSafeArea(_:edges:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/imageScale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/importsItemProviders(_:onImport:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/interactiveDismissDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/itemProvider(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:)-30f12\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:)-38k96\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:modifiers:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:modifiers:localization:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/labelStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/labelsHidden()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/layoutPriority(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/lineLimit(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/lineSpacing(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listItemTint(_:)-66j6h\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listItemTint(_:)-6zn9q\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listRowBackground(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listRowInsets(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/luminanceToAlpha()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/mask(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/mask(alignment:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/menuButtonStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/menuIndicator(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/menuStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/minimumScaleFactor(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/modifier(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/monospacedDigit()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/moveDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/multilineTextAlignment(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationSubtitle(_:)-16d52\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationSubtitle(_:)-206md\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationSubtitle(_:)-7em2i\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7aj99\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7jd07\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7twkm\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7w547\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationViewStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/offset(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/offset(x:y:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onAppear(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCarousel(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCarouselTranslation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onChange(of:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCommand(_:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onContinueUserActivity(_:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCopyCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCutCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDeleteCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDisappear(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrag(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrag(_:preview:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:delegate:)-1ea27\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:delegate:)-8thdr\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-363wn\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-3bmbv\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-82gpe\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-84ef9\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onExitCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onHover(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:pressing:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onMoveCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onOpenURL(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:perform:)-4k6ie\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:perform:)-wliz\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:validator:perform:)-7tcqn\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:validator:perform:)-9ddq9\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPlayPauseCommand(perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPreferenceChange(_:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onReceive(_:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleDeck(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleDeckTranslation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleTranslation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onSubmit(of:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onTapGesture(count:perform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/opacity(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(_:alignment:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(_:ignoresSafeAreaEdges:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(_:in:fillStyle:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(alignment:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlayPreferenceValue(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/padding(_:)-7zetw\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/padding(_:)-9obs7\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/padding(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/pageCommand(value:in:step:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/pickerStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/popover(item:attachmentAnchor:arrowEdge:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/position(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/position(x:y:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/preference(key:value:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/preferredColorScheme(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/prefersDefaultFocus(_:in:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/presentedWindowStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/presentedWindowToolbarStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewContext(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewDevice(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewDisplayName(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewInterfaceOrientation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewLayout(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/privacySensitive(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/progressViewStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/projectionEffect(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/redacted(reason:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/refreshable(action:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/rotationEffect(_:anchor:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/safeAreaInset(edge:alignment:spacing:content:)-9cc9j\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/safeAreaInset(edge:alignment:spacing:content:)-9ojua\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/saturation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaleEffect(_:anchor:)-2caa5\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaleEffect(_:anchor:)-718iu\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaleEffect(x:y:anchor:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaledToFill()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaledToFit()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scenePadding(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchCompletion(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:)-2vm7x\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:)-8rgzb\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:)-988ga\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:suggestions:)-3zci7\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:suggestions:)-5taln\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:suggestions:)-8jhzt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shadow(color:radius:x:y:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/sheet(isPresented:onDismiss:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/sheet(item:onDismiss:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleAnimation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckAnimation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckScale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckTrigger(on:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDisabled(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleOffset(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shufflePadding(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleScale(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleTrigger(on:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/simultaneousGesture(_:including:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechAdjustedPitch(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechAlwaysIncludesPunctuation(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechAnnouncementsQueued(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechSpellsOutCharacters(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/submitLabel(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/submitScope(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/swipeActions(edge:allowsFullSwipe:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/symbolRenderingMode(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/symbolVariant(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tabItem(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tabViewStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tableStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tag(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/task(id:priority:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/task(priority:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textCase(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textContentType(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textFieldStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textSelection(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tint(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toggleStyle(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toolbar(content:)-2fsde\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toolbar(content:)-9838r\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toolbar(id:content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBar(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBar(content:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBarCustomizationLabel(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBarItemPresence(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBarItemPrincipal(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transaction(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformAnchorPreference(key:value:transform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformEffect(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformEnvironment(_:transform:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformPreference(_:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transition(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/truncationMode(_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/unredacted()\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/userActivity(_:element:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/userActivity(_:isActive:_:)\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/zIndex(_:)\"],\"generated\":true}],\"kind\":\"article\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"collectionGroup\",\"title\":\"View Implementations\"},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/colorMultiply(_:)\":{\"role\":\"symbol\",\"title\":\"colorMultiply(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorMultiply\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/colorMultiply(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/colormultiply(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/submitLabel(_:)\":{\"role\":\"symbol\",\"title\":\"submitLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitLabel\",\"preciseIdentifier\":\"s:7SwiftUI11SubmitLabelV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/submitLabel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/submitlabel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fixedSize(horizontal:vertical:)\":{\"role\":\"symbol\",\"title\":\"fixedSize(horizontal:vertical:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"horizontal\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"vertical\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fixedSize(horizontal:vertical:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fixedsize(horizontal:vertical:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityActivationPoint(_:)-9osvr\":{\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityActivationPoint(_:)-9osvr\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityactivationpoint(_:)-9osvr\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/colorScheme(_:)\":{\"role\":\"symbol\",\"title\":\"colorScheme(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/colorScheme(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/colorscheme(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/environmentObject(_:)\":{\"role\":\"symbol\",\"title\":\"environmentObject(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environmentObject\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/environmentObject(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/environmentobject(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRemoveTraits(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRemoveTraits(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRemoveTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRemoveTraits(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityremovetraits(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/animation(_:value:)\":{\"role\":\"symbol\",\"title\":\"animation(_:value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/animation(_:value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/animation(_:value:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:actions:)-svpk\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:)-svpk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:)-svpk\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focusable(_:onFocusChange:)\":{\"role\":\"symbol\",\"title\":\"focusable(_:onFocusChange:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onFocusChange\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusable(_:onFocusChange:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusable(_:onfocuschange:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleDeckScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the left and right content views of shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-571fc\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-571fc\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-571fc\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/contentShape(_:_:eoFill:)\":{\"role\":\"symbol\",\"title\":\"contentShape(_:_:eoFill:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentShapeKinds\",\"preciseIdentifier\":\"s:7SwiftUI17ContentShapeKindsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contentShape(_:_:eoFill:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contentshape(_:_:eofill:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(_:in:fillStyle:)-1a2bf\":{\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:in:fillStyle:)-1a2bf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:in:fillstyle:)-1a2bf\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityHeading(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityHeading(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHeading\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityHeadingLevel\",\"preciseIdentifier\":\"s:7SwiftUI25AccessibilityHeadingLevelO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHeading(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityheading(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityTextContentType(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityTextContentType(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityTextContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTextContentType\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityTextContentTypeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityTextContentType(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitytextcontenttype(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/speechAlwaysIncludesPunctuation(_:)\":{\"role\":\"symbol\",\"title\":\"speechAlwaysIncludesPunctuation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAlwaysIncludesPunctuation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechAlwaysIncludesPunctuation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/speechalwaysincludespunctuation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityShowsLargeContentViewer()\":{\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityShowsLargeContentViewer()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityshowslargecontentviewer()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(identifier:)\":{\"role\":\"symbol\",\"title\":\"accessibility(identifier:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"identifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(identifier:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(identifier:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/progressViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"progressViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"progressViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/progressViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/progressviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselSpacing(_:)\":{\"role\":\"symbol\",\"title\":\"carouselSpacing(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value which is used to add some spacing between carousel stack contents.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselSpacing(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselspacing(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityValue(_:)-6x5in\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityValue(_:)-6x5in\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityvalue(_:)-6x5in\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(_:alignment:)\":{\"role\":\"symbol\",\"title\":\"background(_:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Background\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/opacity(_:)\":{\"role\":\"symbol\",\"title\":\"opacity(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"opacity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/opacity(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/opacity(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityLabeledPair(role:id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityLabeledPair(role:id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabeledPair\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"role\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityLabeledPairRole\",\"preciseIdentifier\":\"s:7SwiftUI28AccessibilityLabeledPairRoleO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabeledPair(role:id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabeledpair(role:id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focusedSceneValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"focusedSceneValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedSceneValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusedSceneValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusedscenevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onTapGesture(count:perform:)\":{\"role\":\"symbol\",\"title\":\"onTapGesture(count:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onTapGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"count\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onTapGesture(count:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ontapgesture(count:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(activationPoint:)-1nikr\":{\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(activationPoint:)-1nikr\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(activationpoint:)-1nikr\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/preferredColorScheme(_:)\":{\"role\":\"symbol\",\"title\":\"preferredColorScheme(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preferredColorScheme\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorScheme\",\"preciseIdentifier\":\"s:7SwiftUI11ColorSchemeO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/preferredColorScheme(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/preferredcolorscheme(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/offset(_:)\":{\"role\":\"symbol\",\"title\":\"offset(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/offset(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/offset(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/luminanceToAlpha()\":{\"role\":\"symbol\",\"title\":\"luminanceToAlpha()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"luminanceToAlpha\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/luminanceToAlpha()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/luminancetoalpha()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/imageScale(_:)\":{\"role\":\"symbol\",\"title\":\"imageScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"imageScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Image\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Scale\",\"preciseIdentifier\":\"s:7SwiftUI5ImageV5ScaleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/imageScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/imagescale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAction(action:label:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(action:label:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Label\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(action:label:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(action:label:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAction(named:_:)-5nf29\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(named:_:)-5nf29\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(named:_:)-5nf29\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/badge(_:)-4i0v1\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-4i0v1\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-4i0v1\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityActivationPoint(_:)-57vfb\":{\"role\":\"symbol\",\"title\":\"accessibilityActivationPoint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityActivationPoint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityActivationPoint(_:)-57vfb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityactivationpoint(_:)-57vfb\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/overlayPreferenceValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"overlayPreferenceValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlayPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlayPreferenceValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlaypreferencevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/textSelection(_:)\":{\"role\":\"symbol\",\"title\":\"textSelection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textSelection\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textSelection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/textselection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:textRanges:)-91on2\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-91on2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-91on2\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/truncationMode(_:)\":{\"role\":\"symbol\",\"title\":\"truncationMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"truncationMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"TruncationMode\",\"preciseIdentifier\":\"s:7SwiftUI4TextV14TruncationModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/truncationMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/truncationmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1tkx\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1tkx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1tkx\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/font(_:)\":{\"role\":\"symbol\",\"title\":\"font(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"font\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Font\",\"preciseIdentifier\":\"s:7SwiftUI4FontV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/font(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/font(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/badge(_:)-31kbp\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-31kbp\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-31kbp\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(inputLabels:)\":{\"role\":\"symbol\",\"title\":\"accessibility(inputLabels:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"inputLabels\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(inputLabels:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(inputlabels:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:)-661b4\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-661b4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-661b4\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityHint(_:)-6451d\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHint(_:)-6451d\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhint(_:)-6451d\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/position(x:y:)\":{\"role\":\"symbol\",\"title\":\"position(x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/position(x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/position(x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityLabel(_:)-e66p\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabel(_:)-e66p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabel(_:)-e66p\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityLabel(_:)-6dv6y\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabel(_:)-6dv6y\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabel(_:)-6dv6y\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/id(_:)\":{\"role\":\"symbol\",\"title\":\"id(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/id(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/id(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/transformEffect(_:)\":{\"role\":\"symbol\",\"title\":\"transformEffect(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGAffineTransform\",\"preciseIdentifier\":\"c:@S@CGAffineTransform\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformEffect(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transformeffect(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/speechAdjustedPitch(_:)\":{\"role\":\"symbol\",\"title\":\"speechAdjustedPitch(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAdjustedPitch\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechAdjustedPitch(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/speechadjustedpitch(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:presenting:actions:)-7zzve\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:)-7zzve\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:)-7zzve\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/aspectRatio(_:contentMode:)-ggdx\":{\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/aspectRatio(_:contentMode:)-ggdx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/aspectratio(_:contentmode:)-ggdx\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityLinkedGroup(id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityLinkedGroup(id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLinkedGroup\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLinkedGroup(id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylinkedgroup(id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/overlay(_:in:fillStyle:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(_:in:fillStyle:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(_:in:fillstyle:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/keyboardShortcut(_:modifiers:)\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:modifiers:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:modifiers:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/toolbar(content:)-2fsde\":{\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toolbar(content:)-2fsde\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/toolbar(content:)-2fsde\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/coordinateSpace(name:)\":{\"role\":\"symbol\",\"title\":\"coordinateSpace(name:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"coordinateSpace\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"name\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/coordinateSpace(name:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/coordinatespace(name:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onLongPressGesture(minimumDuration:pressing:perform:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:pressing:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"pressing\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:pressing:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:pressing:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onMoveCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onMoveCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onMoveCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"MoveCommandDirection\",\"preciseIdentifier\":\"s:7SwiftUI20MoveCommandDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onMoveCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onmovecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"allowsMultipleSelection\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/edgesIgnoringSafeArea(_:)\":{\"role\":\"symbol\",\"title\":\"edgesIgnoringSafeArea(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"edgesIgnoringSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/edgesIgnoringSafeArea(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/edgesignoringsafearea(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alignmentGuide(_:computeValue:)-4kcej\":{\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alignmentGuide(_:computeValue:)-4kcej\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alignmentguide(_:computevalue:)-4kcej\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/scaledToFill()\":{\"role\":\"symbol\",\"title\":\"scaledToFill()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFill\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaledToFill()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaledtofill()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\":{\"role\":\"symbol\",\"title\":\"frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxWidth\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"minHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"idealHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"maxHeight\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityIdentifier(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityIdentifier(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIdentifier\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityIdentifier(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityidentifier(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryLabel:)-bva6\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-bva6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-bva6\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/lineLimit(_:)\":{\"role\":\"symbol\",\"title\":\"lineLimit(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineLimit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Int\",\"preciseIdentifier\":\"s:Si\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/lineLimit(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/linelimit(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:actions:)-7ipnf\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-7ipnf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-7ipnf\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:textRanges:)-1v5os\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-1v5os\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-1v5os\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onAppear(perform:)\":{\"role\":\"symbol\",\"title\":\"onAppear(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onAppear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onAppear(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onappear(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/foregroundStyle(_:_:_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S3\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundStyle(_:_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundstyle(_:_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/keyboardShortcut(_:)-30f12\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:)-30f12\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:)-30f12\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:actions:message:)-1lplz\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:message:)-1lplz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:message:)-1lplz\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/help(_:)-296\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/help(_:)-296\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/help(_:)-296\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/help(_:)-4q5ms\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/help(_:)-4q5ms\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/help(_:)-4q5ms\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/highPriorityGesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"highPriorityGesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"highPriorityGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/highPriorityGesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/highprioritygesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleDeckStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A9DeckStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle style of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrop(of:isTargeted:perform:)-3bmbv\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-3bmbv\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-3bmbv\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"maximumDistance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/popover(item:attachmentAnchor:arrowEdge:content:)\":{\"role\":\"symbol\",\"title\":\"popover(item:attachmentAnchor:arrowEdge:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/popover(item:attachmentAnchor:arrowEdge:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/popover(item:attachmentanchor:arrowedge:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/userActivity(_:isActive:_:)\":{\"role\":\"symbol\",\"title\":\"userActivity(_:isActive:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isActive\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/userActivity(_:isActive:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/useractivity(_:isactive:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/contextMenu(menuItems:)\":{\"role\":\"symbol\",\"title\":\"contextMenu(menuItems:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"menuItems\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contextMenu(menuItems:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contextmenu(menuitems:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/sheet(isPresented:onDismiss:content:)\":{\"role\":\"symbol\",\"title\":\"sheet(isPresented:onDismiss:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/sheet(isPresented:onDismiss:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/sheet(ispresented:ondismiss:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDisappear(perform:)\":{\"role\":\"symbol\",\"title\":\"onDisappear(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDisappear\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDisappear(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondisappear(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(item:content:)\":{\"role\":\"symbol\",\"title\":\"alert(item:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(item:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(item:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/saturation(_:)\":{\"role\":\"symbol\",\"title\":\"saturation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"saturation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/saturation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/saturation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onReceive(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onReceive(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onReceive\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Output\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onReceive(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onreceive(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7pkdq\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7pkdq\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pkdq\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/previewLayout(_:)\":{\"role\":\"symbol\",\"title\":\"previewLayout(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewLayout\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewLayout\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewLayoutO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewLayout(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewlayout(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselStyle(_:)\":{\"role\":\"symbol\",\"title\":\"carouselStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselStyle\",\"preciseIdentifier\":\"s:9ShuffleIt13CarouselStyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default carousel style of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onExitCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onExitCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onExitCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onExitCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onexitcommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityInputLabels(_:)-3mfon\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityInputLabels(_:)-3mfon\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityinputlabels(_:)-3mfon\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityValue(_:)-6kh76\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityValue(_:)-6kh76\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityvalue(_:)-6kh76\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/compositingGroup()\":{\"role\":\"symbol\",\"title\":\"compositingGroup()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"compositingGroup\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/compositingGroup()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/compositinggroup()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/transformPreference(_:_:)\":{\"role\":\"symbol\",\"title\":\"transformPreference(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformPreference(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transformpreference(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/foregroundStyle(_:_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S1\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"S2\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundStyle(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundstyle(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-375xz\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-375xz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-375xz\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/textContentType(_:)\":{\"role\":\"symbol\",\"title\":\"textContentType(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textContentType\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSTextContentType\",\"preciseIdentifier\":\"c:@T@NSTextContentType\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textContentType(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/textcontenttype(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-8sma2\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-8sma2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-8sma2\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAdjustableAction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAdjustableAction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAdjustableAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAdjustmentDirection\",\"preciseIdentifier\":\"s:7SwiftUI32AccessibilityAdjustmentDirectionO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAdjustableAction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityadjustableaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/tabItem(_:)\":{\"role\":\"symbol\",\"title\":\"tabItem(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabItem\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tabItem(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tabitem(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/labelStyle(_:)\":{\"role\":\"symbol\",\"title\":\"labelStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/labelStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/labelstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/blendMode(_:)\":{\"role\":\"symbol\",\"title\":\"blendMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blendMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"BlendMode\",\"preciseIdentifier\":\"s:7SwiftUI9BlendModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/blendMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/blendmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/listRowBackground(_:)\":{\"role\":\"symbol\",\"title\":\"listRowBackground(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowBackground\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listRowBackground(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/listrowbackground(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/redacted(reason:)\":{\"role\":\"symbol\",\"title\":\"redacted(reason:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"redacted\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"reason\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"RedactionReasons\",\"preciseIdentifier\":\"s:7SwiftUI16RedactionReasonsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/redacted(reason:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/redacted(reason:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(hint:)\":{\"role\":\"symbol\",\"title\":\"accessibility(hint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(hint:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(hint:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/offset(x:y:)\":{\"role\":\"symbol\",\"title\":\"offset(x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"offset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/offset(x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/offset(x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/datePickerStyle(_:)\":{\"role\":\"symbol\",\"title\":\"datePickerStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"datePickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/datePickerStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/datepickerstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationSubtitle(_:)-16d52\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationSubtitle(_:)-16d52\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationsubtitle(_:)-16d52\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onPasteCommand(of:validator:perform:)-9ddq9\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:validator:perform:)-9ddq9\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:validator:perform:)-9ddq9\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:)-f4c5\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-f4c5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-f4c5\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/blur(radius:opaque:)\":{\"role\":\"symbol\",\"title\":\"blur(radius:opaque:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"blur\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/blur(radius:opaque:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/blur(radius:opaque:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/buttonBorderShape(_:)\":{\"role\":\"symbol\",\"title\":\"buttonBorderShape(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonBorderShape\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ButtonBorderShape\",\"preciseIdentifier\":\"s:7SwiftUI17ButtonBorderShapeV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/buttonBorderShape(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/buttonbordershape(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onPreferenceChange(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onPreferenceChange(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPreferenceChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPreferenceChange(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpreferencechange(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflescale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/minimumScaleFactor(_:)\":{\"role\":\"symbol\",\"title\":\"minimumScaleFactor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"minimumScaleFactor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/minimumScaleFactor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/minimumscalefactor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRepresentation(representation:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRepresentation(representation:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRepresentation\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"representation\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRepresentation(representation:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrepresentation(representation:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileMover(isPresented:files:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileMover(isPresented:files:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"files\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileMover(isPresented:files:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/filemover(ispresented:files:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/controlSize(_:)\":{\"role\":\"symbol\",\"title\":\"controlSize(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ControlSize\",\"preciseIdentifier\":\"s:7SwiftUI11ControlSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/controlSize(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/controlsize(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/scenePadding(_:)\":{\"role\":\"symbol\",\"title\":\"scenePadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scenePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scenePadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scenepadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/previewDevice(_:)\":{\"role\":\"symbol\",\"title\":\"previewDevice(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDevice\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"PreviewDevice\",\"preciseIdentifier\":\"s:7SwiftUI13PreviewDeviceV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewDevice(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewdevice(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityLabel(_:)-3has0\":{\"role\":\"symbol\",\"title\":\"accessibilityLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityLabel\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityLabel(_:)-3has0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabel(_:)-3has0\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityValue(_:)-tcbi\":{\"role\":\"symbol\",\"title\":\"accessibilityValue(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityValue(_:)-tcbi\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityvalue(_:)-tcbi\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:actions:)-4ywhx\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-4ywhx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-4ywhx\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/pageCommand(value:in:step:)\":{\"role\":\"symbol\",\"title\":\"pageCommand(value:in:step:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pageCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ClosedRange\",\"preciseIdentifier\":\"s:SN\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"step\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/pageCommand(value:in:step:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/pagecommand(value:in:step:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRespondsToUserInteraction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRespondsToUserInteraction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRespondsToUserInteraction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRespondsToUserInteraction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrespondstouserinteraction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselScale(_:)\":{\"role\":\"symbol\",\"title\":\"carouselScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the contents right next to the current content of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/userActivity(_:element:_:)\":{\"role\":\"symbol\",\"title\":\"userActivity(_:element:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"userActivity\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"element\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\"?, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/userActivity(_:element:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/useractivity(_:element:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(addTraits:)\":{\"role\":\"symbol\",\"title\":\"accessibility(addTraits:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"addTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(addTraits:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(addtraits:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"carouselDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to carousel content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouseldisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onCommand(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onCommand(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Selector\",\"preciseIdentifier\":\"s:10ObjectiveC8SelectorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCommand(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncommand(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focusScope(_:)\":{\"role\":\"symbol\",\"title\":\"focusScope(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusScope(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusscope(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/toolbar(id:content:)\":{\"role\":\"symbol\",\"title\":\"toolbar(id:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toolbar(id:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/toolbar(id:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(sortPriority:)\":{\"role\":\"symbol\",\"title\":\"accessibility(sortPriority:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"sortPriority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(sortPriority:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(sortpriority:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/popover(isPresented:attachmentAnchor:arrowEdge:content:)\":{\"role\":\"symbol\",\"title\":\"popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"popover\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"attachmentAnchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"PopoverAttachmentAnchor\",\"preciseIdentifier\":\"s:7SwiftUI23PopoverAttachmentAnchorO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"arrowEdge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/popover(isPresented:attachmentAnchor:arrowEdge:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/popover(ispresented:attachmentanchor:arrowedge:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/defaultAppStorage(_:)\":{\"role\":\"symbol\",\"title\":\"defaultAppStorage(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"defaultAppStorage\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"UserDefaults\",\"preciseIdentifier\":\"c:objc(cs)NSUserDefaults\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/defaultAppStorage(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/defaultappstorage(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-6evgr\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-6evgr\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-6evgr\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-1kurz\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-1kurz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1kurz\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onCarousel(_:)\":{\"role\":\"symbol\",\"title\":\"onCarousel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarousel\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselContext\",\"preciseIdentifier\":\"s:9ShuffleIt15CarouselContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens sliding events occurring on the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCarousel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncarousel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchable(text:placement:prompt:suggestions:)-8jhzt\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:suggestions:)-8jhzt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:suggestions:)-8jhzt\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAction(named:_:)-7rxae\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(named:_:)-7rxae\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(named:_:)-7rxae\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/previewContext(_:)\":{\"role\":\"symbol\",\"title\":\"previewContext(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewContext\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewContext(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewcontext(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/interactiveDismissDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"interactiveDismissDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"interactiveDismissDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/interactiveDismissDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/interactivedismissdisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/foregroundColor(_:)\":{\"role\":\"symbol\",\"title\":\"foregroundColor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundColor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundcolor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/tint(_:)\":{\"role\":\"symbol\",\"title\":\"tint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tint(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tint(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/tag(_:)\":{\"role\":\"symbol\",\"title\":\"tag(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tag(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tag(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/dynamicTypeSize(_:)\":{\"role\":\"symbol\",\"title\":\"dynamicTypeSize(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"dynamicTypeSize\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"DynamicTypeSize\",\"preciseIdentifier\":\"s:7SwiftUI15DynamicTypeSizeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/dynamicTypeSize(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/dynamictypesize(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityInputLabels(_:)-7hs3b\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">([\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityInputLabels(_:)-7hs3b\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityinputlabels(_:)-7hs3b\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrop(of:delegate:)-1ea27\":{\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:delegate:)-1ea27\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:delegate:)-1ea27\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDeleteCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onDeleteCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDeleteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDeleteCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondeletecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/presentedWindowToolbarStyle(_:)\":{\"role\":\"symbol\",\"title\":\"presentedWindowToolbarStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowToolbarStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/presentedWindowToolbarStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/presentedwindowtoolbarstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/allowsTightening(_:)\":{\"role\":\"symbol\",\"title\":\"allowsTightening(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsTightening\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/allowsTightening(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/allowstightening(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focusable(_:)\":{\"role\":\"symbol\",\"title\":\"focusable(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusable(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusable(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchable(text:placement:prompt:)-8rgzb\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:)-8rgzb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:)-8rgzb\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:actions:)-41ud8\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:)-41ud8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-41ud8\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-7cjsq\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-7cjsq\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-7cjsq\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/clipped(antialiased:)\":{\"role\":\"symbol\",\"title\":\"clipped(antialiased:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipped\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/clipped(antialiased:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/clipped(antialiased:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-1gi9v\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-1gi9v\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-1gi9v\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/headerProminence(_:)\":{\"role\":\"symbol\",\"title\":\"headerProminence(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"headerProminence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Prominence\",\"preciseIdentifier\":\"s:7SwiftUI10ProminenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/headerProminence(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/headerprominence(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileImporter(isPresented:allowedContentTypes:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileImporter\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowedContentTypes\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileImporter(isPresented:allowedContentTypes:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/listItemTint(_:)-66j6h\":{\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ListItemTint\",\"preciseIdentifier\":\"s:7SwiftUI12ListItemTintV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listItemTint(_:)-66j6h\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/listitemtint(_:)-66j6h\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/zIndex(_:)\":{\"role\":\"symbol\",\"title\":\"zIndex(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"zIndex\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/zIndex(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/zindex(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityFocused(_:equals:)\":{\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:equals:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityFocused(_:equals:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityfocused(_:equals:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityHint(_:)-45b9m\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHint(_:)-45b9m\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhint(_:)-45b9m\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/preference(key:value:)\":{\"role\":\"symbol\",\"title\":\"preference(key:value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"preference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/preference(key:value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/preference(key:value:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/horizontalRadioGroupLayout()\":{\"role\":\"symbol\",\"title\":\"horizontalRadioGroupLayout()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"horizontalRadioGroupLayout\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/horizontalRadioGroupLayout()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/horizontalradiogrouplayout()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:actions:)-13ppe\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:)-13ppe\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:)-13ppe\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/listRowInsets(_:)\":{\"role\":\"symbol\",\"title\":\"listRowInsets(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listRowInsets\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listRowInsets(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/listrowinsets(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onPasteCommand(of:validator:perform:)-7tcqn\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:validator:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"validator\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Payload\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:validator:perform:)-7tcqn\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:validator:perform:)-7tcqn\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onShuffleTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while swiping content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffletranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleDeckAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A13DeckAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default shuffle animation of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/border(_:width:)\":{\"role\":\"symbol\",\"title\":\"border(_:width:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"border\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/border(_:width:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/border(_:width:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(_:in:fillStyle:)-8qwr1\":{\"role\":\"symbol\",\"title\":\"background(_:in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:in:fillStyle:)-8qwr1\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:in:fillstyle:)-8qwr1\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationTitle(_:)-7jd07\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7jd07\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7jd07\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onChange(of:perform:)\":{\"role\":\"symbol\",\"title\":\"onChange(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onChange\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onChange(of:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onchange(of:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\":{\"role\":\"symbol\",\"title\":\"rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotation3DEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"axis\"},{\"kind\":\"text\",\"text\":\": (x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", z\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"), \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchorZ\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perspective\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/rotation3deffect(_:axis:anchor:anchorz:perspective:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryLabel:)-8e6r9\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-8e6r9\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-8e6r9\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/pickerStyle(_:)\":{\"role\":\"symbol\",\"title\":\"pickerStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"pickerStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/pickerStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/pickerstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityShowsLargeContentViewer(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityShowsLargeContentViewer(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityShowsLargeContentViewer\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityShowsLargeContentViewer(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityshowslargecontentviewer(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/itemProvider(_:)\":{\"role\":\"symbol\",\"title\":\"itemProvider(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"itemProvider\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Optional\",\"preciseIdentifier\":\"s:Sq\"},{\"kind\":\"text\",\"text\":\"<() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"?>) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/itemProvider(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/itemprovider(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/rotationEffect(_:anchor:)\":{\"role\":\"symbol\",\"title\":\"rotationEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotationEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/rotationEffect(_:anchor:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/rotationeffect(_:anchor:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(in:fillStyle:)-58j5e\":{\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(in:fillStyle:)-58j5e\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(in:fillstyle:)-58j5e\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(value:)\":{\"role\":\"symbol\",\"title\":\"accessibility(value:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(value:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(value:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(selectionIdentifier:)\":{\"role\":\"symbol\",\"title\":\"accessibility(selectionIdentifier:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"selectionIdentifier\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyHashable\",\"preciseIdentifier\":\"s:s11AnyHashableV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(selectionIdentifier:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(selectionidentifier:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/unredacted()\":{\"role\":\"symbol\",\"title\":\"unredacted()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"unredacted\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/unredacted()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/unredacted()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchCompletion(_:)\":{\"role\":\"symbol\",\"title\":\"searchCompletion(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchCompletion\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchCompletion(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchcompletion(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/buttonStyle(_:)-42cf\":{\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/buttonStyle(_:)-42cf\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/buttonstyle(_:)-42cf\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/presentedWindowStyle(_:)\":{\"role\":\"symbol\",\"title\":\"presentedWindowStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"presentedWindowStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/presentedWindowStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/presentedwindowstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/symbolRenderingMode(_:)\":{\"role\":\"symbol\",\"title\":\"symbolRenderingMode(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolRenderingMode\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI19SymbolRenderingModeV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/symbolRenderingMode(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/symbolrenderingmode(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:)-3a01s\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-3a01s\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-3a01s\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/buttonStyle(_:)-4hs9e\":{\"role\":\"symbol\",\"title\":\"buttonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"buttonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/buttonStyle(_:)-4hs9e\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/buttonstyle(_:)-4hs9e\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/allowsHitTesting(_:)\":{\"role\":\"symbol\",\"title\":\"allowsHitTesting(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"allowsHitTesting\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/allowsHitTesting(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/allowshittesting(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focused(_:)\":{\"role\":\"symbol\",\"title\":\"focused(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focused(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focused(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/brightness(_:)\":{\"role\":\"symbol\",\"title\":\"brightness(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"brightness\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/brightness(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/brightness(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryID:entryLabel:)-6akr8\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-6akr8\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-6akr8\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A9AnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle animation of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffleanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/touchBar(_:)\":{\"role\":\"symbol\",\"title\":\"touchBar(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBar\",\"preciseIdentifier\":\"s:7SwiftUI8TouchBarV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBar(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbar(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/hueRotation(_:)\":{\"role\":\"symbol\",\"title\":\"hueRotation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hueRotation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Angle\",\"preciseIdentifier\":\"s:7SwiftUI5AngleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/hueRotation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/huerotation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselPadding(_:)\":{\"role\":\"symbol\",\"title\":\"carouselPadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselPadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselPadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselpadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-9sue3\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-9sue3\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9sue3\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/overlay(_:alignment:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Overlay\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(_:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(_:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/touchBarItemPresence(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarItemPresence(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPresence\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TouchBarItemPresence\",\"preciseIdentifier\":\"s:7SwiftUI20TouchBarItemPresenceO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBarItemPresence(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbaritempresence(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileMover(isPresented:file:onCompletion:)\":{\"role\":\"symbol\",\"title\":\"fileMover(isPresented:file:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileMover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"file\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileMover(isPresented:file:onCompletion:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/filemover(ispresented:file:oncompletion:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/safeAreaInset(edge:alignment:spacing:content:)-9cc9j\":{\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI17VerticalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/safeAreaInset(edge:alignment:spacing:content:)-9cc9j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/safeareainset(edge:alignment:spacing:content:)-9cc9j\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/help(_:)-2u744\":{\"role\":\"symbol\",\"title\":\"help(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"help\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/help(_:)-2u744\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/help(_:)-2u744\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onShuffleDeckTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeckTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeckTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while shuffling content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleDeckTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffledecktranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:actions:message:)-42hzu\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:message:)-42hzu\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:message:)-42hzu\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onHover(perform:)\":{\"role\":\"symbol\",\"title\":\"onHover(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onHover\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onHover(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onhover(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/gesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"gesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"gesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/gesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/gesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/flipsForRightToLeftLayoutDirection(_:)\":{\"role\":\"symbol\",\"title\":\"flipsForRightToLeftLayoutDirection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"flipsForRightToLeftLayoutDirection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/flipsForRightToLeftLayoutDirection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/flipsforrighttoleftlayoutdirection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:presenting:actions:message:)-36zvz\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:message:)-36zvz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:message:)-36zvz\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/menuIndicator(_:)\":{\"role\":\"symbol\",\"title\":\"menuIndicator(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuIndicator\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/menuIndicator(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/menuindicator(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(in:fillStyle:)-8w09p\":{\"role\":\"symbol\",\"title\":\"background(in:fillStyle:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"fillStyle\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(in:fillStyle:)-8w09p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(in:fillstyle:)-8w09p\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/projectionEffect(_:)\":{\"role\":\"symbol\",\"title\":\"projectionEffect(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"projectionEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ProjectionTransform\",\"preciseIdentifier\":\"s:7SwiftUI19ProjectionTransformV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/projectionEffect(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/projectioneffect(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/symbolVariant(_:)\":{\"role\":\"symbol\",\"title\":\"symbolVariant(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"symbolVariant\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SymbolVariants\",\"preciseIdentifier\":\"s:7SwiftUI14SymbolVariantsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/symbolVariant(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/symbolvariant(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/sheet(item:onDismiss:content:)\":{\"role\":\"symbol\",\"title\":\"sheet(item:onDismiss:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"sheet\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"item\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"externalParam\",\"text\":\"onDismiss\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Item\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/sheet(item:onDismiss:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/sheet(item:ondismiss:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleDeckTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledecktrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:actions:)-31fv4\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:)-31fv4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:)-31fv4\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityIgnoresInvertColors(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityIgnoresInvertColors(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityIgnoresInvertColors\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityIgnoresInvertColors(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityignoresinvertcolors(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-8iv2y\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"document\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"D\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"defaultFilename\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-8iv2y\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-8iv2y\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-96ur4\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-96ur4\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-96ur4\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityChartDescriptor(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityChartDescriptor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChartDescriptor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"R\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityChartDescriptor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitychartdescriptor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileExporter(isPresented:documents:contentType:onCompletion:)-233kd\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-233kd\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-233kd\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/scaleEffect(x:y:anchor:)\":{\"role\":\"symbol\",\"title\":\"scaleEffect(x:y:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaleEffect(x:y:anchor:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaleeffect(x:y:anchor:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/transformAnchorPreference(key:value:transform:)\":{\"role\":\"symbol\",\"title\":\"transformAnchorPreference(key:value:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformAnchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformAnchorPreference(key:value:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transformanchorpreference(key:value:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(label:)\":{\"role\":\"symbol\",\"title\":\"accessibility(label:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"label\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(label:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(label:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shufflePadding(_:)\":{\"role\":\"symbol\",\"title\":\"shufflePadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shufflePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shufflePadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflepadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationTitle(_:)-7w547\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7w547\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7w547\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrop(of:delegate:)-8thdr\":{\"role\":\"symbol\",\"title\":\"onDrop(of:delegate:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"delegate\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"DropDelegate\",\"preciseIdentifier\":\"s:7SwiftUI12DropDelegateP\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:delegate:)-8thdr\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:delegate:)-8thdr\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/transition(_:)\":{\"role\":\"symbol\",\"title\":\"transition(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transition\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AnyTransition\",\"preciseIdentifier\":\"s:7SwiftUI13AnyTransitionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transition(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transition(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/position(_:)\":{\"role\":\"symbol\",\"title\":\"position(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"position\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/position(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/position(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityFocused(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityFocused(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityFocused\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityFocusState\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityFocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityFocused(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityfocused(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onSubmit(of:_:)\":{\"role\":\"symbol\",\"title\":\"onSubmit(of:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onSubmit\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SubmitTriggers\",\"preciseIdentifier\":\"s:7SwiftUI14SubmitTriggersV\"},{\"kind\":\"text\",\"text\":\", (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onSubmit(of:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onsubmit(of:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/menuButtonStyle(_:)\":{\"role\":\"symbol\",\"title\":\"menuButtonStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuButtonStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/menuButtonStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/menubuttonstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/contentShape(_:eoFill:)\":{\"role\":\"symbol\",\"title\":\"contentShape(_:eoFill:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contentShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"eoFill\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contentShape(_:eoFill:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contentshape(_:eofill:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchable(text:placement:prompt:)-988ga\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:)-988ga\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:)-988ga\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onCutCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onCutCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCutCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCutCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncutcommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/containerShape(_:)\":{\"role\":\"symbol\",\"title\":\"containerShape(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"containerShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/containerShape(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/containershape(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/submitScope(_:)\":{\"role\":\"symbol\",\"title\":\"submitScope(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"submitScope\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/submitScope(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/submitscope(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrop(of:isTargeted:perform:)-363wn\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-363wn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-363wn\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(isPresented:error:actions:message:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(isPresented:error:actions:message:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(ispresented:error:actions:message:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/touchBarCustomizationLabel(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarCustomizationLabel(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarCustomizationLabel\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBarCustomizationLabel(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbarcustomizationlabel(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(removeTraits:)\":{\"role\":\"symbol\",\"title\":\"accessibility(removeTraits:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"removeTraits\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(removeTraits:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(removetraits:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleDeckDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDeckDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDeckDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that disables user interaction to shuffle deck content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDeckDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckdisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/aspectRatio(_:contentMode:)-9iav9\":{\"role\":\"symbol\",\"title\":\"aspectRatio(_:contentMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"aspectRatio\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ContentMode\",\"preciseIdentifier\":\"s:7SwiftUI11ContentModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/aspectRatio(_:contentMode:)-9iav9\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/aspectratio(_:contentmode:)-9iav9\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fileExporter(isPresented:documents:contentType:onCompletion:)-7map2\":{\"role\":\"symbol\",\"title\":\"fileExporter(isPresented:documents:contentType:onCompletion:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fileExporter\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"documents\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"C\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"contentType\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onCompletion\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Result\",\"preciseIdentifier\":\"s:s6ResultO\"},{\"kind\":\"text\",\"text\":\"<[\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"Error\",\"preciseIdentifier\":\"s:s5ErrorP\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fileExporter(isPresented:documents:contentType:onCompletion:)-7map2\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-7map2\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/hidden()\":{\"role\":\"symbol\",\"title\":\"hidden()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/hidden()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/hidden()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/exportsItemProviders(_:onExport:onEdit:)\":{\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:onEdit:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onEdit\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/exportsItemProviders(_:onExport:onEdit:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/exportsitemproviders(_:onexport:onedit:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/fixedSize()\":{\"role\":\"symbol\",\"title\":\"fixedSize()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"fixedSize\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/fixedSize()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fixedsize()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/task(id:priority:_:)\":{\"role\":\"symbol\",\"title\":\"task(id:priority:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/task(id:priority:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/task(id:priority:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onCarouselTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onCarouselTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCarouselTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while sliding content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCarouselTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncarouseltranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/previewInterfaceOrientation(_:)\":{\"role\":\"symbol\",\"title\":\"previewInterfaceOrientation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewInterfaceOrientation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"InterfaceOrientation\",\"preciseIdentifier\":\"s:7SwiftUI20InterfaceOrientationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewInterfaceOrientation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewinterfaceorientation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accpets events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffletrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/toolbar(content:)-9838r\":{\"role\":\"symbol\",\"title\":\"toolbar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toolbar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toolbar(content:)-9838r\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/toolbar(content:)-9838r\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/disabled(_:)\":{\"role\":\"symbol\",\"title\":\"disabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/disabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/disabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:presenting:actions:)-135kk\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:)-135kk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:)-135kk\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/transaction(_:)\":{\"role\":\"symbol\",\"title\":\"transaction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transaction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Transaction\",\"preciseIdentifier\":\"s:7SwiftUI11TransactionV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transaction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(isPresented:error:actions:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:error:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"error\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"E\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(isPresented:error:actions:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(ispresented:error:actions:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/touchBarItemPrincipal(_:)\":{\"role\":\"symbol\",\"title\":\"touchBarItemPrincipal(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBarItemPrincipal\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBarItemPrincipal(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbaritemprincipal(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-5diu1\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-5diu1\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5diu1\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/contextMenu(_:)\":{\"role\":\"symbol\",\"title\":\"contextMenu(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contextMenu\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ContextMenu\",\"preciseIdentifier\":\"s:7SwiftUI11ContextMenuV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"MenuItems\"},{\"kind\":\"text\",\"text\":\">?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contextMenu(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contextmenu(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityHint(_:)-6m2eb\":{\"role\":\"symbol\",\"title\":\"accessibilityHint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHint\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHint(_:)-6m2eb\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhint(_:)-6m2eb\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(_:ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"background(_:ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(_:ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleOffset(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleOffset(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleOffset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value that is used to shift the offset of the upcoming and previous content views behind the view of the current index.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleOffset(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffleoffset(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/speechSpellsOutCharacters(_:)\":{\"role\":\"symbol\",\"title\":\"speechSpellsOutCharacters(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechSpellsOutCharacters\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechSpellsOutCharacters(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/speechspellsoutcharacters(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrag(_:preview:)\":{\"role\":\"symbol\",\"title\":\"onDrag(_:preview:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"preview\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrag(_:preview:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrag(_:preview:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/task(priority:_:)\":{\"role\":\"symbol\",\"title\":\"task(priority:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"task\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"priority\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"TaskPriority\",\"preciseIdentifier\":\"s:ScP\"},{\"kind\":\"text\",\"text\":\", () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/task(priority:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/task(priority:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/frame(width:height:alignment:)\":{\"role\":\"symbol\",\"title\":\"frame(width:height:alignment:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"width\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"height\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/frame(width:height:alignment:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/frame(width:height:alignment:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/previewDisplayName(_:)\":{\"role\":\"symbol\",\"title\":\"previewDisplayName(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"previewDisplayName\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/previewDisplayName(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewdisplayname(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/animation(_:)\":{\"role\":\"symbol\",\"title\":\"animation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"animation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Animation\",\"preciseIdentifier\":\"s:7SwiftUI9AnimationV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/animation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/animation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotorEntry(id:in:)\":{\"role\":\"symbol\",\"title\":\"accessibilityRotorEntry(id:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotorEntry\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotorEntry(id:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotorentry(id:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/matchedGeometryEffect(id:in:properties:anchor:isSource:)\":{\"role\":\"symbol\",\"title\":\"matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"matchedGeometryEffect\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"id\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"properties\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"MatchedGeometryProperties\",\"preciseIdentifier\":\"s:7SwiftUI25MatchedGeometryPropertiesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isSource\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/matchedGeometryEffect(id:in:properties:anchor:isSource:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/matchedgeometryeffect(id:in:properties:anchor:issource:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchable(text:placement:prompt:)-2vm7x\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:)-2vm7x\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:)-2vm7x\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/moveDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"moveDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"moveDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/moveDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/movedisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(isPresented:content:)\":{\"role\":\"symbol\",\"title\":\"alert(isPresented:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alert\",\"preciseIdentifier\":\"s:7SwiftUI5AlertV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(isPresented:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(ispresented:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onPasteCommand(of:perform:)-wliz\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:perform:)-wliz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:perform:)-wliz\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/ignoresSafeArea(_:edges:)\":{\"role\":\"symbol\",\"title\":\"ignoresSafeArea(_:edges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ignoresSafeArea\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"SafeAreaRegions\",\"preciseIdentifier\":\"s:7SwiftUI15SafeAreaRegionsV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"edges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/ignoresSafeArea(_:edges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ignoressafearea(_:edges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-5vmyl\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-5vmyl\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5vmyl\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/labelsHidden()\":{\"role\":\"symbol\",\"title\":\"labelsHidden()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"labelsHidden\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/labelsHidden()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/labelshidden()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focused(_:equals:)\":{\"role\":\"symbol\",\"title\":\"focused(_:equals:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focused\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusState\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI10FocusStateV7BindingV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"equals\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focused(_:equals:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focused(_:equals:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onShuffleDeck(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleDeck(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleDeck\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleDeckContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A11DeckContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleDeck(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffledeck(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:textRanges:)-5mce6\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-5mce6\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-5mce6\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilitySortPriority(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilitySortPriority(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilitySortPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilitySortPriority(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitysortpriority(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/speechAnnouncementsQueued(_:)\":{\"role\":\"symbol\",\"title\":\"speechAnnouncementsQueued(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"speechAnnouncementsQueued\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/speechAnnouncementsQueued(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/speechannouncementsqueued(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAction(named:_:)-7tk0c\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(named:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"named\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(named:_:)-7tk0c\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(named:_:)-7tk0c\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/frame()\":{\"role\":\"symbol\",\"title\":\"frame()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"frame\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/frame()\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/frame()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/overlay(_:ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"overlay(_:ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(_:ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(_:ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/badge(_:)-2cz64\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-2cz64\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-2cz64\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/grayscale(_:)\":{\"role\":\"symbol\",\"title\":\"grayscale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"grayscale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/grayscale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/grayscale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-296mh\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-296mh\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-296mh\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(ignoresSafeAreaEdges:)\":{\"role\":\"symbol\",\"title\":\"background(ignoresSafeAreaEdges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"ignoresSafeAreaEdges\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(ignoresSafeAreaEdges:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(ignoressafeareaedges:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/tableStyle(_:)\":{\"role\":\"symbol\",\"title\":\"tableStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tableStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tableStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tablestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that disables user interaction to shuffle content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityChildren(children:)\":{\"role\":\"symbol\",\"title\":\"accessibilityChildren(children:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityChildren\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityChildren(children:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitychildren(children:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-7h1pz\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-7h1pz\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-7h1pz\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/scaledToFit()\":{\"role\":\"symbol\",\"title\":\"scaledToFit()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaledToFit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaledToFit()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaledtofit()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryLabel:)-6o30j\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-6o30j\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-6o30j\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/touchBar(content:)\":{\"role\":\"symbol\",\"title\":\"touchBar(content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"touchBar\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/touchBar(content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbar(content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/controlGroupStyle(_:)\":{\"role\":\"symbol\",\"title\":\"controlGroupStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"controlGroupStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/controlGroupStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/controlgroupstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationSubtitle(_:)-206md\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationSubtitle(_:)-206md\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationsubtitle(_:)-206md\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shadow(color:radius:x:y:)\":{\"role\":\"symbol\",\"title\":\"shadow(color:radius:x:y:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shadow\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"color\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"radius\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"x\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"y\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shadow(color:radius:x:y:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shadow(color:radius:x:y:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/modifier(_:)\":{\"role\":\"symbol\",\"title\":\"modifier(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"modifier\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/modifier(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/modifier(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/exportsItemProviders(_:onExport:)\":{\"role\":\"symbol\",\"title\":\"exportsItemProviders(_:onExport:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"exportsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onExport\"},{\"kind\":\"text\",\"text\":\": () -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/exportsItemProviders(_:onExport:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/exportsitemproviders(_:onexport:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/mask(alignment:_:)\":{\"role\":\"symbol\",\"title\":\"mask(alignment:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/mask(alignment:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/mask(alignment:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/simultaneousGesture(_:including:)\":{\"role\":\"symbol\",\"title\":\"simultaneousGesture(_:including:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"simultaneousGesture\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"including\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"GestureMask\",\"preciseIdentifier\":\"s:7SwiftUI11GestureMaskV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/simultaneousGesture(_:including:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/simultaneousgesture(_:including:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/keyboardShortcut(_:)-38k96\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:)-38k96\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:)-38k96\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/disableAutocorrection(_:)\":{\"role\":\"symbol\",\"title\":\"disableAutocorrection(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"disableAutocorrection\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/disableAutocorrection(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/disableautocorrection(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-956rk\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityCustomContentKey\",\"preciseIdentifier\":\"s:7SwiftUI29AccessibilityCustomContentKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-956rk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-956rk\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/backgroundPreferenceValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"backgroundPreferenceValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"backgroundPreferenceValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".Type, (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Key\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/backgroundPreferenceValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/backgroundpreferencevalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onOpenURL(perform:)\":{\"role\":\"symbol\",\"title\":\"onOpenURL(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onOpenURL\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"URL\",\"preciseIdentifier\":\"s:10Foundation3URLV\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onOpenURL(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onopenurl(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/scaleEffect(_:anchor:)-718iu\":{\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaleEffect(_:anchor:)-718iu\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaleeffect(_:anchor:)-718iu\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:textRanges:)-7fpc1\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:textRanges:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"textRanges\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"Range\",\"preciseIdentifier\":\"s:Sn\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\",\"preciseIdentifier\":\"s:SS5IndexV\"},{\"kind\":\"text\",\"text\":\">]) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:textRanges:)-7fpc1\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-7fpc1\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationSubtitle(_:)-7em2i\":{\"role\":\"symbol\",\"title\":\"navigationSubtitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationSubtitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationSubtitle(_:)-7em2i\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationsubtitle(_:)-7em2i\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/handlesExternalEvents(preferring:allowing:)\":{\"role\":\"symbol\",\"title\":\"handlesExternalEvents(preferring:allowing:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"handlesExternalEvents\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"preferring\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"allowing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:Sh\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/handlesExternalEvents(preferring:allowing:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/handlesexternalevents(preferring:allowing:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:presenting:actions:message:)-17uu0\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:message:)-17uu0\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:message:)-17uu0\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/padding(_:)-7zetw\":{\"role\":\"symbol\",\"title\":\"padding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/padding(_:)-7zetw\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/padding(_:)-7zetw\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryID:entryLabel:)-1kufn\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-1kufn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-1kufn\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onContinueUserActivity(_:perform:)\":{\"role\":\"symbol\",\"title\":\"onContinueUserActivity(_:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onContinueUserActivity\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSUserActivity\",\"preciseIdentifier\":\"c:objc(cs)NSUserActivity\"},{\"kind\":\"text\",\"text\":\") -> ()) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onContinueUserActivity(_:perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncontinueuseractivity(_:perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/deleteDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"deleteDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"deleteDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/deleteDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/deletedisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/tabViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"tabViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"tabViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/tabViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tabviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/anchorPreference(key:value:transform:)\":{\"role\":\"symbol\",\"title\":\"anchorPreference(key:value:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"anchorPreference\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"key\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".Type, \"},{\"kind\":\"externalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">.\"},{\"kind\":\"typeIdentifier\",\"text\":\"Source\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV6SourceV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Anchor\",\"preciseIdentifier\":\"s:7SwiftUI6AnchorV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"K\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/anchorPreference(key:value:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/anchorpreference(key:value:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/scaleEffect(_:anchor:)-2caa5\":{\"role\":\"symbol\",\"title\":\"scaleEffect(_:anchor:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"scaleEffect\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGSize\",\"preciseIdentifier\":\"c:@S@CGSize\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"anchor\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/scaleEffect(_:anchor:)-2caa5\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaleeffect(_:anchor:)-2caa5\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/importsItemProviders(_:onImport:)\":{\"role\":\"symbol\",\"title\":\"importsItemProviders(_:onImport:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"importsItemProviders\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"onImport\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/importsItemProviders(_:onImport:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/importsitemproviders(_:onimport:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityInputLabels(_:)-7kg3p\":{\"role\":\"symbol\",\"title\":\"accessibilityInputLabels(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityInputLabels\"},{\"kind\":\"text\",\"text\":\"([\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityInputLabels(_:)-7kg3p\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityinputlabels(_:)-7kg3p\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/mask(_:)\":{\"role\":\"symbol\",\"title\":\"mask(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"mask\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Mask\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/mask(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/mask(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationTitle(_:)-7aj99\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7aj99\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7aj99\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accentColor(_:)\":{\"role\":\"symbol\",\"title\":\"accentColor(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accentColor\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accentColor(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accentcolor(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alignmentGuide(_:computeValue:)-23g26\":{\"role\":\"symbol\",\"title\":\"alignmentGuide(_:computeValue:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alignmentGuide\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"computeValue\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"ViewDimensions\",\"preciseIdentifier\":\"s:7SwiftUI14ViewDimensionsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alignmentGuide(_:computeValue:)-23g26\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alignmentguide(_:computevalue:)-23g26\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/colorInvert()\":{\"role\":\"symbol\",\"title\":\"colorInvert()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"colorInvert\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/colorInvert()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/colorinvert()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/monospacedDigit()\":{\"role\":\"symbol\",\"title\":\"monospacedDigit()\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"monospacedDigit\"},{\"kind\":\"text\",\"text\":\"() -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/monospacedDigit()\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/monospaceddigit()\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/transformEnvironment(_:transform:)\":{\"role\":\"symbol\",\"title\":\"transformEnvironment(_:transform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"transformEnvironment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"transform\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"keyword\",\"text\":\"inout\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/transformEnvironment(_:transform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transformenvironment(_:transform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrop(of:isTargeted:perform:)-84ef9\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-84ef9\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-84ef9\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/listStyle(_:)\":{\"role\":\"symbol\",\"title\":\"listStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/liststyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:presenting:actions:message:)-7caah\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:message:)-7caah\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:message:)-7caah\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/environment(_:_:)\":{\"role\":\"symbol\",\"title\":\"environment(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"environment\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EnvironmentValues\",\"preciseIdentifier\":\"s:7SwiftUI17EnvironmentValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/environment(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/environment(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:)-7kbeo\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Content\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:)-7kbeo\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-7kbeo\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:actions:message:)-8jr1q\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:actions:message:)-8jr1q\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:message:)-8jr1q\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/prefersDefaultFocus(_:in:)\":{\"role\":\"symbol\",\"title\":\"prefersDefaultFocus(_:in:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"prefersDefaultFocus\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"in\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Namespace\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\",\"preciseIdentifier\":\"s:7SwiftUI9NamespaceV2IDV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/prefersDefaultFocus(_:in:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/prefersdefaultfocus(_:in:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-5uj0y\":{\"role\":\"symbol\",\"title\":\"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"confirmationDialog\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"titleVisibility\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Visibility\",\"preciseIdentifier\":\"s:7SwiftUI10VisibilityO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"message\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"M\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-5uj0y\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-5uj0y\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/background(alignment:content:)\":{\"role\":\"symbol\",\"title\":\"background(alignment:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"background\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/background(alignment:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(alignment:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onPlayPauseCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onPlayPauseCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPlayPauseCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPlayPauseCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onplaypausecommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A5StyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle style of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityScrollAction(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityScrollAction(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityScrollAction\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityScrollAction(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityscrollaction(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryLabel:)-cxx7\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"L\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryLabel:)-cxx7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-cxx7\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrop(of:isTargeted:perform:)-82gpe\":{\"role\":\"symbol\",\"title\":\"onDrop(of:isTargeted:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrop\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"UTType\",\"preciseIdentifier\":\"s:22UniformTypeIdentifiers6UTTypeV\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"isTargeted\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">?, \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGPoint\",\"preciseIdentifier\":\"c:@S@CGPoint\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrop(of:isTargeted:perform:)-82gpe\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-82gpe\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/layoutPriority(_:)\":{\"role\":\"symbol\",\"title\":\"layoutPriority(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"layoutPriority\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/layoutPriority(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/layoutpriority(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onDrag(_:)\":{\"role\":\"symbol\",\"title\":\"onDrag(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onDrag\"},{\"kind\":\"text\",\"text\":\"(() -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onDrag(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrag(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/contrast(_:)\":{\"role\":\"symbol\",\"title\":\"contrast(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"contrast\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/contrast(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contrast(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onShuffle(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffle\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A7ContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onCopyCommand(perform:)\":{\"role\":\"symbol\",\"title\":\"onCopyCommand(perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onCopyCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": (() -> [\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"])?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onCopyCommand(perform:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncopycommand(perform:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/alert(_:isPresented:presenting:actions:)-7je0d\":{\"role\":\"symbol\",\"title\":\"alert(_:isPresented:presenting:actions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"alert\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"isPresented\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"presenting\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"actions\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"A\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/alert(_:isPresented:presenting:actions:)-7je0d\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:)-7je0d\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/focusedValue(_:_:)\":{\"role\":\"symbol\",\"title\":\"focusedValue(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"focusedValue\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"WritableKeyPath\",\"preciseIdentifier\":\"s:s15WritableKeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"FocusedValues\",\"preciseIdentifier\":\"s:7SwiftUI13FocusedValuesV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\"?>, \"},{\"kind\":\"typeIdentifier\",\"text\":\"Value\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/focusedValue(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusedvalue(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/safeAreaInset(edge:alignment:spacing:content:)-9ojua\":{\"role\":\"symbol\",\"title\":\"safeAreaInset(edge:alignment:spacing:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"safeAreaInset\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"VerticalEdge\",\"preciseIdentifier\":\"s:7SwiftUI12VerticalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalAlignment\",\"preciseIdentifier\":\"s:7SwiftUI19HorizontalAlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"spacing\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/safeAreaInset(edge:alignment:spacing:content:)-9ojua\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/safeareainset(edge:alignment:spacing:content:)-9ojua\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/textCase(_:)\":{\"role\":\"symbol\",\"title\":\"textCase(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textCase\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Case\",\"preciseIdentifier\":\"s:7SwiftUI4TextV4CaseO\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textCase(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/textcase(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/badge(_:)-26gjx\":{\"role\":\"symbol\",\"title\":\"badge(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"badge\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/badge(_:)-26gjx\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-26gjx\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/refreshable(action:)\":{\"role\":\"symbol\",\"title\":\"refreshable(action:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"refreshable\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"action\"},{\"kind\":\"text\",\"text\":\": () \"},{\"kind\":\"keyword\",\"text\":\"async\"},{\"kind\":\"text\",\"text\":\" -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/refreshable(action:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/refreshable(action:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/overlay(alignment:content:)\":{\"role\":\"symbol\",\"title\":\"overlay(alignment:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"overlay\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"alignment\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Alignment\",\"preciseIdentifier\":\"s:7SwiftUI9AlignmentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"V\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/overlay(alignment:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(alignment:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/privacySensitive(_:)\":{\"role\":\"symbol\",\"title\":\"privacySensitive(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"privacySensitive\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/privacySensitive(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/privacysensitive(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAction(_:_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAction(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAction\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityActionKind\",\"preciseIdentifier\":\"s:7SwiftUI23AccessibilityActionKindV\"},{\"kind\":\"text\",\"text\":\", () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAction(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryID:entryLabel:)-2ng74\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-2ng74\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-2ng74\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchable(text:placement:prompt:suggestions:)-3zci7\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:suggestions:)-3zci7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:suggestions:)-3zci7\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/swipeActions(edge:allowsFullSwipe:content:)\":{\"role\":\"symbol\",\"title\":\"swipeActions(edge:allowsFullSwipe:content:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"swipeActions\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"edge\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"HorizontalEdge\",\"preciseIdentifier\":\"s:7SwiftUI14HorizontalEdgeO\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"allowsFullSwipe\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"content\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"T\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/swipeActions(edge:allowsFullSwipe:content:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/swipeactions(edge:allowsfullswipe:content:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityElement(children:)\":{\"role\":\"symbol\",\"title\":\"accessibilityElement(children:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityElement\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"children\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityChildBehavior\",\"preciseIdentifier\":\"s:7SwiftUI26AccessibilityChildBehaviorV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityElement(children:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityelement(children:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/keyboardShortcut(_:modifiers:localization:)\":{\"role\":\"symbol\",\"title\":\"keyboardShortcut(_:modifiers:localization:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"keyboardShortcut\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyEquivalent\",\"preciseIdentifier\":\"s:7SwiftUI13KeyEquivalentV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"modifiers\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"EventModifiers\",\"preciseIdentifier\":\"s:7SwiftUI14EventModifiersV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"localization\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyboardShortcut\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Localization\",\"preciseIdentifier\":\"s:7SwiftUI16KeyboardShortcutV12LocalizationV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/keyboardShortcut(_:modifiers:localization:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:modifiers:localization:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/clipShape(_:style:)\":{\"role\":\"symbol\",\"title\":\"clipShape(_:style:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"clipShape\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"style\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"FillStyle\",\"preciseIdentifier\":\"s:7SwiftUI9FillStyleV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/clipShape(_:style:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/clipshape(_:style:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityCustomContent(_:_:importance:)-72sim\":{\"role\":\"symbol\",\"title\":\"accessibilityCustomContent(_:_:importance:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityCustomContent\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"importance\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"AXCustomContent\",\"preciseIdentifier\":\"c:objc(cs)AXCustomContent\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Importance\",\"preciseIdentifier\":\"c:@E@AXCustomContentImportance\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityCustomContent(_:_:importance:)-72sim\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-72sim\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/padding(_:)-9obs7\":{\"role\":\"symbol\",\"title\":\"padding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"EdgeInsets\",\"preciseIdentifier\":\"s:7SwiftUI10EdgeInsetsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/padding(_:)-9obs7\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/padding(_:)-9obs7\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/groupBoxStyle(_:)\":{\"role\":\"symbol\",\"title\":\"groupBoxStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"groupBoxStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/groupBoxStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/groupboxstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"carouselAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CarouselAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt17CarouselAnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that overrides default carousel animation of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselanimation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/menuStyle(_:)\":{\"role\":\"symbol\",\"title\":\"menuStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"menuStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/menuStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/menustyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/textFieldStyle(_:)\":{\"role\":\"symbol\",\"title\":\"textFieldStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"textFieldStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/textFieldStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/textfieldstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/multilineTextAlignment(_:)\":{\"role\":\"symbol\",\"title\":\"multilineTextAlignment(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"multilineTextAlignment\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"TextAlignment\",\"preciseIdentifier\":\"s:7SwiftUI13TextAlignmentO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/multilineTextAlignment(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/multilinetextalignment(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/foregroundStyle(_:)\":{\"role\":\"symbol\",\"title\":\"foregroundStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"foregroundStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/foregroundStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/cornerRadius(_:antialiased:)\":{\"role\":\"symbol\",\"title\":\"cornerRadius(_:antialiased:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"cornerRadius\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"antialiased\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/cornerRadius(_:antialiased:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/cornerradius(_:antialiased:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/searchable(text:placement:prompt:suggestions:)-5taln\":{\"role\":\"symbol\",\"title\":\"searchable(text:placement:prompt:suggestions:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"searchable\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"text\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Binding\",\"preciseIdentifier\":\"s:7SwiftUI7BindingV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"placement\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"SearchFieldPlacement\",\"preciseIdentifier\":\"s:7SwiftUI20SearchFieldPlacementV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"prompt\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"LocalizedStringKey\",\"preciseIdentifier\":\"s:7SwiftUI18LocalizedStringKeyV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"suggestions\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/searchable(text:placement:prompt:suggestions:)-5taln\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:suggestions:)-5taln\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(hidden:)\":{\"role\":\"symbol\",\"title\":\"accessibility(hidden:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"hidden\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(hidden:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(hidden:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/carouselTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"carouselTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"carouselTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accepts events of direction to perform programmatic sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/carouselTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouseltrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/drawingGroup(opaque:colorMode:)\":{\"role\":\"symbol\",\"title\":\"drawingGroup(opaque:colorMode:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"drawingGroup\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"opaque\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"colorMode\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"ColorRenderingMode\",\"preciseIdentifier\":\"s:7SwiftUI18ColorRenderingModeO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/drawingGroup(opaque:colorMode:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/drawinggroup(opaque:colormode:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/toggleStyle(_:)\":{\"role\":\"symbol\",\"title\":\"toggleStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"toggleStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/toggleStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/togglestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationViewStyle(_:)\":{\"role\":\"symbol\",\"title\":\"navigationViewStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationViewStyle\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"S\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationViewStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationviewstyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/listItemTint(_:)-6zn9q\":{\"role\":\"symbol\",\"title\":\"listItemTint(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"listItemTint\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Color\",\"preciseIdentifier\":\"s:7SwiftUI5ColorV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/listItemTint(_:)-6zn9q\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/listitemtint(_:)-6zn9q\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/navigationTitle(_:)-7twkm\":{\"role\":\"symbol\",\"title\":\"navigationTitle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"navigationTitle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Text\",\"preciseIdentifier\":\"s:7SwiftUI4TextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/navigationTitle(_:)-7twkm\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7twkm\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityAddTraits(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityAddTraits(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityAddTraits\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityTraits\",\"preciseIdentifier\":\"s:7SwiftUI19AccessibilityTraitsV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityAddTraits(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaddtraits(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onPasteCommand(of:perform:)-4k6ie\":{\"role\":\"symbol\",\"title\":\"onPasteCommand(of:perform:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onPasteCommand\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"of\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": ([\"},{\"kind\":\"typeIdentifier\",\"text\":\"NSItemProvider\",\"preciseIdentifier\":\"c:objc(cs)NSItemProvider\"},{\"kind\":\"text\",\"text\":\"]) -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onPasteCommand(of:perform:)-4k6ie\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:perform:)-4k6ie\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/lineSpacing(_:)\":{\"role\":\"symbol\",\"title\":\"lineSpacing(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"lineSpacing\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/lineSpacing(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/linespacing(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\":{\"role\":\"symbol\",\"title\":\"onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onLongPressGesture\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"minimumDuration\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"perform\"},{\"kind\":\"text\",\"text\":\": () -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"onPressingChanged\"},{\"kind\":\"text\",\"text\":\": ((\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\")?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:perform:onpressingchanged:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityRotor(_:entries:entryID:entryLabel:)-1o7jk\":{\"role\":\"symbol\",\"title\":\"accessibilityRotor(_:entries:entryID:entryLabel:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityRotor\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilitySystemRotor\",\"preciseIdentifier\":\"s:7SwiftUI24AccessibilitySystemRotorV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"entries\"},{\"kind\":\"text\",\"text\":\": [\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\"], \"},{\"kind\":\"externalParam\",\"text\":\"entryID\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"ID\"},{\"kind\":\"text\",\"text\":\">, \"},{\"kind\":\"externalParam\",\"text\":\"entryLabel\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"KeyPath\",\"preciseIdentifier\":\"s:s7KeyPathC\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"EntryModel\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"String\",\"preciseIdentifier\":\"s:SS\"},{\"kind\":\"text\",\"text\":\">) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityRotor(_:entries:entryID:entryLabel:)-1o7jk\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-1o7jk\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibility(activationPoint:)-9o1ut\":{\"role\":\"symbol\",\"title\":\"accessibility(activationPoint:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibility\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"activationPoint\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"UnitPoint\",\"preciseIdentifier\":\"s:7SwiftUI9UnitPointV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibility(activationPoint:)-9o1ut\",\"kind\":\"symbol\",\"type\":\"topic\",\"deprecated\":true,\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(activationpoint:)-9o1ut\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/accessibilityHidden(_:)\":{\"role\":\"symbol\",\"title\":\"accessibilityHidden(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"accessibilityHidden\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"ModifiedContent\",\"preciseIdentifier\":\"s:7SwiftUI15ModifiedContentV\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"AccessibilityAttachmentModifier\",\"preciseIdentifier\":\"s:7SwiftUI31AccessibilityAttachmentModifierV\"},{\"kind\":\"text\",\"text\":\">\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/accessibilityHidden(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhidden(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/padding(_:_:)\":{\"role\":\"symbol\",\"title\":\"padding(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"padding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Edge\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Set\",\"preciseIdentifier\":\"s:7SwiftUI4EdgeO3SetV\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\"?) -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/padding(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/padding(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack/zindex(_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"zIndex\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"externalParam\",\"text\":\"_\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"internalParam\",\"text\":\"value\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"},{\"kind\":\"text\",\"text\":\"\\n\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\\/zindex(_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/zIndex(_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"View.zIndex(_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"symbol\",\"title\":\"zIndex(_:)\",\"roleHeading\":\"Instance Method\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"zIndex\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"symbolKind\":\"method\",\"externalID\":\"s:7SwiftUI4ViewPAAE6zIndexyQrSdF::SYNTHESIZED::s:9ShuffleIt0A5StackV\",\"extendedModule\":\"SwiftUI\",\"platforms\":[{\"beta\":false,\"unavailable\":false,\"name\":\"iOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"macOS\",\"introducedAt\":\"10.15\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"tvOS\",\"introducedAt\":\"13.0\",\"deprecated\":false},{\"beta\":false,\"unavailable\":false,\"name\":\"watchOS\",\"introducedAt\":\"6.0\",\"deprecated\":false}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/zIndex(_:)\":{\"role\":\"symbol\",\"title\":\"zIndex(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"zIndex\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Double\",\"preciseIdentifier\":\"s:Sd\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/zIndex(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/zindex(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestack.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"ShuffleStack\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"title\":\"ShuffleStack\",\"roleHeading\":\"Structure\",\"role\":\"symbol\",\"symbolKind\":\"struct\",\"externalID\":\"s:9ShuffleIt0A5StackV\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}]},\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"interfaceLanguage\":\"swift\"},\"relationshipsSections\":[{\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/7SwiftUI4ViewP\"],\"kind\":\"relationships\",\"title\":\"Conforms To\",\"type\":\"conformsTo\"}],\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Initializers\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/init(_:initialIndex:stackContent:)-4x5f3\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/init(_:initialIndex:stackContent:)-8ktnr\"]},{\"title\":\"Instance Properties\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/body\"]},{\"title\":\"Default Implementations\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\"],\"generated\":true}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestack\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"kind\":\"symbol\",\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"genericParameter\",\"text\":\"StackContent\"},{\"kind\":\"text\",\"text\":\"> \"},{\"kind\":\"keyword\",\"text\":\"where\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"RandomAccessCollection\",\"preciseIdentifier\":\"s:Sk\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"StackContent\"},{\"kind\":\"text\",\"text\":\" : \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]},{\"kind\":\"content\",\"content\":[{\"anchor\":\"Overview\",\"level\":2,\"type\":\"heading\",\"text\":\"Overview\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" is built on top of \"},{\"type\":\"codeVoice\",\"code\":\"ZStack\"},{\"type\":\"text\",\"text\":\" but it only renders three child views which are visible on the screen and switches data to display based on the current index. In case the data passed into the stack view is empty, there will be empty view on the screen.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following example provides the simple usage of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" which creates a stack of color cards with default shuffle style and animation.\"}]},{\"type\":\"codeListing\",\"syntax\":\"swift\",\"code\":[\"struct ContentView: View {\",\"    let colors: [Color] = [.blue, .brown, .black, .cyan, .green, .indigo, .pink, .purple, .red, .orange, .yellow]\",\"    var body: some View {\",\"        ShuffleStack(\",\"            colors,\",\"            initialIndex: 0\",\"        ) { color in\",\"            color\",\"                .frame(height: 200)\",\"                .cornerRadius(16)\",\"        }\",\"    }\",\"}\"]},{\"anchor\":\"Customizing-default-behaviours\",\"level\":2,\"type\":\"heading\",\"text\":\"Customizing default behaviours\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" comes with various types of modifiers to override default behaviour of the stack view so that it is easy to tailor to view with custom values such as animation, style, offset, padding and scale factor.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following table shows a list of available modifiers that customizes the view.\"}]},{\"type\":\"table\",\"rows\":[[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Modifier\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Description\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleAnimation(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle animation of the shuffle stack view.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleStyle(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle style of the shuffle stack view.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleOffset(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that sets value that is used to shift the offset of the upcoming and previous content views behind the view of the current index.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shufflePadding(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the shuffle stack view.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleScale(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDisabled(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\"}]}]]],\"header\":\"row\"},{\"anchor\":\"Observing-shuffle-events-and-swiping-translation\",\"level\":2,\"type\":\"heading\",\"text\":\"Observing shuffle events and swiping translation\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" provides handy modifiers that listens shuffle events and swiping translation to perform a particular action based on those values after shuffling succeeds or while swiping stack views.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"The following modifiers helps to observe shuffling events and translation changes.\"}]},{\"type\":\"table\",\"rows\":[[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Modifier\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Description\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffle(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle stack view.\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleTranslation(_:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while swiping content views.\"}]}]]],\"header\":\"row\"},{\"anchor\":\"Triggering-shuffling-programmatically\",\"level\":2,\"type\":\"heading\",\"text\":\"Triggering shuffling programmatically\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" also allows programmatic shuffling by accpecting a series of events from the upstream publisher. Whenever the publisher fires an event, it blocks user interaction on the view and performs shuffling action.\"}]},{\"type\":\"table\",\"rows\":[[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Modifier\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"Description\"}]}]],[[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"reference\",\"isActive\":true,\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleTrigger(on:)\"}]}],[{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"A modifier that accpets events of direction to perform programmatic shuffling.\"}]}]]],\"header\":\"row\"}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext\":{\"role\":\"symbol\",\"title\":\"ShuffleContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/body\":{\"role\":\"symbol\",\"title\":\"body\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"var\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"body\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/body\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/body\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shufflePadding(_:)\":{\"role\":\"symbol\",\"title\":\"shufflePadding(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shufflePadding\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets horizontal padding to the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shufflePadding(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflepadding(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleOffset(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleOffset(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleOffset\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets value that is used to shift the offset of the upcoming and previous content views behind the view of the current index.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleOffset(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffleoffset(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleAnimation(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleAnimation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleAnimation\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleAnimation\",\"preciseIdentifier\":\"s:9ShuffleIt0A9AnimationO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle animation of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleAnimation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffleanimation(_:)\"},\"doc://ShuffleIt/7SwiftUI4ViewP\":{\"type\":\"unresolvable\",\"title\":\"SwiftUI.View\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/7SwiftUI4ViewP\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleScale(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleScale(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleScale\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that sets scale factor to shrink the size of the upcoming and previous content views of stack.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleScale(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflescale(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleStyle(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleStyle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleStyle\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleStyle\",\"preciseIdentifier\":\"s:9ShuffleIt0A5StyleO\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that overrides default shuffle style of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleStyle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflestyle(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onShuffleTranslation(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffleTranslation(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffleTranslation\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens translation changes while swiping content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffleTranslation(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffletranslation(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/init(_:initialIndex:stackContent:)-8ktnr\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"StackContent\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:stackContent:)\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"stackContent\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"StackContent\"},{\"kind\":\"text\",\"text\":\")\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/init(_:initialIndex:stackContent:)-8ktnr\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/init(_:initialindex:stackcontent:)-8ktnr\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/init(_:initialIndex:stackContent:)-4x5f3\":{\"conformance\":{\"constraints\":[{\"type\":\"codeVoice\",\"code\":\"Data\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"RandomAccessCollection\"},{\"type\":\"text\",\"text\":\" and \"},{\"type\":\"codeVoice\",\"code\":\"StackContent\"},{\"type\":\"text\",\"text\":\" conforms to \"},{\"type\":\"codeVoice\",\"code\":\"View\"},{\"type\":\"text\",\"text\":\".\"}],\"availabilityPrefix\":[{\"type\":\"text\",\"text\":\"Available when\"}],\"conformancePrefix\":[{\"type\":\"text\",\"text\":\"Conforms when\"}]},\"role\":\"symbol\",\"title\":\"init(_:initialIndex:stackContent:)\",\"fragments\":[{\"kind\":\"identifier\",\"text\":\"init\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"externalParam\",\"text\":\"initialIndex\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Index\"},{\"kind\":\"text\",\"text\":\"?, \"},{\"kind\":\"externalParam\",\"text\":\"stackContent\"},{\"kind\":\"text\",\"text\":\": (\"},{\"kind\":\"typeIdentifier\",\"text\":\"Data\"},{\"kind\":\"text\",\"text\":\".\"},{\"kind\":\"typeIdentifier\",\"text\":\"Element\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"CGFloat\",\"preciseIdentifier\":\"s:12CoreGraphics7CGFloatV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"StackContent\"},{\"kind\":\"text\",\"text\":\")\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An initializer that returns an instance of \"},{\"type\":\"codeVoice\",\"code\":\"ShuffleStack\"},{\"type\":\"text\",\"text\":\" and exposes translation value to child content through view builder.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/init(_:initialIndex:stackContent:)-4x5f3\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/init(_:initialindex:stackcontent:)-4x5f3\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleTrigger(on:)\":{\"role\":\"symbol\",\"title\":\"shuffleTrigger(on:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleTrigger\"},{\"kind\":\"text\",\"text\":\"<\"},{\"kind\":\"genericParameter\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\">(\"},{\"kind\":\"externalParam\",\"text\":\"on\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"P\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that accpets events of direction to perform programmatic shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleTrigger(on:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffletrigger(on:)\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/shuffleDisabled(_:)\":{\"role\":\"symbol\",\"title\":\"shuffleDisabled(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"shuffleDisabled\"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifer that disables user interaction to shuffle content views.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/shuffleDisabled(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledisabled(_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/View-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"View Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/View-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack/onShuffle(_:)\":{\"role\":\"symbol\",\"title\":\"onShuffle(_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"onShuffle\"},{\"kind\":\"text\",\"text\":\"((\"},{\"kind\":\"typeIdentifier\",\"text\":\"ShuffleContext\",\"preciseIdentifier\":\"s:9ShuffleIt0A7ContextV\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Void\",\"preciseIdentifier\":\"s:s4Voida\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"keyword\",\"text\":\"some\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"typeIdentifier\",\"text\":\"View\",\"preciseIdentifier\":\"s:7SwiftUI4ViewP\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A modifier that listens shuffling events occurring on the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\\/onShuffle(_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffle(_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestyle/!=(_:_:).json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"internalParam\",\"text\":\"lhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"internalParam\",\"text\":\"rhs\"},{\"kind\":\"text\",\"text\":\": \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestyle\\/!=(_:_:)\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/!=(_:_:)\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"Inherited from \"},{\"type\":\"codeVoice\",\"code\":\"Equatable.!=(_:_:)\"},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"roleHeading\":\"Operator\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"symbolKind\":\"op\",\"externalID\":\"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:9ShuffleIt0A5StyleO\",\"extendedModule\":\"Swift\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/Equatable-Implementations\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/equatable-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/!=(_:_:)\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestyle/equatable-implementations.json",
    "content": "{\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestyle\\/equatable-implementations\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/Equatable-Implementations\",\"interfaceLanguage\":\"swift\"},\"topicSections\":[{\"title\":\"Operators\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/!=(_:_:)\"],\"generated\":true}],\"kind\":\"article\",\"metadata\":{\"modules\":[{\"name\":\"ShuffleIt\"}],\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\"},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle/!=(_:_:)\":{\"role\":\"symbol\",\"title\":\"!=(_:_:)\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"static\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"keyword\",\"text\":\"func\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"!=\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"text\",\"text\":\"(\"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\", \"},{\"kind\":\"typeIdentifier\",\"text\":\"Self\"},{\"kind\":\"text\",\"text\":\") -> \"},{\"kind\":\"typeIdentifier\",\"text\":\"Bool\",\"preciseIdentifier\":\"s:Sb\"}],\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/!=(_:_:)\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/!=(_:_:)\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestyle/rotatein.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotateIn\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestyle\\/rotatein\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/rotateIn\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle style which rotates and scales into center while shuffling.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotateIn\"}],\"title\":\"ShuffleStyle.rotateIn\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A5StyleO8rotateInyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle/rotateIn\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle.rotateIn\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotateIn\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle style which rotates and scales into center while shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/rotateIn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/rotatein\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestyle/rotateout.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotateOut\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestyle\\/rotateout\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/rotateOut\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle style which rotates and scales to outside while shuffling.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotateOut\"}],\"title\":\"ShuffleStyle.rotateOut\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A5StyleO9rotateOutyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle/rotateOut\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle.rotateOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotateOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle style which rotates and scales to outside while shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/rotateOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/rotateout\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestyle/slide.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"slide\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestyle\\/slide\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/slide\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle style which just slides content views without rotating.\"}],\"kind\":\"symbol\",\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"slide\"}],\"title\":\"ShuffleStyle.slide\",\"roleHeading\":\"Case\",\"role\":\"symbol\",\"symbolKind\":\"case\",\"externalID\":\"s:9ShuffleIt0A5StyleO5slideyA2CmF\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\"]]},\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle/slide\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle.slide\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"slide\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle style which just slides content views without rotating.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/slide\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/slide\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit/shufflestyle.json",
    "content": "{\"seeAlsoSections\":[{\"title\":\"ShuffleStack\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\"],\"generated\":true}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"metadata\":{\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"title\":\"ShuffleStyle\",\"roleHeading\":\"Enumeration\",\"role\":\"symbol\",\"symbolKind\":\"enum\",\"externalID\":\"s:9ShuffleIt0A5StyleO\",\"modules\":[{\"name\":\"ShuffleIt\"}],\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}]},\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"sections\":[],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"interfaceLanguage\":\"swift\"},\"relationshipsSections\":[{\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/SQ\",\"doc:\\/\\/ShuffleIt\\/SH\"],\"kind\":\"relationships\",\"title\":\"Conforms To\",\"type\":\"conformsTo\"}],\"hierarchy\":{\"paths\":[[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\"]]},\"topicSections\":[{\"title\":\"Enumeration Cases\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/rotateIn\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/rotateOut\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/slide\"]},{\"title\":\"Default Implementations\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/Equatable-Implementations\"],\"generated\":true}],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\\/shufflestyle\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"kind\":\"symbol\",\"primaryContentSections\":[{\"kind\":\"declarations\",\"declarations\":[{\"tokens\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"languages\":[\"swift\"],\"platforms\":[\"macOS\"]}]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle/rotateIn\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle.rotateIn\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotateIn\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle style which rotates and scales into center while shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/rotateIn\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/rotatein\"},\"doc://ShuffleIt/SH\":{\"type\":\"unresolvable\",\"title\":\"Swift.Hashable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SH\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle/rotateOut\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle.rotateOut\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"rotateOut\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle style which rotates and scales to outside while shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/rotateOut\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/rotateout\"},\"doc://ShuffleIt/SQ\":{\"type\":\"unresolvable\",\"title\":\"Swift.Equatable\",\"identifier\":\"doc:\\/\\/ShuffleIt\\/SQ\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle/slide\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle.slide\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"case\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"slide\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A shuffle style which just slides content views without rotating.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/slide\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/slide\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext\":{\"role\":\"symbol\",\"title\":\"ShuffleContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle/Equatable-Implementations\":{\"role\":\"collectionGroup\",\"title\":\"Equatable Implementations\",\"abstract\":[],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\\/Equatable-Implementations\",\"kind\":\"article\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/equatable-implementations\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"}}}"
  },
  {
    "path": "docs/data/documentation/shuffleit.json",
    "content": "{\"primaryContentSections\":[{\"kind\":\"content\",\"content\":[{\"anchor\":\"Overview\",\"level\":2,\"type\":\"heading\",\"text\":\"Overview\"},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"ShuffleIt\"}]},{\"type\":\"text\",\"text\":\" is a user interface library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\" which delivers a collection of customizable stack views with a wide range of elegant shuffling, sliding and swiping behaviours.\"}]},{\"type\":\"paragraph\",\"inlineContent\":[{\"type\":\"image\",\"identifier\":\"ShuffleIt.png\"}]}]}],\"schemaVersion\":{\"major\":0,\"minor\":3,\"patch\":0},\"sections\":[],\"variants\":[{\"paths\":[\"\\/documentation\\/shuffleit\"],\"traits\":[{\"interfaceLanguage\":\"swift\"}]}],\"identifier\":{\"url\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"interfaceLanguage\":\"swift\"},\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"kind\":\"symbol\",\"metadata\":{\"roleHeading\":\"Framework\",\"externalID\":\"ShuffleIt\",\"title\":\"ShuffleIt\",\"symbolKind\":\"module\",\"role\":\"collection\",\"modules\":[{\"name\":\"ShuffleIt\"}]},\"hierarchy\":{\"paths\":[[]]},\"topicSections\":[{\"title\":\"CarouselStack\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\"]},{\"title\":\"ShuffleDeck\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\"]},{\"title\":\"ShuffleStack\",\"identifiers\":[\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\"]}],\"references\":{\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStyle\":{\"role\":\"symbol\",\"title\":\"CarouselStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel style that is used to change sliding behaviour of the carousel stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffleanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck style that is used to change shuffling behaviour of the shuffle deck view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselContext\":{\"role\":\"symbol\",\"title\":\"CarouselContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about sliding.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckContext\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselAnimation\":{\"role\":\"symbol\",\"title\":\"CarouselAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of carousel animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckAnimation\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckAnimation\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck animation that maps to \"},{\"type\":\"codeVoice\",\"code\":\"SwiftUI\"},{\"type\":\"text\",\"text\":\" animation.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckAnimation\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckAnimation\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeckDirection\":{\"role\":\"symbol\",\"title\":\"ShuffleDeckDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle deck direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeckDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeckDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselStack\":{\"role\":\"symbol\",\"title\":\"CarouselStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view which provides carousel-style sliding behaviour to slide contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouselstack\"},\"doc://ShuffleIt/documentation/ShuffleIt\":{\"role\":\"collection\",\"title\":\"ShuffleIt\",\"abstract\":[{\"type\":\"text\",\"text\":\"A UI element library for \"},{\"type\":\"strong\",\"inlineContent\":[{\"type\":\"text\",\"text\":\"SwiftUI\"}]},{\"type\":\"text\",\"text\":\".\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\",\"kind\":\"symbol\",\"type\":\"topic\",\"url\":\"\\/documentation\\/shuffleit\"},\"doc://ShuffleIt/documentation/ShuffleIt/CarouselDirection\":{\"role\":\"symbol\",\"title\":\"CarouselDirection\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeratoin of carousel direction.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/CarouselDirection\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"CarouselDirection\"}],\"url\":\"\\/documentation\\/shuffleit\\/carouseldirection\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStack\":{\"role\":\"symbol\",\"title\":\"ShuffleStack\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view that provides shuffling behaviour to swipe contents to left and right.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStack\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStack\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestack\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleContext\":{\"role\":\"symbol\",\"title\":\"ShuffleContext\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A structure that provides information about shuffling.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleContext\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleContext\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflecontext\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleDeck\":{\"role\":\"symbol\",\"title\":\"ShuffleDeck\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"struct\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"A stack view providing shuffling behaviour to shuffle to left and right like a deck of cards.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleDeck\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleDeck\"}],\"url\":\"\\/documentation\\/shuffleit\\/shuffledeck\"},\"doc://ShuffleIt/documentation/ShuffleIt/ShuffleStyle\":{\"role\":\"symbol\",\"title\":\"ShuffleStyle\",\"fragments\":[{\"kind\":\"keyword\",\"text\":\"enum\"},{\"kind\":\"text\",\"text\":\" \"},{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"abstract\":[{\"type\":\"text\",\"text\":\"An enumeration of shuffle style that is used to change shuffling behaviour of the shuffle stack view.\"}],\"identifier\":\"doc:\\/\\/ShuffleIt\\/documentation\\/ShuffleIt\\/ShuffleStyle\",\"kind\":\"symbol\",\"type\":\"topic\",\"navigatorTitle\":[{\"kind\":\"identifier\",\"text\":\"ShuffleStyle\"}],\"url\":\"\\/documentation\\/shuffleit\\/shufflestyle\"},\"ShuffleIt.png\":{\"alt\":\"“logo”\",\"type\":\"image\",\"identifier\":\"ShuffleIt.png\",\"variants\":[{\"url\":\"\\/images\\/ShuffleIt.png\",\"traits\":[\"1x\",\"light\"]}]}}}"
  },
  {
    "path": "docs/documentation/shuffleit/carouselanimation/!=(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselanimation/easein/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselanimation/easeinout/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselanimation/easeout/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselanimation/equatable-implementations/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselanimation/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselanimation/linear/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselcontext/direction/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselcontext/index/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselcontext/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselcontext/previousindex/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouseldirection/!=(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouseldirection/equatable-implementations/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouseldirection/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouseldirection/left/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouseldirection/right/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accentcolor(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibility(activationpoint:)-4y62/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibility(activationpoint:)-695kx/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibility(addtraits:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibility(hidden:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibility(hint:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibility(identifier:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibility(inputlabels:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibility(label:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibility(removetraits:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibility(selectionidentifier:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibility(sortpriority:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibility(value:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityaction(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityaction(action:label:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityaction(named:_:)-3lqsr/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityaction(named:_:)-69c69/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityaction(named:_:)-rgyh/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityactivationpoint(_:)-5bbv5/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityactivationpoint(_:)-8dokx/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityaddtraits(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityadjustableaction(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitychartdescriptor(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitychildren(children:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-1586n/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-1u9b5/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-3t2kq/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-46frq/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-47g1f/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-5xqqc/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-8rfm7/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitycustomcontent(_:_:importance:)-9cou3/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityelement(children:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityfocused(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityfocused(_:equals:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityheading(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityhidden(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityhint(_:)-2j7te/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityhint(_:)-37ope/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityhint(_:)-7yi0h/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityidentifier(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityignoresinvertcolors(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityinputlabels(_:)-3feba/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityinputlabels(_:)-3p703/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityinputlabels(_:)-95tn0/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitylabel(_:)-2tohn/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitylabel(_:)-755g2/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitylabel(_:)-8bin6/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitylabeledpair(role:id:in:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitylinkedgroup(id:in:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityremovetraits(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrepresentation(representation:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrespondstouserinteraction(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:)-1c2au/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:)-4pacb/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:)-4w7j0/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:)-825mo/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entryid:entrylabel:)-1w44t/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entryid:entrylabel:)-4vvcg/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entryid:entrylabel:)-5gz2c/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entryid:entrylabel:)-utor/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entrylabel:)-25t4x/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entrylabel:)-3evdd/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entrylabel:)-4e9vu/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:entries:entrylabel:)-59b0s/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:textranges:)-25npe/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:textranges:)-3d2p8/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:textranges:)-4jxor/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotor(_:textranges:)-9sgga/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityrotorentry(id:in:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityscrollaction(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityshowslargecontentviewer()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityshowslargecontentviewer(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitysortpriority(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilitytextcontenttype(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityvalue(_:)-5fw6g/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityvalue(_:)-5y8gy/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/accessibilityvalue(_:)-8ihs6/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(_:ispresented:actions:)-1q2gb/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(_:ispresented:actions:)-76wk8/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(_:ispresented:actions:)-7wghk/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(_:ispresented:actions:message:)-5s7hn/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(_:ispresented:actions:message:)-9a4q7/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(_:ispresented:actions:message:)-f5o2/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(_:ispresented:presenting:actions:)-4edmo/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(_:ispresented:presenting:actions:)-4uw7u/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(_:ispresented:presenting:actions:)-8axxo/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(_:ispresented:presenting:actions:message:)-226oe/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(_:ispresented:presenting:actions:message:)-4tvm3/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(_:ispresented:presenting:actions:message:)-7b0gl/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(ispresented:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(ispresented:error:actions:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(ispresented:error:actions:message:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alert(item:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alignmentguide(_:computevalue:)-4r6p/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/alignmentguide(_:computevalue:)-8e6vc/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/allowshittesting(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/allowstightening(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/anchorpreference(key:value:transform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/animation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/animation(_:value:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/aspectratio(_:contentmode:)-72t0z/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/aspectratio(_:contentmode:)-8gir9/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/background(_:alignment:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/background(_:ignoressafeareaedges:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/background(_:in:fillstyle:)-4hb5h/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/background(_:in:fillstyle:)-5xuxn/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/background(alignment:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/background(ignoressafeareaedges:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/background(in:fillstyle:)-2lcq8/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/background(in:fillstyle:)-6gtsb/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/backgroundpreferencevalue(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/badge(_:)-10ceg/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/badge(_:)-6ah2/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/badge(_:)-7kz0m/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/badge(_:)-8lj4d/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/blendmode(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/blur(radius:opaque:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/body/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/border(_:width:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/brightness(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/buttonbordershape(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/buttonstyle(_:)-6awhx/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/buttonstyle(_:)-8ljh4/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/carouselanimation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/carouseldisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/carouselpadding(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/carouselscale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/carouselspacing(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/carouselstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/carouseltrigger(on:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/clipped(antialiased:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/clipshape(_:style:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/colorinvert()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/colormultiply(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/colorscheme(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/compositinggroup()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:actions:)-1uzrt/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:actions:)-5d29j/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:actions:)-718e5/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-65zoh/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-951t3/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9yu7k/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1ji6h/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-4fi9z/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-51cln/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2m470/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-9o8j/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-g5bx/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/containershape(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/contentshape(_:_:eofill:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/contentshape(_:eofill:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/contextmenu(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/contextmenu(menuitems:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/contrast(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/controlgroupstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/controlsize(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/coordinatespace(name:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/cornerradius(_:antialiased:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/datepickerstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/defaultappstorage(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/deletedisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/disableautocorrection(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/disabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/drawinggroup(opaque:colormode:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/dynamictypesize(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/edgesignoringsafearea(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/environment(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/environmentobject(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/exportsitemproviders(_:onexport:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/exportsitemproviders(_:onexport:onedit:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-2xo1j/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-5w70m/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/fileexporter(ispresented:documents:contenttype:oncompletion:)-9dfyf/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/fileexporter(ispresented:documents:contenttype:oncompletion:)-vkdb/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/fileimporter(ispresented:allowedcontenttypes:oncompletion:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/filemover(ispresented:file:oncompletion:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/filemover(ispresented:files:oncompletion:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/fixedsize()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/fixedsize(horizontal:vertical:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/flipsforrighttoleftlayoutdirection(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/focusable(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/focusable(_:onfocuschange:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/focused(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/focused(_:equals:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/focusedscenevalue(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/focusedvalue(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/focusscope(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/font(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/foregroundcolor(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/foregroundstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/foregroundstyle(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/foregroundstyle(_:_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/frame()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/frame(width:height:alignment:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/gesture(_:including:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/grayscale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/groupboxstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/handlesexternalevents(preferring:allowing:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/headerprominence(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/help(_:)-1f2w4/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/help(_:)-1g6m4/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/help(_:)-9mw1c/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/hidden()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/highprioritygesture(_:including:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/horizontalradiogrouplayout()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/huerotation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/id(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/ignoressafearea(_:edges:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/imagescale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/importsitemproviders(_:onimport:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/init(_:initialindex:content:)-70npt/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/init(_:initialindex:content:)-7edjn/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/interactivedismissdisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/itemprovider(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/keyboardshortcut(_:)-2vfia/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/keyboardshortcut(_:)-6bxt2/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/keyboardshortcut(_:modifiers:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/keyboardshortcut(_:modifiers:localization:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/labelshidden()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/labelstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/layoutpriority(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/linelimit(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/linespacing(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/listitemtint(_:)-9yojl/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/listitemtint(_:)-w4ry/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/listrowbackground(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/listrowinsets(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/liststyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/luminancetoalpha()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/mask(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/mask(alignment:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/matchedgeometryeffect(id:in:properties:anchor:issource:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/menubuttonstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/menuindicator(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/menustyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/minimumscalefactor(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/modifier(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/monospaceddigit()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/movedisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/multilinetextalignment(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/navigationsubtitle(_:)-10991/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/navigationsubtitle(_:)-7xq4j/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/navigationsubtitle(_:)-8lv93/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/navigationtitle(_:)-544cp/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/navigationtitle(_:)-5xkgg/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/navigationtitle(_:)-7209e/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/navigationtitle(_:)-8mmxy/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/navigationviewstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/offset(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/offset(x:y:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onappear(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/oncarousel(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/oncarouseltranslation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onchange(of:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/oncommand(_:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/oncontinueuseractivity(_:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/oncopycommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/oncutcommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/ondeletecommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/ondisappear(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/ondrag(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/ondrag(_:preview:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/ondrop(of:delegate:)-2phlc/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/ondrop(of:delegate:)-5rv2/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/ondrop(of:istargeted:perform:)-1ne0m/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/ondrop(of:istargeted:perform:)-2dbsa/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/ondrop(of:istargeted:perform:)-3z0u6/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/ondrop(of:istargeted:perform:)-7mvpm/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onexitcommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onhover(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onlongpressgesture(minimumduration:perform:onpressingchanged:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onlongpressgesture(minimumduration:pressing:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onmovecommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onopenurl(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onpastecommand(of:perform:)-27ier/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onpastecommand(of:perform:)-2cj5d/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onpastecommand(of:validator:perform:)-18sg7/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onpastecommand(of:validator:perform:)-1ws2h/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onplaypausecommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onpreferencechange(_:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onreceive(_:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onshuffle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onshuffledeck(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onshuffledecktranslation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onshuffletranslation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/onsubmit(of:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/ontapgesture(count:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/opacity(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/overlay(_:alignment:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/overlay(_:ignoressafeareaedges:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/overlay(_:in:fillstyle:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/overlay(alignment:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/overlaypreferencevalue(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/padding(_:)-254fg/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/padding(_:)-h9m6/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/padding(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/pagecommand(value:in:step:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/pickerstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/popover(ispresented:attachmentanchor:arrowedge:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/popover(item:attachmentanchor:arrowedge:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/position(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/position(x:y:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/preference(key:value:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/preferredcolorscheme(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/prefersdefaultfocus(_:in:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/presentedwindowstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/presentedwindowtoolbarstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/previewcontext(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/previewdevice(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/previewdisplayname(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/previewinterfaceorientation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/previewlayout(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/privacysensitive(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/progressviewstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/projectioneffect(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/redacted(reason:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/refreshable(action:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/rotation3deffect(_:axis:anchor:anchorz:perspective:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/rotationeffect(_:anchor:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/safeareainset(edge:alignment:spacing:content:)-5p4xh/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/safeareainset(edge:alignment:spacing:content:)-8nq8e/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/saturation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/scaledtofill()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/scaledtofit()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/scaleeffect(_:anchor:)-7oq71/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/scaleeffect(_:anchor:)-9chpl/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/scaleeffect(x:y:anchor:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/scenepadding(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/searchable(text:placement:prompt:)-31g2u/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/searchable(text:placement:prompt:)-5dpdp/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/searchable(text:placement:prompt:)-9859/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/searchable(text:placement:prompt:suggestions:)-2uz54/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/searchable(text:placement:prompt:suggestions:)-7bvn6/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/searchable(text:placement:prompt:suggestions:)-8bmqj/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/searchcompletion(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/shadow(color:radius:x:y:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/sheet(ispresented:ondismiss:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/sheet(item:ondismiss:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/shuffleanimation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/shuffledeckanimation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/shuffledeckdisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/shuffledeckscale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/shuffledeckstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/shuffledecktrigger(on:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/shuffledisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/shuffleoffset(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/shufflepadding(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/shufflescale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/shufflestyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/shuffletrigger(on:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/simultaneousgesture(_:including:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/speechadjustedpitch(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/speechalwaysincludespunctuation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/speechannouncementsqueued(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/speechspellsoutcharacters(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/submitlabel(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/submitscope(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/swipeactions(edge:allowsfullswipe:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/symbolrenderingmode(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/symbolvariant(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/tabitem(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/tablestyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/tabviewstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/tag(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/task(id:priority:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/task(priority:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/textcase(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/textcontenttype(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/textfieldstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/textselection(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/tint(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/togglestyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/toolbar(content:)-6zmlc/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/toolbar(content:)-7j09e/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/toolbar(id:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/touchbar(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/touchbar(content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/touchbarcustomizationlabel(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/touchbaritempresence(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/touchbaritemprincipal(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/transaction(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/transformanchorpreference(key:value:transform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/transformeffect(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/transformenvironment(_:transform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/transformpreference(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/transition(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/truncationmode(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/unredacted()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/useractivity(_:element:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/useractivity(_:isactive:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/view-implementations/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstack/zindex(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstyle/!=(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstyle/equatable-implementations/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstyle/finitescroll/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstyle/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/carouselstyle/infinitescroll/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffleanimation/!=(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffleanimation/easein/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffleanimation/easeinout/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffleanimation/easeout/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffleanimation/equatable-implementations/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffleanimation/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffleanimation/linear/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflecontext/direction/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflecontext/index/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflecontext/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflecontext/previousindex/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accentcolor(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibility(activationpoint:)-5yxv/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibility(activationpoint:)-6f80/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibility(addtraits:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibility(hidden:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibility(hint:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibility(identifier:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibility(inputlabels:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibility(label:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibility(removetraits:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibility(selectionidentifier:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibility(sortpriority:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibility(value:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityaction(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityaction(action:label:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityaction(named:_:)-5vajk/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityaction(named:_:)-7cvr0/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityaction(named:_:)-7d1bz/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityactivationpoint(_:)-4i64i/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityactivationpoint(_:)-8rijn/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityaddtraits(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityadjustableaction(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitychartdescriptor(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitychildren(children:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-1dnrk/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-1ucuw/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-2nazk/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-3pllm/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-3pod7/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-4xdb3/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-5vxjo/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitycustomcontent(_:_:importance:)-qwm7/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityelement(children:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityfocused(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityfocused(_:equals:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityheading(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityhidden(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityhint(_:)-1rrl0/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityhint(_:)-5nt5z/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityhint(_:)-v4ao/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityidentifier(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityignoresinvertcolors(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityinputlabels(_:)-3x55a/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityinputlabels(_:)-6n0d7/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityinputlabels(_:)-8jm4t/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitylabel(_:)-3ly3t/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitylabel(_:)-4h91y/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitylabel(_:)-6a6no/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitylabeledpair(role:id:in:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitylinkedgroup(id:in:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityremovetraits(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrepresentation(representation:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrespondstouserinteraction(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:)-1orax/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:)-2p5bh/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:)-5mxjh/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:)-7dolw/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entryid:entrylabel:)-10oqf/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entryid:entrylabel:)-25d98/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entryid:entrylabel:)-51dnw/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entryid:entrylabel:)-6jn71/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entrylabel:)-3f3j9/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entrylabel:)-3lh2p/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entrylabel:)-6wf02/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:entries:entrylabel:)-7t24j/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:textranges:)-6nczq/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:textranges:)-8d4es/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:textranges:)-8l6zm/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotor(_:textranges:)-964n8/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityrotorentry(id:in:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityscrollaction(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityshowslargecontentviewer()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityshowslargecontentviewer(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitysortpriority(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilitytextcontenttype(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityvalue(_:)-3kff4/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityvalue(_:)-7dd6l/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/accessibilityvalue(_:)-7tnqf/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(_:ispresented:actions:)-2i24c/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(_:ispresented:actions:)-6i5wg/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(_:ispresented:actions:)-6mdoc/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(_:ispresented:actions:message:)-5j65x/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(_:ispresented:actions:message:)-6iohl/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(_:ispresented:actions:message:)-8x9o0/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(_:ispresented:presenting:actions:)-43fim/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(_:ispresented:presenting:actions:)-6dwv5/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(_:ispresented:presenting:actions:)-77clm/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(_:ispresented:presenting:actions:message:)-7p8yz/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(_:ispresented:presenting:actions:message:)-7ptxx/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(_:ispresented:presenting:actions:message:)-88es2/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(ispresented:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(ispresented:error:actions:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(ispresented:error:actions:message:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alert(item:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alignmentguide(_:computevalue:)-5dc06/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/alignmentguide(_:computevalue:)-98bnf/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/allowshittesting(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/allowstightening(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/anchorpreference(key:value:transform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/animation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/animation(_:value:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/aspectratio(_:contentmode:)-7qpsf/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/aspectratio(_:contentmode:)-98csp/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/background(_:alignment:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/background(_:ignoressafeareaedges:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/background(_:in:fillstyle:)-16mk7/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/background(_:in:fillstyle:)-3xtjy/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/background(alignment:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/background(ignoressafeareaedges:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/background(in:fillstyle:)-22zkr/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/background(in:fillstyle:)-pkki/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/backgroundpreferencevalue(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/badge(_:)-23vvh/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/badge(_:)-3b7a5/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/badge(_:)-4eyh0/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/badge(_:)-5yfrj/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/blendmode(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/blur(radius:opaque:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/body/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/border(_:width:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/brightness(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/buttonbordershape(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/buttonstyle(_:)-1hkio/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/buttonstyle(_:)-1mobg/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/carouselanimation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/carouseldisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/carouselpadding(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/carouselscale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/carouselspacing(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/carouselstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/carouseltrigger(on:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/clipped(antialiased:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/clipshape(_:style:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/colorinvert()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/colormultiply(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/colorscheme(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/compositinggroup()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:actions:)-7c2i9/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:actions:)-7p1mg/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:actions:)-9t8f5/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-592a8/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-6sq5i/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-8ffij/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-455gp/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pvn4/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-8fhv/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4bg57/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4pxpc/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-50r8e/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/containershape(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/contentshape(_:_:eofill:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/contentshape(_:eofill:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/contextmenu(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/contextmenu(menuitems:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/contrast(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/controlgroupstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/controlsize(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/coordinatespace(name:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/cornerradius(_:antialiased:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/datepickerstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/defaultappstorage(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/deletedisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/disableautocorrection(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/disabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/drawinggroup(opaque:colormode:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/dynamictypesize(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/edgesignoringsafearea(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/environment(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/environmentobject(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/exportsitemproviders(_:onexport:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/exportsitemproviders(_:onexport:onedit:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-54p9i/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-z1af/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/fileexporter(ispresented:documents:contenttype:oncompletion:)-4ixib/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/fileexporter(ispresented:documents:contenttype:oncompletion:)-72o0w/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/fileimporter(ispresented:allowedcontenttypes:oncompletion:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/filemover(ispresented:file:oncompletion:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/filemover(ispresented:files:oncompletion:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/fixedsize()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/fixedsize(horizontal:vertical:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/flipsforrighttoleftlayoutdirection(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/focusable(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/focusable(_:onfocuschange:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/focused(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/focused(_:equals:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/focusedscenevalue(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/focusedvalue(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/focusscope(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/font(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/foregroundcolor(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/foregroundstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/foregroundstyle(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/foregroundstyle(_:_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/frame()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/frame(width:height:alignment:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/gesture(_:including:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/grayscale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/groupboxstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/handlesexternalevents(preferring:allowing:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/headerprominence(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/help(_:)-4gfc1/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/help(_:)-57kg7/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/help(_:)-5c7gg/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/hidden()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/highprioritygesture(_:including:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/horizontalradiogrouplayout()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/huerotation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/id(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/ignoressafearea(_:edges:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/imagescale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/importsitemproviders(_:onimport:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/init(_:initialindex:content:)-6ou47/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/init(_:initialindex:content:)-9osfg/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/interactivedismissdisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/itemprovider(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/keyboardshortcut(_:)-8kg9p/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/keyboardshortcut(_:)-92las/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/keyboardshortcut(_:modifiers:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/keyboardshortcut(_:modifiers:localization:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/labelshidden()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/labelstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/layoutpriority(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/linelimit(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/linespacing(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/listitemtint(_:)-4okc6/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/listitemtint(_:)-8uys6/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/listrowbackground(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/listrowinsets(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/liststyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/luminancetoalpha()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/mask(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/mask(alignment:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/matchedgeometryeffect(id:in:properties:anchor:issource:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/menubuttonstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/menuindicator(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/menustyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/minimumscalefactor(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/modifier(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/monospaceddigit()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/movedisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/multilinetextalignment(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/navigationsubtitle(_:)-4xcr1/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/navigationsubtitle(_:)-62wq4/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/navigationsubtitle(_:)-89wf8/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/navigationtitle(_:)-15ycd/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/navigationtitle(_:)-3gz4j/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/navigationtitle(_:)-6t67o/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/navigationtitle(_:)-8moj6/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/navigationviewstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/offset(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/offset(x:y:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onappear(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/oncarousel(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/oncarouseltranslation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onchange(of:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/oncommand(_:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/oncontinueuseractivity(_:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/oncopycommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/oncutcommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/ondeletecommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/ondisappear(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/ondrag(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/ondrag(_:preview:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/ondrop(of:delegate:)-55jbd/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/ondrop(of:delegate:)-9xy3o/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/ondrop(of:istargeted:perform:)-2wosm/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/ondrop(of:istargeted:perform:)-4zd72/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/ondrop(of:istargeted:perform:)-6o6wo/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/ondrop(of:istargeted:perform:)-btgb/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onexitcommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onhover(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onlongpressgesture(minimumduration:perform:onpressingchanged:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onlongpressgesture(minimumduration:pressing:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onmovecommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onopenurl(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onpastecommand(of:perform:)-3phpt/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onpastecommand(of:perform:)-7nzf4/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onpastecommand(of:validator:perform:)-5h2lv/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onpastecommand(of:validator:perform:)-7k6qm/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onplaypausecommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onpreferencechange(_:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onreceive(_:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onshuffle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onshuffledeck(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onshuffledecktranslation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onshuffletranslation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/onsubmit(of:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/ontapgesture(count:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/opacity(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/overlay(_:alignment:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/overlay(_:ignoressafeareaedges:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/overlay(_:in:fillstyle:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/overlay(alignment:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/overlaypreferencevalue(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/padding(_:)-5f3wf/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/padding(_:)-7cp9q/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/padding(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/pagecommand(value:in:step:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/pickerstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/popover(ispresented:attachmentanchor:arrowedge:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/popover(item:attachmentanchor:arrowedge:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/position(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/position(x:y:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/preference(key:value:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/preferredcolorscheme(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/prefersdefaultfocus(_:in:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/presentedwindowstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/presentedwindowtoolbarstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/previewcontext(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/previewdevice(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/previewdisplayname(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/previewinterfaceorientation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/previewlayout(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/privacysensitive(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/progressviewstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/projectioneffect(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/redacted(reason:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/refreshable(action:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/rotation3deffect(_:axis:anchor:anchorz:perspective:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/rotationeffect(_:anchor:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/safeareainset(edge:alignment:spacing:content:)-4gojk/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/safeareainset(edge:alignment:spacing:content:)-9bx6p/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/saturation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/scaledtofill()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/scaledtofit()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/scaleeffect(_:anchor:)-4byje/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/scaleeffect(_:anchor:)-6bduh/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/scaleeffect(x:y:anchor:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/scenepadding(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/searchable(text:placement:prompt:)-2i9jl/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/searchable(text:placement:prompt:)-50j7i/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/searchable(text:placement:prompt:)-75a6t/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/searchable(text:placement:prompt:suggestions:)-5bsg8/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/searchable(text:placement:prompt:suggestions:)-5ib9a/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/searchable(text:placement:prompt:suggestions:)-8fyqc/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/searchcompletion(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/shadow(color:radius:x:y:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/sheet(ispresented:ondismiss:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/sheet(item:ondismiss:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/shuffleanimation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/shuffledeckanimation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/shuffledeckdisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/shuffledeckscale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/shuffledeckstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/shuffledecktrigger(on:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/shuffledisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/shuffleoffset(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/shufflepadding(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/shufflescale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/shufflestyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/shuffletrigger(on:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/simultaneousgesture(_:including:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/speechadjustedpitch(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/speechalwaysincludespunctuation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/speechannouncementsqueued(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/speechspellsoutcharacters(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/submitlabel(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/submitscope(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/swipeactions(edge:allowsfullswipe:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/symbolrenderingmode(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/symbolvariant(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/tabitem(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/tablestyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/tabviewstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/tag(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/task(id:priority:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/task(priority:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/textcase(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/textcontenttype(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/textfieldstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/textselection(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/tint(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/togglestyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/toolbar(content:)-2k0pt/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/toolbar(content:)-4sm5t/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/toolbar(id:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/touchbar(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/touchbar(content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/touchbarcustomizationlabel(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/touchbaritempresence(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/touchbaritemprincipal(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/transaction(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/transformanchorpreference(key:value:transform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/transformeffect(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/transformenvironment(_:transform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/transformpreference(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/transition(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/truncationmode(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/unredacted()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/useractivity(_:element:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/useractivity(_:isactive:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/view-implementations/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeck/zindex(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckanimation/!=(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckanimation/easein/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckanimation/easeinout/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckanimation/easeout/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckanimation/equatable-implementations/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckanimation/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckanimation/linear/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckcontext/direction/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckcontext/index/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckcontext/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckcontext/previousindex/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckdirection/!=(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckdirection/equatable-implementations/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckdirection/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckdirection/left/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckdirection/right/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckstyle/!=(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckstyle/equatable-implementations/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckstyle/finiteshuffle/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckstyle/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledeckstyle/infiniteshuffle/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledirection/!=(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledirection/equatable-implementations/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledirection/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledirection/left/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shuffledirection/right/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accentcolor(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibility(activationpoint:)-1nikr/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibility(activationpoint:)-9o1ut/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibility(addtraits:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibility(hidden:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibility(hint:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibility(identifier:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibility(inputlabels:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibility(label:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibility(removetraits:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibility(selectionidentifier:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibility(sortpriority:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibility(value:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityaction(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityaction(action:label:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityaction(named:_:)-5nf29/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityaction(named:_:)-7rxae/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityaction(named:_:)-7tk0c/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityactivationpoint(_:)-57vfb/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityactivationpoint(_:)-9osvr/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityaddtraits(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityadjustableaction(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitychartdescriptor(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitychildren(children:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-1gi9v/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-375xz/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-571fc/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-72sim/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-7h1pz/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-8sma2/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-956rk/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitycustomcontent(_:_:importance:)-96ur4/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityelement(children:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityfocused(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityfocused(_:equals:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityheading(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityhidden(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityhint(_:)-45b9m/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityhint(_:)-6451d/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityhint(_:)-6m2eb/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityidentifier(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityignoresinvertcolors(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityinputlabels(_:)-3mfon/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityinputlabels(_:)-7hs3b/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityinputlabels(_:)-7kg3p/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitylabel(_:)-3has0/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitylabel(_:)-6dv6y/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitylabel(_:)-e66p/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitylabeledpair(role:id:in:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitylinkedgroup(id:in:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityremovetraits(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrepresentation(representation:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrespondstouserinteraction(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:)-3a01s/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:)-661b4/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:)-7kbeo/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:)-f4c5/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entryid:entrylabel:)-1kufn/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entryid:entrylabel:)-1o7jk/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entryid:entrylabel:)-2ng74/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entryid:entrylabel:)-6akr8/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entrylabel:)-6o30j/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entrylabel:)-8e6r9/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entrylabel:)-bva6/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:entries:entrylabel:)-cxx7/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:textranges:)-1v5os/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:textranges:)-5mce6/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:textranges:)-7fpc1/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotor(_:textranges:)-91on2/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityrotorentry(id:in:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityscrollaction(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityshowslargecontentviewer()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityshowslargecontentviewer(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitysortpriority(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilitytextcontenttype(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityvalue(_:)-6kh76/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityvalue(_:)-6x5in/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/accessibilityvalue(_:)-tcbi/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(_:ispresented:actions:)-13ppe/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(_:ispresented:actions:)-31fv4/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(_:ispresented:actions:)-svpk/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(_:ispresented:actions:message:)-1lplz/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(_:ispresented:actions:message:)-42hzu/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(_:ispresented:actions:message:)-8jr1q/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(_:ispresented:presenting:actions:)-135kk/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(_:ispresented:presenting:actions:)-7je0d/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(_:ispresented:presenting:actions:)-7zzve/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(_:ispresented:presenting:actions:message:)-17uu0/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(_:ispresented:presenting:actions:message:)-36zvz/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(_:ispresented:presenting:actions:message:)-7caah/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(ispresented:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(ispresented:error:actions:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(ispresented:error:actions:message:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alert(item:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alignmentguide(_:computevalue:)-23g26/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/alignmentguide(_:computevalue:)-4kcej/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/allowshittesting(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/allowstightening(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/anchorpreference(key:value:transform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/animation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/animation(_:value:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/aspectratio(_:contentmode:)-9iav9/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/aspectratio(_:contentmode:)-ggdx/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/background(_:alignment:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/background(_:ignoressafeareaedges:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/background(_:in:fillstyle:)-1a2bf/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/background(_:in:fillstyle:)-8qwr1/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/background(alignment:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/background(ignoressafeareaedges:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/background(in:fillstyle:)-58j5e/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/background(in:fillstyle:)-8w09p/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/backgroundpreferencevalue(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/badge(_:)-26gjx/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/badge(_:)-2cz64/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/badge(_:)-31kbp/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/badge(_:)-4i0v1/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/blendmode(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/blur(radius:opaque:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/body/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/border(_:width:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/brightness(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/buttonbordershape(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/buttonstyle(_:)-42cf/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/buttonstyle(_:)-4hs9e/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/carouselanimation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/carouseldisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/carouselpadding(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/carouselscale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/carouselspacing(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/carouselstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/carouseltrigger(on:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/clipped(antialiased:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/clipshape(_:style:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/colorinvert()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/colormultiply(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/colorscheme(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/compositinggroup()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:actions:)-41ud8/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:actions:)-4ywhx/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:actions:)-7ipnf/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1kurz/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5vmyl/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9sue3/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1tkx/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5diu1/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pkdq/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-296mh/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-5uj0y/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-7cjsq/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/containershape(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/contentshape(_:_:eofill:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/contentshape(_:eofill:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/contextmenu(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/contextmenu(menuitems:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/contrast(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/controlgroupstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/controlsize(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/coordinatespace(name:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/cornerradius(_:antialiased:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/datepickerstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/defaultappstorage(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/deletedisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/disableautocorrection(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/disabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/drawinggroup(opaque:colormode:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/dynamictypesize(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/edgesignoringsafearea(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/environment(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/environmentobject(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/exportsitemproviders(_:onexport:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/exportsitemproviders(_:onexport:onedit:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-6evgr/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-8iv2y/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/fileexporter(ispresented:documents:contenttype:oncompletion:)-233kd/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/fileexporter(ispresented:documents:contenttype:oncompletion:)-7map2/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/fileimporter(ispresented:allowedcontenttypes:oncompletion:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/filemover(ispresented:file:oncompletion:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/filemover(ispresented:files:oncompletion:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/fixedsize()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/fixedsize(horizontal:vertical:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/flipsforrighttoleftlayoutdirection(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/focusable(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/focusable(_:onfocuschange:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/focused(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/focused(_:equals:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/focusedscenevalue(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/focusedvalue(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/focusscope(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/font(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/foregroundcolor(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/foregroundstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/foregroundstyle(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/foregroundstyle(_:_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/frame()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/frame(width:height:alignment:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/gesture(_:including:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/grayscale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/groupboxstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/handlesexternalevents(preferring:allowing:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/headerprominence(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/help(_:)-296/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/help(_:)-2u744/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/help(_:)-4q5ms/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/hidden()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/highprioritygesture(_:including:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/horizontalradiogrouplayout()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/huerotation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/id(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/ignoressafearea(_:edges:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/imagescale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/importsitemproviders(_:onimport:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/init(_:initialindex:stackcontent:)-4x5f3/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/init(_:initialindex:stackcontent:)-8ktnr/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/interactivedismissdisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/itemprovider(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/keyboardshortcut(_:)-30f12/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/keyboardshortcut(_:)-38k96/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/keyboardshortcut(_:modifiers:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/keyboardshortcut(_:modifiers:localization:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/labelshidden()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/labelstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/layoutpriority(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/linelimit(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/linespacing(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/listitemtint(_:)-66j6h/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/listitemtint(_:)-6zn9q/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/listrowbackground(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/listrowinsets(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/liststyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/luminancetoalpha()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/mask(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/mask(alignment:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/matchedgeometryeffect(id:in:properties:anchor:issource:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/menubuttonstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/menuindicator(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/menustyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/minimumscalefactor(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/modifier(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/monospaceddigit()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/movedisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/multilinetextalignment(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/navigationsubtitle(_:)-16d52/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/navigationsubtitle(_:)-206md/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/navigationsubtitle(_:)-7em2i/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/navigationtitle(_:)-7aj99/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/navigationtitle(_:)-7jd07/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/navigationtitle(_:)-7twkm/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/navigationtitle(_:)-7w547/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/navigationviewstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/offset(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/offset(x:y:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onappear(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/oncarousel(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/oncarouseltranslation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onchange(of:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/oncommand(_:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/oncontinueuseractivity(_:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/oncopycommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/oncutcommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/ondeletecommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/ondisappear(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/ondrag(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/ondrag(_:preview:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/ondrop(of:delegate:)-1ea27/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/ondrop(of:delegate:)-8thdr/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/ondrop(of:istargeted:perform:)-363wn/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/ondrop(of:istargeted:perform:)-3bmbv/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/ondrop(of:istargeted:perform:)-82gpe/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/ondrop(of:istargeted:perform:)-84ef9/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onexitcommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onhover(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onlongpressgesture(minimumduration:perform:onpressingchanged:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onlongpressgesture(minimumduration:pressing:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onmovecommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onopenurl(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onpastecommand(of:perform:)-4k6ie/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onpastecommand(of:perform:)-wliz/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onpastecommand(of:validator:perform:)-7tcqn/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onpastecommand(of:validator:perform:)-9ddq9/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onplaypausecommand(perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onpreferencechange(_:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onreceive(_:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onshuffle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onshuffledeck(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onshuffledecktranslation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onshuffletranslation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/onsubmit(of:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/ontapgesture(count:perform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/opacity(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/overlay(_:alignment:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/overlay(_:ignoressafeareaedges:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/overlay(_:in:fillstyle:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/overlay(alignment:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/overlaypreferencevalue(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/padding(_:)-7zetw/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/padding(_:)-9obs7/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/padding(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/pagecommand(value:in:step:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/pickerstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/popover(ispresented:attachmentanchor:arrowedge:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/popover(item:attachmentanchor:arrowedge:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/position(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/position(x:y:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/preference(key:value:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/preferredcolorscheme(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/prefersdefaultfocus(_:in:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/presentedwindowstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/presentedwindowtoolbarstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/previewcontext(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/previewdevice(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/previewdisplayname(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/previewinterfaceorientation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/previewlayout(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/privacysensitive(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/progressviewstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/projectioneffect(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/redacted(reason:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/refreshable(action:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/rotation3deffect(_:axis:anchor:anchorz:perspective:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/rotationeffect(_:anchor:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/safeareainset(edge:alignment:spacing:content:)-9cc9j/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/safeareainset(edge:alignment:spacing:content:)-9ojua/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/saturation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/scaledtofill()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/scaledtofit()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/scaleeffect(_:anchor:)-2caa5/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/scaleeffect(_:anchor:)-718iu/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/scaleeffect(x:y:anchor:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/scenepadding(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/searchable(text:placement:prompt:)-2vm7x/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/searchable(text:placement:prompt:)-8rgzb/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/searchable(text:placement:prompt:)-988ga/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/searchable(text:placement:prompt:suggestions:)-3zci7/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/searchable(text:placement:prompt:suggestions:)-5taln/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/searchable(text:placement:prompt:suggestions:)-8jhzt/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/searchcompletion(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/shadow(color:radius:x:y:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/sheet(ispresented:ondismiss:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/sheet(item:ondismiss:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/shuffleanimation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/shuffledeckanimation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/shuffledeckdisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/shuffledeckscale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/shuffledeckstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/shuffledecktrigger(on:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/shuffledisabled(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/shuffleoffset(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/shufflepadding(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/shufflescale(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/shufflestyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/shuffletrigger(on:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/simultaneousgesture(_:including:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/speechadjustedpitch(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/speechalwaysincludespunctuation(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/speechannouncementsqueued(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/speechspellsoutcharacters(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/submitlabel(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/submitscope(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/swipeactions(edge:allowsfullswipe:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/symbolrenderingmode(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/symbolvariant(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/tabitem(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/tablestyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/tabviewstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/tag(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/task(id:priority:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/task(priority:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/textcase(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/textcontenttype(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/textfieldstyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/textselection(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/tint(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/togglestyle(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/toolbar(content:)-2fsde/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/toolbar(content:)-9838r/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/toolbar(id:content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/touchbar(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/touchbar(content:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/touchbarcustomizationlabel(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/touchbaritempresence(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/touchbaritemprincipal(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/transaction(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/transformanchorpreference(key:value:transform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/transformeffect(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/transformenvironment(_:transform:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/transformpreference(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/transition(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/truncationmode(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/unredacted()/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/useractivity(_:element:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/useractivity(_:isactive:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/view-implementations/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestack/zindex(_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestyle/!=(_:_:)/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestyle/equatable-implementations/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestyle/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestyle/rotatein/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestyle/rotateout/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/documentation/shuffleit/shufflestyle/slide/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/index/index.json",
    "content": "{\"interfaceLanguages\":{\"swift\":[{\"children\":[{\"title\":\"CarouselStack\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Initializers\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/init(_:initialindex:content:)-70npt\",\"title\":\"init(Data, initialIndex: Data.Index?, content: (Data.Element) -> Content)\",\"type\":\"init\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/init(_:initialindex:content:)-7edjn\",\"title\":\"init(Data, initialIndex: Data.Index?, content: (Data.Element, CGFloat) -> Content)\",\"type\":\"init\"},{\"title\":\"Instance Properties\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/body\",\"title\":\"var body: some View\",\"type\":\"property\"},{\"title\":\"Default Implementations\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Instance Methods\",\"type\":\"groupMarker\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accentcolor(_:)\",\"title\":\"func accentColor(Color?) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(activationpoint:)-4y62\",\"title\":\"func accessibility(activationPoint: CGPoint) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(activationpoint:)-695kx\",\"title\":\"func accessibility(activationPoint: UnitPoint) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(addtraits:)\",\"title\":\"func accessibility(addTraits: AccessibilityTraits) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(hidden:)\",\"title\":\"func accessibility(hidden: Bool) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(hint:)\",\"title\":\"func accessibility(hint: Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(identifier:)\",\"title\":\"func accessibility(identifier: String) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(inputlabels:)\",\"title\":\"func accessibility(inputLabels: [Text]) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(label:)\",\"title\":\"func accessibility(label: Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(removetraits:)\",\"title\":\"func accessibility(removeTraits: AccessibilityTraits) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(selectionidentifier:)\",\"title\":\"func accessibility(selectionIdentifier: AnyHashable) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(sortpriority:)\",\"title\":\"func accessibility(sortPriority: Double) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibility(value:)\",\"title\":\"func accessibility(value: Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(_:_:)\",\"title\":\"func accessibilityAction(AccessibilityActionKind, () -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(action:label:)\",\"title\":\"func accessibilityAction<Label>(action: () -> Void, label: () -> Label) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(named:_:)-3lqsr\",\"title\":\"func accessibilityAction(named: LocalizedStringKey, () -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(named:_:)-69c69\",\"title\":\"func accessibilityAction(named: Text, () -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaction(named:_:)-rgyh\",\"title\":\"func accessibilityAction<S>(named: S, () -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityactivationpoint(_:)-5bbv5\",\"title\":\"func accessibilityActivationPoint(CGPoint) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityactivationpoint(_:)-8dokx\",\"title\":\"func accessibilityActivationPoint(UnitPoint) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityaddtraits(_:)\",\"title\":\"func accessibilityAddTraits(AccessibilityTraits) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityadjustableaction(_:)\",\"title\":\"func accessibilityAdjustableAction((AccessibilityAdjustmentDirection) -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitychartdescriptor(_:)\",\"title\":\"func accessibilityChartDescriptor<R>(R) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitychildren(children:)\",\"title\":\"func accessibilityChildren<V>(children: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-1586n\",\"title\":\"func accessibilityCustomContent(AccessibilityCustomContentKey, Text?, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-1u9b5\",\"title\":\"func accessibilityCustomContent(Text, Text, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-3t2kq\",\"title\":\"func accessibilityCustomContent<V>(LocalizedStringKey, V, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-46frq\",\"title\":\"func accessibilityCustomContent(LocalizedStringKey, Text, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-47g1f\",\"title\":\"func accessibilityCustomContent<V>(AccessibilityCustomContentKey, V, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-5xqqc\",\"title\":\"func accessibilityCustomContent(AccessibilityCustomContentKey, LocalizedStringKey, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-8rfm7\",\"title\":\"func accessibilityCustomContent(LocalizedStringKey, LocalizedStringKey, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitycustomcontent(_:_:importance:)-9cou3\",\"title\":\"func accessibilityCustomContent<L, V>(L, V, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityelement(children:)\",\"title\":\"func accessibilityElement(children: AccessibilityChildBehavior) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityfocused(_:)\",\"title\":\"func accessibilityFocused(AccessibilityFocusState<Bool>.Binding) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityfocused(_:equals:)\",\"title\":\"func accessibilityFocused<Value>(AccessibilityFocusState<Value>.Binding, equals: Value) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityheading(_:)\",\"title\":\"func accessibilityHeading(AccessibilityHeadingLevel) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhidden(_:)\",\"title\":\"func accessibilityHidden(Bool) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhint(_:)-2j7te\",\"title\":\"func accessibilityHint<S>(S) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhint(_:)-37ope\",\"title\":\"func accessibilityHint(LocalizedStringKey) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityhint(_:)-7yi0h\",\"title\":\"func accessibilityHint(Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityidentifier(_:)\",\"title\":\"func accessibilityIdentifier(String) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityignoresinvertcolors(_:)\",\"title\":\"func accessibilityIgnoresInvertColors(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityinputlabels(_:)-3feba\",\"title\":\"func accessibilityInputLabels([Text]) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityinputlabels(_:)-3p703\",\"title\":\"func accessibilityInputLabels([LocalizedStringKey]) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityinputlabels(_:)-95tn0\",\"title\":\"func accessibilityInputLabels<S>([S]) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabel(_:)-2tohn\",\"title\":\"func accessibilityLabel(Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabel(_:)-755g2\",\"title\":\"func accessibilityLabel(LocalizedStringKey) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabel(_:)-8bin6\",\"title\":\"func accessibilityLabel<S>(S) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylabeledpair(role:id:in:)\",\"title\":\"func accessibilityLabeledPair<ID>(role: AccessibilityLabeledPairRole, id: ID, in: Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitylinkedgroup(id:in:)\",\"title\":\"func accessibilityLinkedGroup<ID>(id: ID, in: Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityremovetraits(_:)\",\"title\":\"func accessibilityRemoveTraits(AccessibilityTraits) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrepresentation(representation:)\",\"title\":\"func accessibilityRepresentation<V>(representation: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrespondstouserinteraction(_:)\",\"title\":\"func accessibilityRespondsToUserInteraction(Bool) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-1c2au\",\"title\":\"func accessibilityRotor<Content>(LocalizedStringKey, entries: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-4pacb\",\"title\":\"func accessibilityRotor<Content>(Text, entries: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-4w7j0\",\"title\":\"func accessibilityRotor<L, Content>(L, entries: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:)-825mo\",\"title\":\"func accessibilityRotor<Content>(AccessibilitySystemRotor, entries: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-1w44t\",\"title\":\"func accessibilityRotor<EntryModel, ID>(AccessibilitySystemRotor, entries: [EntryModel], entryID: KeyPath<EntryModel, ID>, entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-4vvcg\",\"title\":\"func accessibilityRotor<EntryModel, ID>(Text, entries: [EntryModel], entryID: KeyPath<EntryModel, ID>, entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-5gz2c\",\"title\":\"func accessibilityRotor<EntryModel, ID>(LocalizedStringKey, entries: [EntryModel], entryID: KeyPath<EntryModel, ID>, entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-utor\",\"title\":\"func accessibilityRotor<L, EntryModel, ID>(L, entries: [EntryModel], entryID: KeyPath<EntryModel, ID>, entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-25t4x\",\"title\":\"func accessibilityRotor<L, EntryModel>(L, entries: [EntryModel], entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-3evdd\",\"title\":\"func accessibilityRotor<EntryModel>(AccessibilitySystemRotor, entries: [EntryModel], entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-4e9vu\",\"title\":\"func accessibilityRotor<EntryModel>(LocalizedStringKey, entries: [EntryModel], entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:entries:entrylabel:)-59b0s\",\"title\":\"func accessibilityRotor<EntryModel>(Text, entries: [EntryModel], entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-25npe\",\"title\":\"func accessibilityRotor(Text, textRanges: [Range<String.Index>]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-3d2p8\",\"title\":\"func accessibilityRotor<L>(L, textRanges: [Range<String.Index>]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-4jxor\",\"title\":\"func accessibilityRotor(LocalizedStringKey, textRanges: [Range<String.Index>]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotor(_:textranges:)-9sgga\",\"title\":\"func accessibilityRotor(AccessibilitySystemRotor, textRanges: [Range<String.Index>]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityrotorentry(id:in:)\",\"title\":\"func accessibilityRotorEntry<ID>(id: ID, in: Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityscrollaction(_:)\",\"title\":\"func accessibilityScrollAction((Edge) -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityshowslargecontentviewer()\",\"title\":\"func accessibilityShowsLargeContentViewer() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityshowslargecontentviewer(_:)\",\"title\":\"func accessibilityShowsLargeContentViewer<V>(() -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitysortpriority(_:)\",\"title\":\"func accessibilitySortPriority(Double) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilitytextcontenttype(_:)\",\"title\":\"func accessibilityTextContentType(AccessibilityTextContentType) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityvalue(_:)-5fw6g\",\"title\":\"func accessibilityValue(Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityvalue(_:)-5y8gy\",\"title\":\"func accessibilityValue<S>(S) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/accessibilityvalue(_:)-8ihs6\",\"title\":\"func accessibilityValue(LocalizedStringKey) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:)-1q2gb\",\"title\":\"func alert<A>(Text, isPresented: Binding<Bool>, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:)-76wk8\",\"title\":\"func alert<A>(LocalizedStringKey, isPresented: Binding<Bool>, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:)-7wghk\",\"title\":\"func alert<S, A>(S, isPresented: Binding<Bool>, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:message:)-5s7hn\",\"title\":\"func alert<S, A, M>(S, isPresented: Binding<Bool>, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:message:)-9a4q7\",\"title\":\"func alert<A, M>(LocalizedStringKey, isPresented: Binding<Bool>, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:actions:message:)-f5o2\",\"title\":\"func alert<A, M>(Text, isPresented: Binding<Bool>, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:)-4edmo\",\"title\":\"func alert<A, T>(LocalizedStringKey, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:)-4uw7u\",\"title\":\"func alert<S, A, T>(S, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:)-8axxo\",\"title\":\"func alert<A, T>(Text, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:message:)-226oe\",\"title\":\"func alert<A, M, T>(LocalizedStringKey, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:message:)-4tvm3\",\"title\":\"func alert<S, A, M, T>(S, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(_:ispresented:presenting:actions:message:)-7b0gl\",\"title\":\"func alert<A, M, T>(Text, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(ispresented:content:)\",\"title\":\"func alert(isPresented: Binding<Bool>, content: () -> Alert) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(ispresented:error:actions:)\",\"title\":\"func alert<E, A>(isPresented: Binding<Bool>, error: E?, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(ispresented:error:actions:message:)\",\"title\":\"func alert<E, A, M>(isPresented: Binding<Bool>, error: E?, actions: (E) -> A, message: (E) -> M) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alert(item:content:)\",\"title\":\"func alert<Item>(item: Binding<Item?>, content: (Item) -> Alert) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alignmentguide(_:computevalue:)-4r6p\",\"title\":\"func alignmentGuide(HorizontalAlignment, computeValue: (ViewDimensions) -> CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/alignmentguide(_:computevalue:)-8e6vc\",\"title\":\"func alignmentGuide(VerticalAlignment, computeValue: (ViewDimensions) -> CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/allowshittesting(_:)\",\"title\":\"func allowsHitTesting(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/allowstightening(_:)\",\"title\":\"func allowsTightening(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/anchorpreference(key:value:transform:)\",\"title\":\"func anchorPreference<A, K>(key: K.Type, value: Anchor<A>.Source, transform: (Anchor<A>) -> K.Value) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/animation(_:)\",\"title\":\"func animation(Animation?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/animation(_:value:)\",\"title\":\"func animation<V>(Animation?, value: V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/aspectratio(_:contentmode:)-72t0z\",\"title\":\"func aspectRatio(CGSize, contentMode: ContentMode) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/aspectratio(_:contentmode:)-8gir9\",\"title\":\"func aspectRatio(CGFloat?, contentMode: ContentMode) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:alignment:)\",\"title\":\"func background<Background>(Background, alignment: Alignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:ignoressafeareaedges:)\",\"title\":\"func background<S>(S, ignoresSafeAreaEdges: Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:in:fillstyle:)-4hb5h\",\"title\":\"func background<S, T>(S, in: T, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(_:in:fillstyle:)-5xuxn\",\"title\":\"func background<S, T>(S, in: T, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(alignment:content:)\",\"title\":\"func background<V>(alignment: Alignment, content: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(ignoressafeareaedges:)\",\"title\":\"func background(ignoresSafeAreaEdges: Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(in:fillstyle:)-2lcq8\",\"title\":\"func background<S>(in: S, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/background(in:fillstyle:)-6gtsb\",\"title\":\"func background<S>(in: S, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/backgroundpreferencevalue(_:_:)\",\"title\":\"func backgroundPreferenceValue<Key, T>(Key.Type, (Key.Value) -> T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-10ceg\",\"title\":\"func badge(Text?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-6ah2\",\"title\":\"func badge(Int) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-7kz0m\",\"title\":\"func badge(LocalizedStringKey?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/badge(_:)-8lj4d\",\"title\":\"func badge<S>(S?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/blendmode(_:)\",\"title\":\"func blendMode(BlendMode) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/blur(radius:opaque:)\",\"title\":\"func blur(radius: CGFloat, opaque: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/border(_:width:)\",\"title\":\"func border<S>(S, width: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/brightness(_:)\",\"title\":\"func brightness(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/buttonbordershape(_:)\",\"title\":\"func buttonBorderShape(ButtonBorderShape) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/buttonstyle(_:)-6awhx\",\"title\":\"func buttonStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/buttonstyle(_:)-8ljh4\",\"title\":\"func buttonStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselanimation(_:)\",\"title\":\"func carouselAnimation(CarouselAnimation) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouseldisabled(_:)\",\"title\":\"func carouselDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselpadding(_:)\",\"title\":\"func carouselPadding(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselscale(_:)\",\"title\":\"func carouselScale(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselspacing(_:)\",\"title\":\"func carouselSpacing(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouselstyle(_:)\",\"title\":\"func carouselStyle(CarouselStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/carouseltrigger(on:)\",\"title\":\"func carouselTrigger<P>(on: P) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/clipshape(_:style:)\",\"title\":\"func clipShape<S>(S, style: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/clipped(antialiased:)\",\"title\":\"func clipped(antialiased: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/colorinvert()\",\"title\":\"func colorInvert() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/colormultiply(_:)\",\"title\":\"func colorMultiply(Color) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/colorscheme(_:)\",\"title\":\"func colorScheme(ColorScheme) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/compositinggroup()\",\"title\":\"func compositingGroup() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-1uzrt\",\"title\":\"func confirmationDialog<S, A>(S, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-5d29j\",\"title\":\"func confirmationDialog<A>(Text, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-718e5\",\"title\":\"func confirmationDialog<A>(LocalizedStringKey, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-65zoh\",\"title\":\"func confirmationDialog<A, M>(LocalizedStringKey, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-951t3\",\"title\":\"func confirmationDialog<A, M>(Text, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9yu7k\",\"title\":\"func confirmationDialog<S, A, M>(S, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1ji6h\",\"title\":\"func confirmationDialog<A, T>(LocalizedStringKey, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-4fi9z\",\"title\":\"func confirmationDialog<A, T>(Text, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-51cln\",\"title\":\"func confirmationDialog<S, A, T>(S, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2m470\",\"title\":\"func confirmationDialog<A, M, T>(Text, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-9o8j\",\"title\":\"func confirmationDialog<S, A, M, T>(S, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-g5bx\",\"title\":\"func confirmationDialog<A, M, T>(LocalizedStringKey, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/containershape(_:)\",\"title\":\"func containerShape<T>(T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contentshape(_:_:eofill:)\",\"title\":\"func contentShape<S>(ContentShapeKinds, S, eoFill: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contentshape(_:eofill:)\",\"title\":\"func contentShape<S>(S, eoFill: Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contextmenu(_:)\",\"title\":\"func contextMenu<MenuItems>(ContextMenu<MenuItems>?) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contextmenu(menuitems:)\",\"title\":\"func contextMenu<MenuItems>(menuItems: () -> MenuItems) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/contrast(_:)\",\"title\":\"func contrast(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/controlgroupstyle(_:)\",\"title\":\"func controlGroupStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/controlsize(_:)\",\"title\":\"func controlSize(ControlSize) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/coordinatespace(name:)\",\"title\":\"func coordinateSpace<T>(name: T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/cornerradius(_:antialiased:)\",\"title\":\"func cornerRadius(CGFloat, antialiased: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/datepickerstyle(_:)\",\"title\":\"func datePickerStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/defaultappstorage(_:)\",\"title\":\"func defaultAppStorage(UserDefaults) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/deletedisabled(_:)\",\"title\":\"func deleteDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/disableautocorrection(_:)\",\"title\":\"func disableAutocorrection(Bool?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/disabled(_:)\",\"title\":\"func disabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/drawinggroup(opaque:colormode:)\",\"title\":\"func drawingGroup(opaque: Bool, colorMode: ColorRenderingMode) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/dynamictypesize(_:)\",\"title\":\"func dynamicTypeSize(DynamicTypeSize) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/edgesignoringsafearea(_:)\",\"title\":\"func edgesIgnoringSafeArea(Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/environment(_:_:)\",\"title\":\"func environment<V>(WritableKeyPath<EnvironmentValues, V>, V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/environmentobject(_:)\",\"title\":\"func environmentObject<T>(T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/exportsitemproviders(_:onexport:)\",\"title\":\"func exportsItemProviders([UTType], onExport: () -> [NSItemProvider]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/exportsitemproviders(_:onexport:onedit:)\",\"title\":\"func exportsItemProviders([UTType], onExport: () -> [NSItemProvider], onEdit: ([NSItemProvider]) -> Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-2xo1j\",\"title\":\"func fileExporter<D>(isPresented: Binding<Bool>, document: D?, contentType: UTType, defaultFilename: String?, onCompletion: (Result<URL, Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-5w70m\",\"title\":\"func fileExporter<D>(isPresented: Binding<Bool>, document: D?, contentType: UTType, defaultFilename: String?, onCompletion: (Result<URL, Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-9dfyf\",\"title\":\"func fileExporter<C>(isPresented: Binding<Bool>, documents: C, contentType: UTType, onCompletion: (Result<[URL], Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-vkdb\",\"title\":\"func fileExporter<C>(isPresented: Binding<Bool>, documents: C, contentType: UTType, onCompletion: (Result<[URL], Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)\",\"title\":\"func fileImporter(isPresented: Binding<Bool>, allowedContentTypes: [UTType], allowsMultipleSelection: Bool, onCompletion: (Result<[URL], Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)\",\"title\":\"func fileImporter(isPresented: Binding<Bool>, allowedContentTypes: [UTType], onCompletion: (Result<URL, Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/filemover(ispresented:file:oncompletion:)\",\"title\":\"func fileMover(isPresented: Binding<Bool>, file: URL?, onCompletion: (Result<URL, Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/filemover(ispresented:files:oncompletion:)\",\"title\":\"func fileMover<C>(isPresented: Binding<Bool>, files: C, onCompletion: (Result<[URL], Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fixedsize()\",\"title\":\"func fixedSize() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/fixedsize(horizontal:vertical:)\",\"title\":\"func fixedSize(horizontal: Bool, vertical: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/flipsforrighttoleftlayoutdirection(_:)\",\"title\":\"func flipsForRightToLeftLayoutDirection(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusscope(_:)\",\"title\":\"func focusScope(Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusable(_:)\",\"title\":\"func focusable(Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusable(_:onfocuschange:)\",\"title\":\"func focusable(Bool, onFocusChange: (Bool) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focused(_:)\",\"title\":\"func focused(FocusState<Bool>.Binding) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focused(_:equals:)\",\"title\":\"func focused<Value>(FocusState<Value>.Binding, equals: Value) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusedscenevalue(_:_:)\",\"title\":\"func focusedSceneValue<T>(WritableKeyPath<FocusedValues, T?>, T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/focusedvalue(_:_:)\",\"title\":\"func focusedValue<Value>(WritableKeyPath<FocusedValues, Value?>, Value) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/font(_:)\",\"title\":\"func font(Font?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundcolor(_:)\",\"title\":\"func foregroundColor(Color?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundstyle(_:)\",\"title\":\"func foregroundStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundstyle(_:_:)\",\"title\":\"func foregroundStyle<S1, S2>(S1, S2) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/foregroundstyle(_:_:_:)\",\"title\":\"func foregroundStyle<S1, S2, S3>(S1, S2, S3) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/frame()\",\"title\":\"func frame() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)\",\"title\":\"func frame(minWidth: CGFloat?, idealWidth: CGFloat?, maxWidth: CGFloat?, minHeight: CGFloat?, idealHeight: CGFloat?, maxHeight: CGFloat?, alignment: Alignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/frame(width:height:alignment:)\",\"title\":\"func frame(width: CGFloat?, height: CGFloat?, alignment: Alignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/gesture(_:including:)\",\"title\":\"func gesture<T>(T, including: GestureMask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/grayscale(_:)\",\"title\":\"func grayscale(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/groupboxstyle(_:)\",\"title\":\"func groupBoxStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/handlesexternalevents(preferring:allowing:)\",\"title\":\"func handlesExternalEvents(preferring: Set<String>, allowing: Set<String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/headerprominence(_:)\",\"title\":\"func headerProminence(Prominence) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/help(_:)-1f2w4\",\"title\":\"func help(LocalizedStringKey) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/help(_:)-1g6m4\",\"title\":\"func help<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/help(_:)-9mw1c\",\"title\":\"func help(Text) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/hidden()\",\"title\":\"func hidden() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/highprioritygesture(_:including:)\",\"title\":\"func highPriorityGesture<T>(T, including: GestureMask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/horizontalradiogrouplayout()\",\"title\":\"func horizontalRadioGroupLayout() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/huerotation(_:)\",\"title\":\"func hueRotation(Angle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/id(_:)\",\"title\":\"func id<ID>(ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ignoressafearea(_:edges:)\",\"title\":\"func ignoresSafeArea(SafeAreaRegions, edges: Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/imagescale(_:)\",\"title\":\"func imageScale(Image.Scale) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/importsitemproviders(_:onimport:)\",\"title\":\"func importsItemProviders([UTType], onImport: ([NSItemProvider]) -> Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/interactivedismissdisabled(_:)\",\"title\":\"func interactiveDismissDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/itemprovider(_:)\",\"title\":\"func itemProvider(Optional<() -> NSItemProvider?>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:)-2vfia\",\"title\":\"func keyboardShortcut(KeyboardShortcut?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:)-6bxt2\",\"title\":\"func keyboardShortcut(KeyboardShortcut) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:modifiers:)\",\"title\":\"func keyboardShortcut(KeyEquivalent, modifiers: EventModifiers) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/keyboardshortcut(_:modifiers:localization:)\",\"title\":\"func keyboardShortcut(KeyEquivalent, modifiers: EventModifiers, localization: KeyboardShortcut.Localization) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/labelstyle(_:)\",\"title\":\"func labelStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/labelshidden()\",\"title\":\"func labelsHidden() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/layoutpriority(_:)\",\"title\":\"func layoutPriority(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/linelimit(_:)\",\"title\":\"func lineLimit(Int?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/linespacing(_:)\",\"title\":\"func lineSpacing(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/listitemtint(_:)-9yojl\",\"title\":\"func listItemTint(ListItemTint?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/listitemtint(_:)-w4ry\",\"title\":\"func listItemTint(Color?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/listrowbackground(_:)\",\"title\":\"func listRowBackground<V>(V?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/listrowinsets(_:)\",\"title\":\"func listRowInsets(EdgeInsets?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/liststyle(_:)\",\"title\":\"func listStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/luminancetoalpha()\",\"title\":\"func luminanceToAlpha() -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/mask(_:)\",\"title\":\"func mask<Mask>(Mask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/mask(alignment:_:)\",\"title\":\"func mask<Mask>(alignment: Alignment, () -> Mask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/matchedgeometryeffect(id:in:properties:anchor:issource:)\",\"title\":\"func matchedGeometryEffect<ID>(id: ID, in: Namespace.ID, properties: MatchedGeometryProperties, anchor: UnitPoint, isSource: Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/menubuttonstyle(_:)\",\"title\":\"func menuButtonStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/menuindicator(_:)\",\"title\":\"func menuIndicator(Visibility) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/menustyle(_:)\",\"title\":\"func menuStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/minimumscalefactor(_:)\",\"title\":\"func minimumScaleFactor(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/modifier(_:)\",\"title\":\"func modifier<T>(T) -> ModifiedContent<Self, T>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/monospaceddigit()\",\"title\":\"func monospacedDigit() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/movedisabled(_:)\",\"title\":\"func moveDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/multilinetextalignment(_:)\",\"title\":\"func multilineTextAlignment(TextAlignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationsubtitle(_:)-10991\",\"title\":\"func navigationSubtitle(Text) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationsubtitle(_:)-7xq4j\",\"title\":\"func navigationSubtitle(LocalizedStringKey) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationsubtitle(_:)-8lv93\",\"title\":\"func navigationSubtitle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-544cp\",\"title\":\"func navigationTitle<V>(() -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-5xkgg\",\"title\":\"func navigationTitle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-7209e\",\"title\":\"func navigationTitle(LocalizedStringKey) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationtitle(_:)-8mmxy\",\"title\":\"func navigationTitle(Text) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/navigationviewstyle(_:)\",\"title\":\"func navigationViewStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/offset(_:)\",\"title\":\"func offset(CGSize) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/offset(x:y:)\",\"title\":\"func offset(x: CGFloat, y: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onappear(perform:)\",\"title\":\"func onAppear(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncarousel(_:)\",\"title\":\"func onCarousel((CarouselContext) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncarouseltranslation(_:)\",\"title\":\"func onCarouselTranslation((CGFloat) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onchange(of:perform:)\",\"title\":\"func onChange<V>(of: V, perform: (V) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncommand(_:perform:)\",\"title\":\"func onCommand(Selector, perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncontinueuseractivity(_:perform:)\",\"title\":\"func onContinueUserActivity(String, perform: (NSUserActivity) -> ()) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncopycommand(perform:)\",\"title\":\"func onCopyCommand(perform: (() -> [NSItemProvider])?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/oncutcommand(perform:)\",\"title\":\"func onCutCommand(perform: (() -> [NSItemProvider])?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondeletecommand(perform:)\",\"title\":\"func onDeleteCommand(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondisappear(perform:)\",\"title\":\"func onDisappear(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrag(_:)\",\"title\":\"func onDrag(() -> NSItemProvider) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrag(_:preview:)\",\"title\":\"func onDrag<V>(() -> NSItemProvider, preview: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:delegate:)-2phlc\",\"title\":\"func onDrop(of: [UTType], delegate: DropDelegate) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:delegate:)-5rv2\",\"title\":\"func onDrop(of: [String], delegate: DropDelegate) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-1ne0m\",\"title\":\"func onDrop(of: [String], isTargeted: Binding<Bool>?, perform: ([NSItemProvider]) -> Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-2dbsa\",\"title\":\"func onDrop(of: [String], isTargeted: Binding<Bool>?, perform: ([NSItemProvider], CGPoint) -> Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-3z0u6\",\"title\":\"func onDrop(of: [UTType], isTargeted: Binding<Bool>?, perform: ([NSItemProvider]) -> Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ondrop(of:istargeted:perform:)-7mvpm\",\"title\":\"func onDrop(of: [UTType], isTargeted: Binding<Bool>?, perform: ([NSItemProvider], CGPoint) -> Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onexitcommand(perform:)\",\"title\":\"func onExitCommand(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onhover(perform:)\",\"title\":\"func onHover(perform: (Bool) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)\",\"title\":\"func onLongPressGesture(minimumDuration: Double, maximumDistance: CGFloat, perform: () -> Void, onPressingChanged: ((Bool) -> Void)?) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)\",\"title\":\"func onLongPressGesture(minimumDuration: Double, maximumDistance: CGFloat, pressing: ((Bool) -> Void)?, perform: () -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:perform:onpressingchanged:)\",\"title\":\"func onLongPressGesture(minimumDuration: Double, perform: () -> Void, onPressingChanged: ((Bool) -> Void)?) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onlongpressgesture(minimumduration:pressing:perform:)\",\"title\":\"func onLongPressGesture(minimumDuration: Double, pressing: ((Bool) -> Void)?, perform: () -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onmovecommand(perform:)\",\"title\":\"func onMoveCommand(perform: ((MoveCommandDirection) -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onopenurl(perform:)\",\"title\":\"func onOpenURL(perform: (URL) -> ()) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:perform:)-27ier\",\"title\":\"func onPasteCommand(of: [UTType], perform: ([NSItemProvider]) -> Void) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:perform:)-2cj5d\",\"title\":\"func onPasteCommand(of: [String], perform: ([NSItemProvider]) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:validator:perform:)-18sg7\",\"title\":\"func onPasteCommand<Payload>(of: [UTType], validator: ([NSItemProvider]) -> Payload?, perform: (Payload) -> Void) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpastecommand(of:validator:perform:)-1ws2h\",\"title\":\"func onPasteCommand<Payload>(of: [String], validator: ([NSItemProvider]) -> Payload?, perform: (Payload) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onplaypausecommand(perform:)\",\"title\":\"func onPlayPauseCommand(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onpreferencechange(_:perform:)\",\"title\":\"func onPreferenceChange<K>(K.Type, perform: (K.Value) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onreceive(_:perform:)\",\"title\":\"func onReceive<P>(P, perform: (P.Output) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffle(_:)\",\"title\":\"func onShuffle((ShuffleContext) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffledeck(_:)\",\"title\":\"func onShuffleDeck((ShuffleDeckContext) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffledecktranslation(_:)\",\"title\":\"func onShuffleDeckTranslation((CGFloat) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onshuffletranslation(_:)\",\"title\":\"func onShuffleTranslation((CGFloat) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/onsubmit(of:_:)\",\"title\":\"func onSubmit(of: SubmitTriggers, (() -> Void)) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/ontapgesture(count:perform:)\",\"title\":\"func onTapGesture(count: Int, perform: () -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/opacity(_:)\",\"title\":\"func opacity(Double) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(_:alignment:)\",\"title\":\"func overlay<Overlay>(Overlay, alignment: Alignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(_:ignoressafeareaedges:)\",\"title\":\"func overlay<S>(S, ignoresSafeAreaEdges: Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(_:in:fillstyle:)\",\"title\":\"func overlay<S, T>(S, in: T, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlay(alignment:content:)\",\"title\":\"func overlay<V>(alignment: Alignment, content: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/overlaypreferencevalue(_:_:)\",\"title\":\"func overlayPreferenceValue<Key, T>(Key.Type, (Key.Value) -> T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/padding(_:)-254fg\",\"title\":\"func padding(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/padding(_:)-h9m6\",\"title\":\"func padding(EdgeInsets) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/padding(_:_:)\",\"title\":\"func padding(Edge.Set, CGFloat?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/pagecommand(value:in:step:)\",\"title\":\"func pageCommand<V>(value: Binding<V>, in: ClosedRange<V>, step: V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/pickerstyle(_:)\",\"title\":\"func pickerStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/popover(ispresented:attachmentanchor:arrowedge:content:)\",\"title\":\"func popover<Content>(isPresented: Binding<Bool>, attachmentAnchor: PopoverAttachmentAnchor, arrowEdge: Edge, content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/popover(item:attachmentanchor:arrowedge:content:)\",\"title\":\"func popover<Item, Content>(item: Binding<Item?>, attachmentAnchor: PopoverAttachmentAnchor, arrowEdge: Edge, content: (Item) -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/position(_:)\",\"title\":\"func position(CGPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/position(x:y:)\",\"title\":\"func position(x: CGFloat, y: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/preference(key:value:)\",\"title\":\"func preference<K>(key: K.Type, value: K.Value) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/preferredcolorscheme(_:)\",\"title\":\"func preferredColorScheme(ColorScheme?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/prefersdefaultfocus(_:in:)\",\"title\":\"func prefersDefaultFocus(Bool, in: Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/presentedwindowstyle(_:)\",\"title\":\"func presentedWindowStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/presentedwindowtoolbarstyle(_:)\",\"title\":\"func presentedWindowToolbarStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewcontext(_:)\",\"title\":\"func previewContext<C>(C) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewdevice(_:)\",\"title\":\"func previewDevice(PreviewDevice?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewdisplayname(_:)\",\"title\":\"func previewDisplayName(String?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewinterfaceorientation(_:)\",\"title\":\"func previewInterfaceOrientation(InterfaceOrientation) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/previewlayout(_:)\",\"title\":\"func previewLayout(PreviewLayout) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/privacysensitive(_:)\",\"title\":\"func privacySensitive(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/progressviewstyle(_:)\",\"title\":\"func progressViewStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/projectioneffect(_:)\",\"title\":\"func projectionEffect(ProjectionTransform) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/redacted(reason:)\",\"title\":\"func redacted(reason: RedactionReasons) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/refreshable(action:)\",\"title\":\"func refreshable(action: () async -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/rotation3deffect(_:axis:anchor:anchorz:perspective:)\",\"title\":\"func rotation3DEffect(Angle, axis: (x: CGFloat, y: CGFloat, z: CGFloat), anchor: UnitPoint, anchorZ: CGFloat, perspective: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/rotationeffect(_:anchor:)\",\"title\":\"func rotationEffect(Angle, anchor: UnitPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/safeareainset(edge:alignment:spacing:content:)-5p4xh\",\"title\":\"func safeAreaInset<V>(edge: VerticalEdge, alignment: HorizontalAlignment, spacing: CGFloat?, content: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/safeareainset(edge:alignment:spacing:content:)-8nq8e\",\"title\":\"func safeAreaInset<V>(edge: HorizontalEdge, alignment: VerticalAlignment, spacing: CGFloat?, content: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/saturation(_:)\",\"title\":\"func saturation(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaleeffect(_:anchor:)-7oq71\",\"title\":\"func scaleEffect(CGFloat, anchor: UnitPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaleeffect(_:anchor:)-9chpl\",\"title\":\"func scaleEffect(CGSize, anchor: UnitPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaleeffect(x:y:anchor:)\",\"title\":\"func scaleEffect(x: CGFloat, y: CGFloat, anchor: UnitPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaledtofill()\",\"title\":\"func scaledToFill() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scaledtofit()\",\"title\":\"func scaledToFit() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/scenepadding(_:)\",\"title\":\"func scenePadding(Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchcompletion(_:)\",\"title\":\"func searchCompletion(String) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:)-31g2u\",\"title\":\"func searchable(text: Binding<String>, placement: SearchFieldPlacement, prompt: LocalizedStringKey) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:)-5dpdp\",\"title\":\"func searchable<S>(text: Binding<String>, placement: SearchFieldPlacement, prompt: S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:)-9859\",\"title\":\"func searchable(text: Binding<String>, placement: SearchFieldPlacement, prompt: Text?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:suggestions:)-2uz54\",\"title\":\"func searchable<S>(text: Binding<String>, placement: SearchFieldPlacement, prompt: Text?, suggestions: () -> S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:suggestions:)-7bvn6\",\"title\":\"func searchable<S>(text: Binding<String>, placement: SearchFieldPlacement, prompt: LocalizedStringKey, suggestions: () -> S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/searchable(text:placement:prompt:suggestions:)-8bmqj\",\"title\":\"func searchable<V, S>(text: Binding<String>, placement: SearchFieldPlacement, prompt: S, suggestions: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shadow(color:radius:x:y:)\",\"title\":\"func shadow(color: Color, radius: CGFloat, x: CGFloat, y: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/sheet(ispresented:ondismiss:content:)\",\"title\":\"func sheet<Content>(isPresented: Binding<Bool>, onDismiss: (() -> Void)?, content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/sheet(item:ondismiss:content:)\",\"title\":\"func sheet<Item, Content>(item: Binding<Item?>, onDismiss: (() -> Void)?, content: (Item) -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffleanimation(_:)\",\"title\":\"func shuffleAnimation(ShuffleAnimation) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckanimation(_:)\",\"title\":\"func shuffleDeckAnimation(ShuffleDeckAnimation) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckdisabled(_:)\",\"title\":\"func shuffleDeckDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckscale(_:)\",\"title\":\"func shuffleDeckScale(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledeckstyle(_:)\",\"title\":\"func shuffleDeckStyle(ShuffleDeckStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledecktrigger(on:)\",\"title\":\"func shuffleDeckTrigger<P>(on: P) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffledisabled(_:)\",\"title\":\"func shuffleDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffleoffset(_:)\",\"title\":\"func shuffleOffset(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shufflepadding(_:)\",\"title\":\"func shufflePadding(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shufflescale(_:)\",\"title\":\"func shuffleScale(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shufflestyle(_:)\",\"title\":\"func shuffleStyle(ShuffleStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/shuffletrigger(on:)\",\"title\":\"func shuffleTrigger<P>(on: P) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/simultaneousgesture(_:including:)\",\"title\":\"func simultaneousGesture<T>(T, including: GestureMask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/speechadjustedpitch(_:)\",\"title\":\"func speechAdjustedPitch(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/speechalwaysincludespunctuation(_:)\",\"title\":\"func speechAlwaysIncludesPunctuation(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/speechannouncementsqueued(_:)\",\"title\":\"func speechAnnouncementsQueued(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/speechspellsoutcharacters(_:)\",\"title\":\"func speechSpellsOutCharacters(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/submitlabel(_:)\",\"title\":\"func submitLabel(SubmitLabel) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/submitscope(_:)\",\"title\":\"func submitScope(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/swipeactions(edge:allowsfullswipe:content:)\",\"title\":\"func swipeActions<T>(edge: HorizontalEdge, allowsFullSwipe: Bool, content: () -> T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/symbolrenderingmode(_:)\",\"title\":\"func symbolRenderingMode(SymbolRenderingMode?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/symbolvariant(_:)\",\"title\":\"func symbolVariant(SymbolVariants) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tabitem(_:)\",\"title\":\"func tabItem<V>(() -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tabviewstyle(_:)\",\"title\":\"func tabViewStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tablestyle(_:)\",\"title\":\"func tableStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tag(_:)\",\"title\":\"func tag<V>(V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/task(id:priority:_:)\",\"title\":\"func task<T>(id: T, priority: TaskPriority, () async -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/task(priority:_:)\",\"title\":\"func task(priority: TaskPriority, () async -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/textcase(_:)\",\"title\":\"func textCase(Text.Case?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/textcontenttype(_:)\",\"title\":\"func textContentType(NSTextContentType?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/textfieldstyle(_:)\",\"title\":\"func textFieldStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/textselection(_:)\",\"title\":\"func textSelection<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/tint(_:)\",\"title\":\"func tint(Color?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/togglestyle(_:)\",\"title\":\"func toggleStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/toolbar(content:)-6zmlc\",\"title\":\"func toolbar<Content>(content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/toolbar(content:)-7j09e\",\"title\":\"func toolbar<Content>(content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/toolbar(id:content:)\",\"title\":\"func toolbar<Content>(id: String, content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbar(_:)\",\"title\":\"func touchBar<Content>(TouchBar<Content>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbar(content:)\",\"title\":\"func touchBar<Content>(content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbarcustomizationlabel(_:)\",\"title\":\"func touchBarCustomizationLabel(Text) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbaritempresence(_:)\",\"title\":\"func touchBarItemPresence(TouchBarItemPresence) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/touchbaritemprincipal(_:)\",\"title\":\"func touchBarItemPrincipal(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transaction(_:)\",\"title\":\"func transaction((inout Transaction) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transformanchorpreference(key:value:transform:)\",\"title\":\"func transformAnchorPreference<A, K>(key: K.Type, value: Anchor<A>.Source, transform: (inout K.Value, Anchor<A>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transformeffect(_:)\",\"title\":\"func transformEffect(CGAffineTransform) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transformenvironment(_:transform:)\",\"title\":\"func transformEnvironment<V>(WritableKeyPath<EnvironmentValues, V>, transform: (inout V) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transformpreference(_:_:)\",\"title\":\"func transformPreference<K>(K.Type, (inout K.Value) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/transition(_:)\",\"title\":\"func transition(AnyTransition) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/truncationmode(_:)\",\"title\":\"func truncationMode(Text.TruncationMode) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/unredacted()\",\"title\":\"func unredacted() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/useractivity(_:element:_:)\",\"title\":\"func userActivity<P>(String, element: P?, (P, NSUserActivity) -> ()) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/useractivity(_:isactive:_:)\",\"title\":\"func userActivity(String, isActive: Bool, (NSUserActivity) -> ()) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/zindex(_:)\",\"title\":\"func zIndex(Double) -> some View\",\"type\":\"method\"}],\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\\/view-implementations\",\"title\":\"View Implementations\",\"type\":\"symbol\"}],\"path\":\"\\/documentation\\/shuffleit\\/carouselstack\",\"title\":\"CarouselStack\",\"type\":\"struct\"},{\"children\":[{\"title\":\"Enumeration Cases\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/easein\",\"title\":\"case easeIn\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/easeinout\",\"title\":\"case easeInOut\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/easeout\",\"title\":\"case easeOut\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/linear\",\"title\":\"case linear\",\"type\":\"case\"},{\"title\":\"Default Implementations\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Operators\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/!=(_:_:)\",\"title\":\"static func != (Self, Self) -> Bool\",\"type\":\"op\"}],\"path\":\"\\/documentation\\/shuffleit\\/carouselanimation\\/equatable-implementations\",\"title\":\"Equatable Implementations\",\"type\":\"symbol\"}],\"path\":\"\\/documentation\\/shuffleit\\/carouselanimation\",\"title\":\"CarouselAnimation\",\"type\":\"enum\"},{\"children\":[{\"title\":\"Instance Properties\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselcontext\\/direction\",\"title\":\"let direction: CarouselDirection\",\"type\":\"property\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselcontext\\/index\",\"title\":\"let index: Int\",\"type\":\"property\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselcontext\\/previousindex\",\"title\":\"let previousIndex: Int\",\"type\":\"property\"}],\"path\":\"\\/documentation\\/shuffleit\\/carouselcontext\",\"title\":\"CarouselContext\",\"type\":\"struct\"},{\"children\":[{\"title\":\"Enumeration Cases\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouseldirection\\/left\",\"title\":\"case left\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouseldirection\\/right\",\"title\":\"case right\",\"type\":\"case\"},{\"title\":\"Default Implementations\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Operators\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouseldirection\\/!=(_:_:)\",\"title\":\"static func != (Self, Self) -> Bool\",\"type\":\"op\"}],\"path\":\"\\/documentation\\/shuffleit\\/carouseldirection\\/equatable-implementations\",\"title\":\"Equatable Implementations\",\"type\":\"symbol\"}],\"path\":\"\\/documentation\\/shuffleit\\/carouseldirection\",\"title\":\"CarouselDirection\",\"type\":\"enum\"},{\"children\":[{\"title\":\"Enumeration Cases\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstyle\\/finitescroll\",\"title\":\"case finiteScroll\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstyle\\/infinitescroll\",\"title\":\"case infiniteScroll\",\"type\":\"case\"},{\"title\":\"Default Implementations\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Operators\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/carouselstyle\\/!=(_:_:)\",\"title\":\"static func != (Self, Self) -> Bool\",\"type\":\"op\"}],\"path\":\"\\/documentation\\/shuffleit\\/carouselstyle\\/equatable-implementations\",\"title\":\"Equatable Implementations\",\"type\":\"symbol\"}],\"path\":\"\\/documentation\\/shuffleit\\/carouselstyle\",\"title\":\"CarouselStyle\",\"type\":\"enum\"},{\"title\":\"ShuffleDeck\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Initializers\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/init(_:initialindex:content:)-6ou47\",\"title\":\"init(Data, initialIndex: Data.Index?, content: (Data.Element) -> Content)\",\"type\":\"init\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/init(_:initialindex:content:)-9osfg\",\"title\":\"init(Data, initialIndex: Data.Index?, content: (Data.Element, CGFloat) -> Content)\",\"type\":\"init\"},{\"title\":\"Instance Properties\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/body\",\"title\":\"var body: some View\",\"type\":\"property\"},{\"title\":\"Default Implementations\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Instance Methods\",\"type\":\"groupMarker\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accentcolor(_:)\",\"title\":\"func accentColor(Color?) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(activationpoint:)-5yxv\",\"title\":\"func accessibility(activationPoint: UnitPoint) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(activationpoint:)-6f80\",\"title\":\"func accessibility(activationPoint: CGPoint) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(addtraits:)\",\"title\":\"func accessibility(addTraits: AccessibilityTraits) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(hidden:)\",\"title\":\"func accessibility(hidden: Bool) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(hint:)\",\"title\":\"func accessibility(hint: Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(identifier:)\",\"title\":\"func accessibility(identifier: String) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(inputlabels:)\",\"title\":\"func accessibility(inputLabels: [Text]) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(label:)\",\"title\":\"func accessibility(label: Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(removetraits:)\",\"title\":\"func accessibility(removeTraits: AccessibilityTraits) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(selectionidentifier:)\",\"title\":\"func accessibility(selectionIdentifier: AnyHashable) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(sortpriority:)\",\"title\":\"func accessibility(sortPriority: Double) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibility(value:)\",\"title\":\"func accessibility(value: Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(_:_:)\",\"title\":\"func accessibilityAction(AccessibilityActionKind, () -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(action:label:)\",\"title\":\"func accessibilityAction<Label>(action: () -> Void, label: () -> Label) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(named:_:)-5vajk\",\"title\":\"func accessibilityAction(named: Text, () -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(named:_:)-7cvr0\",\"title\":\"func accessibilityAction<S>(named: S, () -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaction(named:_:)-7d1bz\",\"title\":\"func accessibilityAction(named: LocalizedStringKey, () -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityactivationpoint(_:)-4i64i\",\"title\":\"func accessibilityActivationPoint(CGPoint) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityactivationpoint(_:)-8rijn\",\"title\":\"func accessibilityActivationPoint(UnitPoint) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityaddtraits(_:)\",\"title\":\"func accessibilityAddTraits(AccessibilityTraits) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityadjustableaction(_:)\",\"title\":\"func accessibilityAdjustableAction((AccessibilityAdjustmentDirection) -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitychartdescriptor(_:)\",\"title\":\"func accessibilityChartDescriptor<R>(R) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitychildren(children:)\",\"title\":\"func accessibilityChildren<V>(children: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-1dnrk\",\"title\":\"func accessibilityCustomContent<V>(LocalizedStringKey, V, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-1ucuw\",\"title\":\"func accessibilityCustomContent<V>(AccessibilityCustomContentKey, V, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-2nazk\",\"title\":\"func accessibilityCustomContent(LocalizedStringKey, Text, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-3pllm\",\"title\":\"func accessibilityCustomContent(AccessibilityCustomContentKey, Text?, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-3pod7\",\"title\":\"func accessibilityCustomContent(AccessibilityCustomContentKey, LocalizedStringKey, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-4xdb3\",\"title\":\"func accessibilityCustomContent(LocalizedStringKey, LocalizedStringKey, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-5vxjo\",\"title\":\"func accessibilityCustomContent(Text, Text, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitycustomcontent(_:_:importance:)-qwm7\",\"title\":\"func accessibilityCustomContent<L, V>(L, V, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityelement(children:)\",\"title\":\"func accessibilityElement(children: AccessibilityChildBehavior) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityfocused(_:)\",\"title\":\"func accessibilityFocused(AccessibilityFocusState<Bool>.Binding) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityfocused(_:equals:)\",\"title\":\"func accessibilityFocused<Value>(AccessibilityFocusState<Value>.Binding, equals: Value) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityheading(_:)\",\"title\":\"func accessibilityHeading(AccessibilityHeadingLevel) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhidden(_:)\",\"title\":\"func accessibilityHidden(Bool) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhint(_:)-1rrl0\",\"title\":\"func accessibilityHint(LocalizedStringKey) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhint(_:)-5nt5z\",\"title\":\"func accessibilityHint<S>(S) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityhint(_:)-v4ao\",\"title\":\"func accessibilityHint(Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityidentifier(_:)\",\"title\":\"func accessibilityIdentifier(String) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityignoresinvertcolors(_:)\",\"title\":\"func accessibilityIgnoresInvertColors(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityinputlabels(_:)-3x55a\",\"title\":\"func accessibilityInputLabels([Text]) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityinputlabels(_:)-6n0d7\",\"title\":\"func accessibilityInputLabels([LocalizedStringKey]) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityinputlabels(_:)-8jm4t\",\"title\":\"func accessibilityInputLabels<S>([S]) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabel(_:)-3ly3t\",\"title\":\"func accessibilityLabel(Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabel(_:)-4h91y\",\"title\":\"func accessibilityLabel<S>(S) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabel(_:)-6a6no\",\"title\":\"func accessibilityLabel(LocalizedStringKey) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylabeledpair(role:id:in:)\",\"title\":\"func accessibilityLabeledPair<ID>(role: AccessibilityLabeledPairRole, id: ID, in: Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitylinkedgroup(id:in:)\",\"title\":\"func accessibilityLinkedGroup<ID>(id: ID, in: Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityremovetraits(_:)\",\"title\":\"func accessibilityRemoveTraits(AccessibilityTraits) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrepresentation(representation:)\",\"title\":\"func accessibilityRepresentation<V>(representation: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrespondstouserinteraction(_:)\",\"title\":\"func accessibilityRespondsToUserInteraction(Bool) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-1orax\",\"title\":\"func accessibilityRotor<L, Content>(L, entries: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-2p5bh\",\"title\":\"func accessibilityRotor<Content>(Text, entries: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-5mxjh\",\"title\":\"func accessibilityRotor<Content>(AccessibilitySystemRotor, entries: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:)-7dolw\",\"title\":\"func accessibilityRotor<Content>(LocalizedStringKey, entries: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-10oqf\",\"title\":\"func accessibilityRotor<EntryModel, ID>(Text, entries: [EntryModel], entryID: KeyPath<EntryModel, ID>, entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-25d98\",\"title\":\"func accessibilityRotor<EntryModel, ID>(LocalizedStringKey, entries: [EntryModel], entryID: KeyPath<EntryModel, ID>, entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-51dnw\",\"title\":\"func accessibilityRotor<EntryModel, ID>(AccessibilitySystemRotor, entries: [EntryModel], entryID: KeyPath<EntryModel, ID>, entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entryid:entrylabel:)-6jn71\",\"title\":\"func accessibilityRotor<L, EntryModel, ID>(L, entries: [EntryModel], entryID: KeyPath<EntryModel, ID>, entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-3f3j9\",\"title\":\"func accessibilityRotor<EntryModel>(LocalizedStringKey, entries: [EntryModel], entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-3lh2p\",\"title\":\"func accessibilityRotor<L, EntryModel>(L, entries: [EntryModel], entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-6wf02\",\"title\":\"func accessibilityRotor<EntryModel>(AccessibilitySystemRotor, entries: [EntryModel], entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:entries:entrylabel:)-7t24j\",\"title\":\"func accessibilityRotor<EntryModel>(Text, entries: [EntryModel], entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-6nczq\",\"title\":\"func accessibilityRotor(AccessibilitySystemRotor, textRanges: [Range<String.Index>]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-8d4es\",\"title\":\"func accessibilityRotor(Text, textRanges: [Range<String.Index>]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-8l6zm\",\"title\":\"func accessibilityRotor(LocalizedStringKey, textRanges: [Range<String.Index>]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotor(_:textranges:)-964n8\",\"title\":\"func accessibilityRotor<L>(L, textRanges: [Range<String.Index>]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityrotorentry(id:in:)\",\"title\":\"func accessibilityRotorEntry<ID>(id: ID, in: Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityscrollaction(_:)\",\"title\":\"func accessibilityScrollAction((Edge) -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityshowslargecontentviewer()\",\"title\":\"func accessibilityShowsLargeContentViewer() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityshowslargecontentviewer(_:)\",\"title\":\"func accessibilityShowsLargeContentViewer<V>(() -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitysortpriority(_:)\",\"title\":\"func accessibilitySortPriority(Double) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilitytextcontenttype(_:)\",\"title\":\"func accessibilityTextContentType(AccessibilityTextContentType) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityvalue(_:)-3kff4\",\"title\":\"func accessibilityValue<S>(S) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityvalue(_:)-7dd6l\",\"title\":\"func accessibilityValue(LocalizedStringKey) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/accessibilityvalue(_:)-7tnqf\",\"title\":\"func accessibilityValue(Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:)-2i24c\",\"title\":\"func alert<A>(LocalizedStringKey, isPresented: Binding<Bool>, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:)-6i5wg\",\"title\":\"func alert<S, A>(S, isPresented: Binding<Bool>, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:)-6mdoc\",\"title\":\"func alert<A>(Text, isPresented: Binding<Bool>, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:message:)-5j65x\",\"title\":\"func alert<S, A, M>(S, isPresented: Binding<Bool>, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:message:)-6iohl\",\"title\":\"func alert<A, M>(LocalizedStringKey, isPresented: Binding<Bool>, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:actions:message:)-8x9o0\",\"title\":\"func alert<A, M>(Text, isPresented: Binding<Bool>, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:)-43fim\",\"title\":\"func alert<A, T>(Text, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:)-6dwv5\",\"title\":\"func alert<S, A, T>(S, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:)-77clm\",\"title\":\"func alert<A, T>(LocalizedStringKey, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:message:)-7p8yz\",\"title\":\"func alert<A, M, T>(LocalizedStringKey, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:message:)-7ptxx\",\"title\":\"func alert<S, A, M, T>(S, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(_:ispresented:presenting:actions:message:)-88es2\",\"title\":\"func alert<A, M, T>(Text, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(ispresented:content:)\",\"title\":\"func alert(isPresented: Binding<Bool>, content: () -> Alert) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(ispresented:error:actions:)\",\"title\":\"func alert<E, A>(isPresented: Binding<Bool>, error: E?, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(ispresented:error:actions:message:)\",\"title\":\"func alert<E, A, M>(isPresented: Binding<Bool>, error: E?, actions: (E) -> A, message: (E) -> M) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alert(item:content:)\",\"title\":\"func alert<Item>(item: Binding<Item?>, content: (Item) -> Alert) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alignmentguide(_:computevalue:)-5dc06\",\"title\":\"func alignmentGuide(HorizontalAlignment, computeValue: (ViewDimensions) -> CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/alignmentguide(_:computevalue:)-98bnf\",\"title\":\"func alignmentGuide(VerticalAlignment, computeValue: (ViewDimensions) -> CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/allowshittesting(_:)\",\"title\":\"func allowsHitTesting(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/allowstightening(_:)\",\"title\":\"func allowsTightening(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/anchorpreference(key:value:transform:)\",\"title\":\"func anchorPreference<A, K>(key: K.Type, value: Anchor<A>.Source, transform: (Anchor<A>) -> K.Value) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/animation(_:)\",\"title\":\"func animation(Animation?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/animation(_:value:)\",\"title\":\"func animation<V>(Animation?, value: V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/aspectratio(_:contentmode:)-7qpsf\",\"title\":\"func aspectRatio(CGFloat?, contentMode: ContentMode) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/aspectratio(_:contentmode:)-98csp\",\"title\":\"func aspectRatio(CGSize, contentMode: ContentMode) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:alignment:)\",\"title\":\"func background<Background>(Background, alignment: Alignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:ignoressafeareaedges:)\",\"title\":\"func background<S>(S, ignoresSafeAreaEdges: Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:in:fillstyle:)-16mk7\",\"title\":\"func background<S, T>(S, in: T, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(_:in:fillstyle:)-3xtjy\",\"title\":\"func background<S, T>(S, in: T, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(alignment:content:)\",\"title\":\"func background<V>(alignment: Alignment, content: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(ignoressafeareaedges:)\",\"title\":\"func background(ignoresSafeAreaEdges: Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(in:fillstyle:)-22zkr\",\"title\":\"func background<S>(in: S, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/background(in:fillstyle:)-pkki\",\"title\":\"func background<S>(in: S, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/backgroundpreferencevalue(_:_:)\",\"title\":\"func backgroundPreferenceValue<Key, T>(Key.Type, (Key.Value) -> T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-23vvh\",\"title\":\"func badge(Int) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-3b7a5\",\"title\":\"func badge(LocalizedStringKey?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-4eyh0\",\"title\":\"func badge<S>(S?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/badge(_:)-5yfrj\",\"title\":\"func badge(Text?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/blendmode(_:)\",\"title\":\"func blendMode(BlendMode) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/blur(radius:opaque:)\",\"title\":\"func blur(radius: CGFloat, opaque: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/border(_:width:)\",\"title\":\"func border<S>(S, width: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/brightness(_:)\",\"title\":\"func brightness(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/buttonbordershape(_:)\",\"title\":\"func buttonBorderShape(ButtonBorderShape) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/buttonstyle(_:)-1hkio\",\"title\":\"func buttonStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/buttonstyle(_:)-1mobg\",\"title\":\"func buttonStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselanimation(_:)\",\"title\":\"func carouselAnimation(CarouselAnimation) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouseldisabled(_:)\",\"title\":\"func carouselDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselpadding(_:)\",\"title\":\"func carouselPadding(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselscale(_:)\",\"title\":\"func carouselScale(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselspacing(_:)\",\"title\":\"func carouselSpacing(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouselstyle(_:)\",\"title\":\"func carouselStyle(CarouselStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/carouseltrigger(on:)\",\"title\":\"func carouselTrigger<P>(on: P) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/clipshape(_:style:)\",\"title\":\"func clipShape<S>(S, style: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/clipped(antialiased:)\",\"title\":\"func clipped(antialiased: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/colorinvert()\",\"title\":\"func colorInvert() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/colormultiply(_:)\",\"title\":\"func colorMultiply(Color) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/colorscheme(_:)\",\"title\":\"func colorScheme(ColorScheme) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/compositinggroup()\",\"title\":\"func compositingGroup() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-7c2i9\",\"title\":\"func confirmationDialog<S, A>(S, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-7p1mg\",\"title\":\"func confirmationDialog<A>(Text, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-9t8f5\",\"title\":\"func confirmationDialog<A>(LocalizedStringKey, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-592a8\",\"title\":\"func confirmationDialog<A, M>(LocalizedStringKey, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-6sq5i\",\"title\":\"func confirmationDialog<S, A, M>(S, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-8ffij\",\"title\":\"func confirmationDialog<A, M>(Text, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-455gp\",\"title\":\"func confirmationDialog<S, A, T>(S, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pvn4\",\"title\":\"func confirmationDialog<A, T>(Text, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-8fhv\",\"title\":\"func confirmationDialog<A, T>(LocalizedStringKey, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4bg57\",\"title\":\"func confirmationDialog<A, M, T>(LocalizedStringKey, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4pxpc\",\"title\":\"func confirmationDialog<S, A, M, T>(S, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-50r8e\",\"title\":\"func confirmationDialog<A, M, T>(Text, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/containershape(_:)\",\"title\":\"func containerShape<T>(T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contentshape(_:_:eofill:)\",\"title\":\"func contentShape<S>(ContentShapeKinds, S, eoFill: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contentshape(_:eofill:)\",\"title\":\"func contentShape<S>(S, eoFill: Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contextmenu(_:)\",\"title\":\"func contextMenu<MenuItems>(ContextMenu<MenuItems>?) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contextmenu(menuitems:)\",\"title\":\"func contextMenu<MenuItems>(menuItems: () -> MenuItems) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/contrast(_:)\",\"title\":\"func contrast(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/controlgroupstyle(_:)\",\"title\":\"func controlGroupStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/controlsize(_:)\",\"title\":\"func controlSize(ControlSize) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/coordinatespace(name:)\",\"title\":\"func coordinateSpace<T>(name: T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/cornerradius(_:antialiased:)\",\"title\":\"func cornerRadius(CGFloat, antialiased: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/datepickerstyle(_:)\",\"title\":\"func datePickerStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/defaultappstorage(_:)\",\"title\":\"func defaultAppStorage(UserDefaults) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/deletedisabled(_:)\",\"title\":\"func deleteDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/disableautocorrection(_:)\",\"title\":\"func disableAutocorrection(Bool?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/disabled(_:)\",\"title\":\"func disabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/drawinggroup(opaque:colormode:)\",\"title\":\"func drawingGroup(opaque: Bool, colorMode: ColorRenderingMode) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/dynamictypesize(_:)\",\"title\":\"func dynamicTypeSize(DynamicTypeSize) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/edgesignoringsafearea(_:)\",\"title\":\"func edgesIgnoringSafeArea(Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/environment(_:_:)\",\"title\":\"func environment<V>(WritableKeyPath<EnvironmentValues, V>, V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/environmentobject(_:)\",\"title\":\"func environmentObject<T>(T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/exportsitemproviders(_:onexport:)\",\"title\":\"func exportsItemProviders([UTType], onExport: () -> [NSItemProvider]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/exportsitemproviders(_:onexport:onedit:)\",\"title\":\"func exportsItemProviders([UTType], onExport: () -> [NSItemProvider], onEdit: ([NSItemProvider]) -> Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-54p9i\",\"title\":\"func fileExporter<D>(isPresented: Binding<Bool>, document: D?, contentType: UTType, defaultFilename: String?, onCompletion: (Result<URL, Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-z1af\",\"title\":\"func fileExporter<D>(isPresented: Binding<Bool>, document: D?, contentType: UTType, defaultFilename: String?, onCompletion: (Result<URL, Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-4ixib\",\"title\":\"func fileExporter<C>(isPresented: Binding<Bool>, documents: C, contentType: UTType, onCompletion: (Result<[URL], Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-72o0w\",\"title\":\"func fileExporter<C>(isPresented: Binding<Bool>, documents: C, contentType: UTType, onCompletion: (Result<[URL], Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)\",\"title\":\"func fileImporter(isPresented: Binding<Bool>, allowedContentTypes: [UTType], allowsMultipleSelection: Bool, onCompletion: (Result<[URL], Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)\",\"title\":\"func fileImporter(isPresented: Binding<Bool>, allowedContentTypes: [UTType], onCompletion: (Result<URL, Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/filemover(ispresented:file:oncompletion:)\",\"title\":\"func fileMover(isPresented: Binding<Bool>, file: URL?, onCompletion: (Result<URL, Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/filemover(ispresented:files:oncompletion:)\",\"title\":\"func fileMover<C>(isPresented: Binding<Bool>, files: C, onCompletion: (Result<[URL], Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fixedsize()\",\"title\":\"func fixedSize() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/fixedsize(horizontal:vertical:)\",\"title\":\"func fixedSize(horizontal: Bool, vertical: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/flipsforrighttoleftlayoutdirection(_:)\",\"title\":\"func flipsForRightToLeftLayoutDirection(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusscope(_:)\",\"title\":\"func focusScope(Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusable(_:)\",\"title\":\"func focusable(Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusable(_:onfocuschange:)\",\"title\":\"func focusable(Bool, onFocusChange: (Bool) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focused(_:)\",\"title\":\"func focused(FocusState<Bool>.Binding) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focused(_:equals:)\",\"title\":\"func focused<Value>(FocusState<Value>.Binding, equals: Value) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusedscenevalue(_:_:)\",\"title\":\"func focusedSceneValue<T>(WritableKeyPath<FocusedValues, T?>, T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/focusedvalue(_:_:)\",\"title\":\"func focusedValue<Value>(WritableKeyPath<FocusedValues, Value?>, Value) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/font(_:)\",\"title\":\"func font(Font?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundcolor(_:)\",\"title\":\"func foregroundColor(Color?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundstyle(_:)\",\"title\":\"func foregroundStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundstyle(_:_:)\",\"title\":\"func foregroundStyle<S1, S2>(S1, S2) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/foregroundstyle(_:_:_:)\",\"title\":\"func foregroundStyle<S1, S2, S3>(S1, S2, S3) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/frame()\",\"title\":\"func frame() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)\",\"title\":\"func frame(minWidth: CGFloat?, idealWidth: CGFloat?, maxWidth: CGFloat?, minHeight: CGFloat?, idealHeight: CGFloat?, maxHeight: CGFloat?, alignment: Alignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/frame(width:height:alignment:)\",\"title\":\"func frame(width: CGFloat?, height: CGFloat?, alignment: Alignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/gesture(_:including:)\",\"title\":\"func gesture<T>(T, including: GestureMask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/grayscale(_:)\",\"title\":\"func grayscale(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/groupboxstyle(_:)\",\"title\":\"func groupBoxStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/handlesexternalevents(preferring:allowing:)\",\"title\":\"func handlesExternalEvents(preferring: Set<String>, allowing: Set<String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/headerprominence(_:)\",\"title\":\"func headerProminence(Prominence) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/help(_:)-4gfc1\",\"title\":\"func help(Text) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/help(_:)-57kg7\",\"title\":\"func help(LocalizedStringKey) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/help(_:)-5c7gg\",\"title\":\"func help<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/hidden()\",\"title\":\"func hidden() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/highprioritygesture(_:including:)\",\"title\":\"func highPriorityGesture<T>(T, including: GestureMask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/horizontalradiogrouplayout()\",\"title\":\"func horizontalRadioGroupLayout() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/huerotation(_:)\",\"title\":\"func hueRotation(Angle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/id(_:)\",\"title\":\"func id<ID>(ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ignoressafearea(_:edges:)\",\"title\":\"func ignoresSafeArea(SafeAreaRegions, edges: Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/imagescale(_:)\",\"title\":\"func imageScale(Image.Scale) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/importsitemproviders(_:onimport:)\",\"title\":\"func importsItemProviders([UTType], onImport: ([NSItemProvider]) -> Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/interactivedismissdisabled(_:)\",\"title\":\"func interactiveDismissDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/itemprovider(_:)\",\"title\":\"func itemProvider(Optional<() -> NSItemProvider?>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:)-8kg9p\",\"title\":\"func keyboardShortcut(KeyboardShortcut?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:)-92las\",\"title\":\"func keyboardShortcut(KeyboardShortcut) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:modifiers:)\",\"title\":\"func keyboardShortcut(KeyEquivalent, modifiers: EventModifiers) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/keyboardshortcut(_:modifiers:localization:)\",\"title\":\"func keyboardShortcut(KeyEquivalent, modifiers: EventModifiers, localization: KeyboardShortcut.Localization) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/labelstyle(_:)\",\"title\":\"func labelStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/labelshidden()\",\"title\":\"func labelsHidden() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/layoutpriority(_:)\",\"title\":\"func layoutPriority(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/linelimit(_:)\",\"title\":\"func lineLimit(Int?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/linespacing(_:)\",\"title\":\"func lineSpacing(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/listitemtint(_:)-4okc6\",\"title\":\"func listItemTint(Color?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/listitemtint(_:)-8uys6\",\"title\":\"func listItemTint(ListItemTint?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/listrowbackground(_:)\",\"title\":\"func listRowBackground<V>(V?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/listrowinsets(_:)\",\"title\":\"func listRowInsets(EdgeInsets?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/liststyle(_:)\",\"title\":\"func listStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/luminancetoalpha()\",\"title\":\"func luminanceToAlpha() -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/mask(_:)\",\"title\":\"func mask<Mask>(Mask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/mask(alignment:_:)\",\"title\":\"func mask<Mask>(alignment: Alignment, () -> Mask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/matchedgeometryeffect(id:in:properties:anchor:issource:)\",\"title\":\"func matchedGeometryEffect<ID>(id: ID, in: Namespace.ID, properties: MatchedGeometryProperties, anchor: UnitPoint, isSource: Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/menubuttonstyle(_:)\",\"title\":\"func menuButtonStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/menuindicator(_:)\",\"title\":\"func menuIndicator(Visibility) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/menustyle(_:)\",\"title\":\"func menuStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/minimumscalefactor(_:)\",\"title\":\"func minimumScaleFactor(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/modifier(_:)\",\"title\":\"func modifier<T>(T) -> ModifiedContent<Self, T>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/monospaceddigit()\",\"title\":\"func monospacedDigit() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/movedisabled(_:)\",\"title\":\"func moveDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/multilinetextalignment(_:)\",\"title\":\"func multilineTextAlignment(TextAlignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationsubtitle(_:)-4xcr1\",\"title\":\"func navigationSubtitle(LocalizedStringKey) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationsubtitle(_:)-62wq4\",\"title\":\"func navigationSubtitle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationsubtitle(_:)-89wf8\",\"title\":\"func navigationSubtitle(Text) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-15ycd\",\"title\":\"func navigationTitle(LocalizedStringKey) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-3gz4j\",\"title\":\"func navigationTitle(Text) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-6t67o\",\"title\":\"func navigationTitle<V>(() -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationtitle(_:)-8moj6\",\"title\":\"func navigationTitle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/navigationviewstyle(_:)\",\"title\":\"func navigationViewStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/offset(_:)\",\"title\":\"func offset(CGSize) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/offset(x:y:)\",\"title\":\"func offset(x: CGFloat, y: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onappear(perform:)\",\"title\":\"func onAppear(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncarousel(_:)\",\"title\":\"func onCarousel((CarouselContext) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncarouseltranslation(_:)\",\"title\":\"func onCarouselTranslation((CGFloat) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onchange(of:perform:)\",\"title\":\"func onChange<V>(of: V, perform: (V) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncommand(_:perform:)\",\"title\":\"func onCommand(Selector, perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncontinueuseractivity(_:perform:)\",\"title\":\"func onContinueUserActivity(String, perform: (NSUserActivity) -> ()) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncopycommand(perform:)\",\"title\":\"func onCopyCommand(perform: (() -> [NSItemProvider])?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/oncutcommand(perform:)\",\"title\":\"func onCutCommand(perform: (() -> [NSItemProvider])?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondeletecommand(perform:)\",\"title\":\"func onDeleteCommand(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondisappear(perform:)\",\"title\":\"func onDisappear(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrag(_:)\",\"title\":\"func onDrag(() -> NSItemProvider) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrag(_:preview:)\",\"title\":\"func onDrag<V>(() -> NSItemProvider, preview: () -> V) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:delegate:)-55jbd\",\"title\":\"func onDrop(of: [String], delegate: DropDelegate) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:delegate:)-9xy3o\",\"title\":\"func onDrop(of: [UTType], delegate: DropDelegate) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-2wosm\",\"title\":\"func onDrop(of: [UTType], isTargeted: Binding<Bool>?, perform: ([NSItemProvider]) -> Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-4zd72\",\"title\":\"func onDrop(of: [UTType], isTargeted: Binding<Bool>?, perform: ([NSItemProvider], CGPoint) -> Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-6o6wo\",\"title\":\"func onDrop(of: [String], isTargeted: Binding<Bool>?, perform: ([NSItemProvider]) -> Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ondrop(of:istargeted:perform:)-btgb\",\"title\":\"func onDrop(of: [String], isTargeted: Binding<Bool>?, perform: ([NSItemProvider], CGPoint) -> Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onexitcommand(perform:)\",\"title\":\"func onExitCommand(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onhover(perform:)\",\"title\":\"func onHover(perform: (Bool) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)\",\"title\":\"func onLongPressGesture(minimumDuration: Double, maximumDistance: CGFloat, perform: () -> Void, onPressingChanged: ((Bool) -> Void)?) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)\",\"title\":\"func onLongPressGesture(minimumDuration: Double, maximumDistance: CGFloat, pressing: ((Bool) -> Void)?, perform: () -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:perform:onpressingchanged:)\",\"title\":\"func onLongPressGesture(minimumDuration: Double, perform: () -> Void, onPressingChanged: ((Bool) -> Void)?) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onlongpressgesture(minimumduration:pressing:perform:)\",\"title\":\"func onLongPressGesture(minimumDuration: Double, pressing: ((Bool) -> Void)?, perform: () -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onmovecommand(perform:)\",\"title\":\"func onMoveCommand(perform: ((MoveCommandDirection) -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onopenurl(perform:)\",\"title\":\"func onOpenURL(perform: (URL) -> ()) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:perform:)-3phpt\",\"title\":\"func onPasteCommand(of: [String], perform: ([NSItemProvider]) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:perform:)-7nzf4\",\"title\":\"func onPasteCommand(of: [UTType], perform: ([NSItemProvider]) -> Void) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:validator:perform:)-5h2lv\",\"title\":\"func onPasteCommand<Payload>(of: [String], validator: ([NSItemProvider]) -> Payload?, perform: (Payload) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpastecommand(of:validator:perform:)-7k6qm\",\"title\":\"func onPasteCommand<Payload>(of: [UTType], validator: ([NSItemProvider]) -> Payload?, perform: (Payload) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onplaypausecommand(perform:)\",\"title\":\"func onPlayPauseCommand(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onpreferencechange(_:perform:)\",\"title\":\"func onPreferenceChange<K>(K.Type, perform: (K.Value) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onreceive(_:perform:)\",\"title\":\"func onReceive<P>(P, perform: (P.Output) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffle(_:)\",\"title\":\"func onShuffle((ShuffleContext) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffledeck(_:)\",\"title\":\"func onShuffleDeck((ShuffleDeckContext) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffledecktranslation(_:)\",\"title\":\"func onShuffleDeckTranslation((CGFloat) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onshuffletranslation(_:)\",\"title\":\"func onShuffleTranslation((CGFloat) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/onsubmit(of:_:)\",\"title\":\"func onSubmit(of: SubmitTriggers, (() -> Void)) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/ontapgesture(count:perform:)\",\"title\":\"func onTapGesture(count: Int, perform: () -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/opacity(_:)\",\"title\":\"func opacity(Double) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(_:alignment:)\",\"title\":\"func overlay<Overlay>(Overlay, alignment: Alignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(_:ignoressafeareaedges:)\",\"title\":\"func overlay<S>(S, ignoresSafeAreaEdges: Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(_:in:fillstyle:)\",\"title\":\"func overlay<S, T>(S, in: T, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlay(alignment:content:)\",\"title\":\"func overlay<V>(alignment: Alignment, content: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/overlaypreferencevalue(_:_:)\",\"title\":\"func overlayPreferenceValue<Key, T>(Key.Type, (Key.Value) -> T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/padding(_:)-5f3wf\",\"title\":\"func padding(EdgeInsets) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/padding(_:)-7cp9q\",\"title\":\"func padding(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/padding(_:_:)\",\"title\":\"func padding(Edge.Set, CGFloat?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/pagecommand(value:in:step:)\",\"title\":\"func pageCommand<V>(value: Binding<V>, in: ClosedRange<V>, step: V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/pickerstyle(_:)\",\"title\":\"func pickerStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/popover(ispresented:attachmentanchor:arrowedge:content:)\",\"title\":\"func popover<Content>(isPresented: Binding<Bool>, attachmentAnchor: PopoverAttachmentAnchor, arrowEdge: Edge, content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/popover(item:attachmentanchor:arrowedge:content:)\",\"title\":\"func popover<Item, Content>(item: Binding<Item?>, attachmentAnchor: PopoverAttachmentAnchor, arrowEdge: Edge, content: (Item) -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/position(_:)\",\"title\":\"func position(CGPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/position(x:y:)\",\"title\":\"func position(x: CGFloat, y: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/preference(key:value:)\",\"title\":\"func preference<K>(key: K.Type, value: K.Value) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/preferredcolorscheme(_:)\",\"title\":\"func preferredColorScheme(ColorScheme?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/prefersdefaultfocus(_:in:)\",\"title\":\"func prefersDefaultFocus(Bool, in: Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/presentedwindowstyle(_:)\",\"title\":\"func presentedWindowStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/presentedwindowtoolbarstyle(_:)\",\"title\":\"func presentedWindowToolbarStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewcontext(_:)\",\"title\":\"func previewContext<C>(C) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewdevice(_:)\",\"title\":\"func previewDevice(PreviewDevice?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewdisplayname(_:)\",\"title\":\"func previewDisplayName(String?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewinterfaceorientation(_:)\",\"title\":\"func previewInterfaceOrientation(InterfaceOrientation) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/previewlayout(_:)\",\"title\":\"func previewLayout(PreviewLayout) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/privacysensitive(_:)\",\"title\":\"func privacySensitive(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/progressviewstyle(_:)\",\"title\":\"func progressViewStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/projectioneffect(_:)\",\"title\":\"func projectionEffect(ProjectionTransform) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/redacted(reason:)\",\"title\":\"func redacted(reason: RedactionReasons) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/refreshable(action:)\",\"title\":\"func refreshable(action: () async -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/rotation3deffect(_:axis:anchor:anchorz:perspective:)\",\"title\":\"func rotation3DEffect(Angle, axis: (x: CGFloat, y: CGFloat, z: CGFloat), anchor: UnitPoint, anchorZ: CGFloat, perspective: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/rotationeffect(_:anchor:)\",\"title\":\"func rotationEffect(Angle, anchor: UnitPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/safeareainset(edge:alignment:spacing:content:)-4gojk\",\"title\":\"func safeAreaInset<V>(edge: HorizontalEdge, alignment: VerticalAlignment, spacing: CGFloat?, content: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/safeareainset(edge:alignment:spacing:content:)-9bx6p\",\"title\":\"func safeAreaInset<V>(edge: VerticalEdge, alignment: HorizontalAlignment, spacing: CGFloat?, content: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/saturation(_:)\",\"title\":\"func saturation(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaleeffect(_:anchor:)-4byje\",\"title\":\"func scaleEffect(CGSize, anchor: UnitPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaleeffect(_:anchor:)-6bduh\",\"title\":\"func scaleEffect(CGFloat, anchor: UnitPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaleeffect(x:y:anchor:)\",\"title\":\"func scaleEffect(x: CGFloat, y: CGFloat, anchor: UnitPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaledtofill()\",\"title\":\"func scaledToFill() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scaledtofit()\",\"title\":\"func scaledToFit() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/scenepadding(_:)\",\"title\":\"func scenePadding(Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchcompletion(_:)\",\"title\":\"func searchCompletion(String) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:)-2i9jl\",\"title\":\"func searchable<S>(text: Binding<String>, placement: SearchFieldPlacement, prompt: S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:)-50j7i\",\"title\":\"func searchable(text: Binding<String>, placement: SearchFieldPlacement, prompt: Text?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:)-75a6t\",\"title\":\"func searchable(text: Binding<String>, placement: SearchFieldPlacement, prompt: LocalizedStringKey) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:suggestions:)-5bsg8\",\"title\":\"func searchable<V, S>(text: Binding<String>, placement: SearchFieldPlacement, prompt: S, suggestions: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:suggestions:)-5ib9a\",\"title\":\"func searchable<S>(text: Binding<String>, placement: SearchFieldPlacement, prompt: Text?, suggestions: () -> S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/searchable(text:placement:prompt:suggestions:)-8fyqc\",\"title\":\"func searchable<S>(text: Binding<String>, placement: SearchFieldPlacement, prompt: LocalizedStringKey, suggestions: () -> S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shadow(color:radius:x:y:)\",\"title\":\"func shadow(color: Color, radius: CGFloat, x: CGFloat, y: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/sheet(ispresented:ondismiss:content:)\",\"title\":\"func sheet<Content>(isPresented: Binding<Bool>, onDismiss: (() -> Void)?, content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/sheet(item:ondismiss:content:)\",\"title\":\"func sheet<Item, Content>(item: Binding<Item?>, onDismiss: (() -> Void)?, content: (Item) -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffleanimation(_:)\",\"title\":\"func shuffleAnimation(ShuffleAnimation) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckanimation(_:)\",\"title\":\"func shuffleDeckAnimation(ShuffleDeckAnimation) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckdisabled(_:)\",\"title\":\"func shuffleDeckDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckscale(_:)\",\"title\":\"func shuffleDeckScale(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledeckstyle(_:)\",\"title\":\"func shuffleDeckStyle(ShuffleDeckStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledecktrigger(on:)\",\"title\":\"func shuffleDeckTrigger<P>(on: P) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffledisabled(_:)\",\"title\":\"func shuffleDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffleoffset(_:)\",\"title\":\"func shuffleOffset(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shufflepadding(_:)\",\"title\":\"func shufflePadding(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shufflescale(_:)\",\"title\":\"func shuffleScale(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shufflestyle(_:)\",\"title\":\"func shuffleStyle(ShuffleStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/shuffletrigger(on:)\",\"title\":\"func shuffleTrigger<P>(on: P) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/simultaneousgesture(_:including:)\",\"title\":\"func simultaneousGesture<T>(T, including: GestureMask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechadjustedpitch(_:)\",\"title\":\"func speechAdjustedPitch(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechalwaysincludespunctuation(_:)\",\"title\":\"func speechAlwaysIncludesPunctuation(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechannouncementsqueued(_:)\",\"title\":\"func speechAnnouncementsQueued(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/speechspellsoutcharacters(_:)\",\"title\":\"func speechSpellsOutCharacters(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/submitlabel(_:)\",\"title\":\"func submitLabel(SubmitLabel) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/submitscope(_:)\",\"title\":\"func submitScope(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/swipeactions(edge:allowsfullswipe:content:)\",\"title\":\"func swipeActions<T>(edge: HorizontalEdge, allowsFullSwipe: Bool, content: () -> T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/symbolrenderingmode(_:)\",\"title\":\"func symbolRenderingMode(SymbolRenderingMode?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/symbolvariant(_:)\",\"title\":\"func symbolVariant(SymbolVariants) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tabitem(_:)\",\"title\":\"func tabItem<V>(() -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tabviewstyle(_:)\",\"title\":\"func tabViewStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tablestyle(_:)\",\"title\":\"func tableStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tag(_:)\",\"title\":\"func tag<V>(V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/task(id:priority:_:)\",\"title\":\"func task<T>(id: T, priority: TaskPriority, () async -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/task(priority:_:)\",\"title\":\"func task(priority: TaskPriority, () async -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/textcase(_:)\",\"title\":\"func textCase(Text.Case?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/textcontenttype(_:)\",\"title\":\"func textContentType(NSTextContentType?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/textfieldstyle(_:)\",\"title\":\"func textFieldStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/textselection(_:)\",\"title\":\"func textSelection<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/tint(_:)\",\"title\":\"func tint(Color?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/togglestyle(_:)\",\"title\":\"func toggleStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/toolbar(content:)-2k0pt\",\"title\":\"func toolbar<Content>(content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/toolbar(content:)-4sm5t\",\"title\":\"func toolbar<Content>(content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/toolbar(id:content:)\",\"title\":\"func toolbar<Content>(id: String, content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbar(_:)\",\"title\":\"func touchBar<Content>(TouchBar<Content>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbar(content:)\",\"title\":\"func touchBar<Content>(content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbarcustomizationlabel(_:)\",\"title\":\"func touchBarCustomizationLabel(Text) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbaritempresence(_:)\",\"title\":\"func touchBarItemPresence(TouchBarItemPresence) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/touchbaritemprincipal(_:)\",\"title\":\"func touchBarItemPrincipal(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transaction(_:)\",\"title\":\"func transaction((inout Transaction) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformanchorpreference(key:value:transform:)\",\"title\":\"func transformAnchorPreference<A, K>(key: K.Type, value: Anchor<A>.Source, transform: (inout K.Value, Anchor<A>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformeffect(_:)\",\"title\":\"func transformEffect(CGAffineTransform) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformenvironment(_:transform:)\",\"title\":\"func transformEnvironment<V>(WritableKeyPath<EnvironmentValues, V>, transform: (inout V) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transformpreference(_:_:)\",\"title\":\"func transformPreference<K>(K.Type, (inout K.Value) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/transition(_:)\",\"title\":\"func transition(AnyTransition) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/truncationmode(_:)\",\"title\":\"func truncationMode(Text.TruncationMode) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/unredacted()\",\"title\":\"func unredacted() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/useractivity(_:element:_:)\",\"title\":\"func userActivity<P>(String, element: P?, (P, NSUserActivity) -> ()) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/useractivity(_:isactive:_:)\",\"title\":\"func userActivity(String, isActive: Bool, (NSUserActivity) -> ()) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/zindex(_:)\",\"title\":\"func zIndex(Double) -> some View\",\"type\":\"method\"}],\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\\/view-implementations\",\"title\":\"View Implementations\",\"type\":\"symbol\"}],\"path\":\"\\/documentation\\/shuffleit\\/shuffledeck\",\"title\":\"ShuffleDeck\",\"type\":\"struct\"},{\"children\":[{\"title\":\"Enumeration Cases\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/easein\",\"title\":\"case easeIn\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/easeinout\",\"title\":\"case easeInOut\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/easeout\",\"title\":\"case easeOut\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/linear\",\"title\":\"case linear\",\"type\":\"case\"},{\"title\":\"Default Implementations\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Operators\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/!=(_:_:)\",\"title\":\"static func != (Self, Self) -> Bool\",\"type\":\"op\"}],\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\\/equatable-implementations\",\"title\":\"Equatable Implementations\",\"type\":\"symbol\"}],\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckanimation\",\"title\":\"ShuffleDeckAnimation\",\"type\":\"enum\"},{\"children\":[{\"title\":\"Instance Properties\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\\/direction\",\"title\":\"let direction: ShuffleDeckDirection\",\"type\":\"property\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\\/index\",\"title\":\"let index: Int\",\"type\":\"property\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\\/previousindex\",\"title\":\"let previousIndex: Int\",\"type\":\"property\"}],\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckcontext\",\"title\":\"ShuffleDeckContext\",\"type\":\"struct\"},{\"children\":[{\"title\":\"Enumeration Cases\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/left\",\"title\":\"case left\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/right\",\"title\":\"case right\",\"type\":\"case\"},{\"title\":\"Default Implementations\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Operators\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/!=(_:_:)\",\"title\":\"static func != (Self, Self) -> Bool\",\"type\":\"op\"}],\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\\/equatable-implementations\",\"title\":\"Equatable Implementations\",\"type\":\"symbol\"}],\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckdirection\",\"title\":\"ShuffleDeckDirection\",\"type\":\"enum\"},{\"children\":[{\"title\":\"Enumeration Cases\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/finiteshuffle\",\"title\":\"case finiteShuffle\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/infiniteshuffle\",\"title\":\"case infiniteShuffle\",\"type\":\"case\"},{\"title\":\"Default Implementations\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Operators\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/!=(_:_:)\",\"title\":\"static func != (Self, Self) -> Bool\",\"type\":\"op\"}],\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\\/equatable-implementations\",\"title\":\"Equatable Implementations\",\"type\":\"symbol\"}],\"path\":\"\\/documentation\\/shuffleit\\/shuffledeckstyle\",\"title\":\"ShuffleDeckStyle\",\"type\":\"enum\"},{\"title\":\"ShuffleStack\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Initializers\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/init(_:initialindex:stackcontent:)-4x5f3\",\"title\":\"init(Data, initialIndex: Data.Index?, stackContent: (Data.Element, CGFloat) -> StackContent)\",\"type\":\"init\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/init(_:initialindex:stackcontent:)-8ktnr\",\"title\":\"init(Data, initialIndex: Data.Index?, stackContent: (Data.Element) -> StackContent)\",\"type\":\"init\"},{\"title\":\"Instance Properties\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/body\",\"title\":\"var body: some View\",\"type\":\"property\"},{\"title\":\"Default Implementations\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Instance Methods\",\"type\":\"groupMarker\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accentcolor(_:)\",\"title\":\"func accentColor(Color?) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(activationpoint:)-1nikr\",\"title\":\"func accessibility(activationPoint: CGPoint) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(activationpoint:)-9o1ut\",\"title\":\"func accessibility(activationPoint: UnitPoint) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(addtraits:)\",\"title\":\"func accessibility(addTraits: AccessibilityTraits) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(hidden:)\",\"title\":\"func accessibility(hidden: Bool) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(hint:)\",\"title\":\"func accessibility(hint: Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(identifier:)\",\"title\":\"func accessibility(identifier: String) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(inputlabels:)\",\"title\":\"func accessibility(inputLabels: [Text]) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(label:)\",\"title\":\"func accessibility(label: Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(removetraits:)\",\"title\":\"func accessibility(removeTraits: AccessibilityTraits) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(selectionidentifier:)\",\"title\":\"func accessibility(selectionIdentifier: AnyHashable) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(sortpriority:)\",\"title\":\"func accessibility(sortPriority: Double) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibility(value:)\",\"title\":\"func accessibility(value: Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(_:_:)\",\"title\":\"func accessibilityAction(AccessibilityActionKind, () -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(action:label:)\",\"title\":\"func accessibilityAction<Label>(action: () -> Void, label: () -> Label) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(named:_:)-5nf29\",\"title\":\"func accessibilityAction(named: LocalizedStringKey, () -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(named:_:)-7rxae\",\"title\":\"func accessibilityAction<S>(named: S, () -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaction(named:_:)-7tk0c\",\"title\":\"func accessibilityAction(named: Text, () -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityactivationpoint(_:)-57vfb\",\"title\":\"func accessibilityActivationPoint(UnitPoint) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityactivationpoint(_:)-9osvr\",\"title\":\"func accessibilityActivationPoint(CGPoint) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityaddtraits(_:)\",\"title\":\"func accessibilityAddTraits(AccessibilityTraits) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityadjustableaction(_:)\",\"title\":\"func accessibilityAdjustableAction((AccessibilityAdjustmentDirection) -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitychartdescriptor(_:)\",\"title\":\"func accessibilityChartDescriptor<R>(R) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitychildren(children:)\",\"title\":\"func accessibilityChildren<V>(children: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-1gi9v\",\"title\":\"func accessibilityCustomContent(LocalizedStringKey, LocalizedStringKey, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-375xz\",\"title\":\"func accessibilityCustomContent<V>(LocalizedStringKey, V, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-571fc\",\"title\":\"func accessibilityCustomContent<L, V>(L, V, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-72sim\",\"title\":\"func accessibilityCustomContent(Text, Text, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-7h1pz\",\"title\":\"func accessibilityCustomContent(LocalizedStringKey, Text, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-8sma2\",\"title\":\"func accessibilityCustomContent(AccessibilityCustomContentKey, LocalizedStringKey, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-956rk\",\"title\":\"func accessibilityCustomContent(AccessibilityCustomContentKey, Text?, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitycustomcontent(_:_:importance:)-96ur4\",\"title\":\"func accessibilityCustomContent<V>(AccessibilityCustomContentKey, V, importance: AXCustomContent.Importance) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityelement(children:)\",\"title\":\"func accessibilityElement(children: AccessibilityChildBehavior) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityfocused(_:)\",\"title\":\"func accessibilityFocused(AccessibilityFocusState<Bool>.Binding) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityfocused(_:equals:)\",\"title\":\"func accessibilityFocused<Value>(AccessibilityFocusState<Value>.Binding, equals: Value) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityheading(_:)\",\"title\":\"func accessibilityHeading(AccessibilityHeadingLevel) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhidden(_:)\",\"title\":\"func accessibilityHidden(Bool) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhint(_:)-45b9m\",\"title\":\"func accessibilityHint(Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhint(_:)-6451d\",\"title\":\"func accessibilityHint(LocalizedStringKey) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityhint(_:)-6m2eb\",\"title\":\"func accessibilityHint<S>(S) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityidentifier(_:)\",\"title\":\"func accessibilityIdentifier(String) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityignoresinvertcolors(_:)\",\"title\":\"func accessibilityIgnoresInvertColors(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityinputlabels(_:)-3mfon\",\"title\":\"func accessibilityInputLabels([LocalizedStringKey]) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityinputlabels(_:)-7hs3b\",\"title\":\"func accessibilityInputLabels<S>([S]) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityinputlabels(_:)-7kg3p\",\"title\":\"func accessibilityInputLabels([Text]) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabel(_:)-3has0\",\"title\":\"func accessibilityLabel<S>(S) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabel(_:)-6dv6y\",\"title\":\"func accessibilityLabel(Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabel(_:)-e66p\",\"title\":\"func accessibilityLabel(LocalizedStringKey) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylabeledpair(role:id:in:)\",\"title\":\"func accessibilityLabeledPair<ID>(role: AccessibilityLabeledPairRole, id: ID, in: Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitylinkedgroup(id:in:)\",\"title\":\"func accessibilityLinkedGroup<ID>(id: ID, in: Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityremovetraits(_:)\",\"title\":\"func accessibilityRemoveTraits(AccessibilityTraits) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrepresentation(representation:)\",\"title\":\"func accessibilityRepresentation<V>(representation: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrespondstouserinteraction(_:)\",\"title\":\"func accessibilityRespondsToUserInteraction(Bool) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-3a01s\",\"title\":\"func accessibilityRotor<Content>(LocalizedStringKey, entries: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-661b4\",\"title\":\"func accessibilityRotor<Content>(AccessibilitySystemRotor, entries: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-7kbeo\",\"title\":\"func accessibilityRotor<Content>(Text, entries: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:)-f4c5\",\"title\":\"func accessibilityRotor<L, Content>(L, entries: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-1kufn\",\"title\":\"func accessibilityRotor<EntryModel, ID>(LocalizedStringKey, entries: [EntryModel], entryID: KeyPath<EntryModel, ID>, entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-1o7jk\",\"title\":\"func accessibilityRotor<EntryModel, ID>(AccessibilitySystemRotor, entries: [EntryModel], entryID: KeyPath<EntryModel, ID>, entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-2ng74\",\"title\":\"func accessibilityRotor<EntryModel, ID>(Text, entries: [EntryModel], entryID: KeyPath<EntryModel, ID>, entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entryid:entrylabel:)-6akr8\",\"title\":\"func accessibilityRotor<L, EntryModel, ID>(L, entries: [EntryModel], entryID: KeyPath<EntryModel, ID>, entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-6o30j\",\"title\":\"func accessibilityRotor<EntryModel>(Text, entries: [EntryModel], entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-8e6r9\",\"title\":\"func accessibilityRotor<EntryModel>(LocalizedStringKey, entries: [EntryModel], entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-bva6\",\"title\":\"func accessibilityRotor<EntryModel>(AccessibilitySystemRotor, entries: [EntryModel], entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:entries:entrylabel:)-cxx7\",\"title\":\"func accessibilityRotor<L, EntryModel>(L, entries: [EntryModel], entryLabel: KeyPath<EntryModel, String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-1v5os\",\"title\":\"func accessibilityRotor(LocalizedStringKey, textRanges: [Range<String.Index>]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-5mce6\",\"title\":\"func accessibilityRotor(AccessibilitySystemRotor, textRanges: [Range<String.Index>]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-7fpc1\",\"title\":\"func accessibilityRotor(Text, textRanges: [Range<String.Index>]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotor(_:textranges:)-91on2\",\"title\":\"func accessibilityRotor<L>(L, textRanges: [Range<String.Index>]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityrotorentry(id:in:)\",\"title\":\"func accessibilityRotorEntry<ID>(id: ID, in: Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityscrollaction(_:)\",\"title\":\"func accessibilityScrollAction((Edge) -> Void) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityshowslargecontentviewer()\",\"title\":\"func accessibilityShowsLargeContentViewer() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityshowslargecontentviewer(_:)\",\"title\":\"func accessibilityShowsLargeContentViewer<V>(() -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitysortpriority(_:)\",\"title\":\"func accessibilitySortPriority(Double) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilitytextcontenttype(_:)\",\"title\":\"func accessibilityTextContentType(AccessibilityTextContentType) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityvalue(_:)-6kh76\",\"title\":\"func accessibilityValue(LocalizedStringKey) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityvalue(_:)-6x5in\",\"title\":\"func accessibilityValue(Text) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/accessibilityvalue(_:)-tcbi\",\"title\":\"func accessibilityValue<S>(S) -> ModifiedContent<Self, AccessibilityAttachmentModifier>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:)-13ppe\",\"title\":\"func alert<S, A>(S, isPresented: Binding<Bool>, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:)-31fv4\",\"title\":\"func alert<A>(LocalizedStringKey, isPresented: Binding<Bool>, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:)-svpk\",\"title\":\"func alert<A>(Text, isPresented: Binding<Bool>, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:message:)-1lplz\",\"title\":\"func alert<S, A, M>(S, isPresented: Binding<Bool>, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:message:)-42hzu\",\"title\":\"func alert<A, M>(Text, isPresented: Binding<Bool>, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:actions:message:)-8jr1q\",\"title\":\"func alert<A, M>(LocalizedStringKey, isPresented: Binding<Bool>, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:)-135kk\",\"title\":\"func alert<A, T>(LocalizedStringKey, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:)-7je0d\",\"title\":\"func alert<S, A, T>(S, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:)-7zzve\",\"title\":\"func alert<A, T>(Text, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:message:)-17uu0\",\"title\":\"func alert<A, M, T>(LocalizedStringKey, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:message:)-36zvz\",\"title\":\"func alert<S, A, M, T>(S, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(_:ispresented:presenting:actions:message:)-7caah\",\"title\":\"func alert<A, M, T>(Text, isPresented: Binding<Bool>, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(ispresented:content:)\",\"title\":\"func alert(isPresented: Binding<Bool>, content: () -> Alert) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(ispresented:error:actions:)\",\"title\":\"func alert<E, A>(isPresented: Binding<Bool>, error: E?, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(ispresented:error:actions:message:)\",\"title\":\"func alert<E, A, M>(isPresented: Binding<Bool>, error: E?, actions: (E) -> A, message: (E) -> M) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alert(item:content:)\",\"title\":\"func alert<Item>(item: Binding<Item?>, content: (Item) -> Alert) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alignmentguide(_:computevalue:)-23g26\",\"title\":\"func alignmentGuide(HorizontalAlignment, computeValue: (ViewDimensions) -> CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/alignmentguide(_:computevalue:)-4kcej\",\"title\":\"func alignmentGuide(VerticalAlignment, computeValue: (ViewDimensions) -> CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/allowshittesting(_:)\",\"title\":\"func allowsHitTesting(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/allowstightening(_:)\",\"title\":\"func allowsTightening(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/anchorpreference(key:value:transform:)\",\"title\":\"func anchorPreference<A, K>(key: K.Type, value: Anchor<A>.Source, transform: (Anchor<A>) -> K.Value) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/animation(_:)\",\"title\":\"func animation(Animation?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/animation(_:value:)\",\"title\":\"func animation<V>(Animation?, value: V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/aspectratio(_:contentmode:)-9iav9\",\"title\":\"func aspectRatio(CGSize, contentMode: ContentMode) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/aspectratio(_:contentmode:)-ggdx\",\"title\":\"func aspectRatio(CGFloat?, contentMode: ContentMode) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:alignment:)\",\"title\":\"func background<Background>(Background, alignment: Alignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:ignoressafeareaedges:)\",\"title\":\"func background<S>(S, ignoresSafeAreaEdges: Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:in:fillstyle:)-1a2bf\",\"title\":\"func background<S, T>(S, in: T, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(_:in:fillstyle:)-8qwr1\",\"title\":\"func background<S, T>(S, in: T, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(alignment:content:)\",\"title\":\"func background<V>(alignment: Alignment, content: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(ignoressafeareaedges:)\",\"title\":\"func background(ignoresSafeAreaEdges: Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(in:fillstyle:)-58j5e\",\"title\":\"func background<S>(in: S, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/background(in:fillstyle:)-8w09p\",\"title\":\"func background<S>(in: S, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/backgroundpreferencevalue(_:_:)\",\"title\":\"func backgroundPreferenceValue<Key, T>(Key.Type, (Key.Value) -> T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-26gjx\",\"title\":\"func badge(LocalizedStringKey?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-2cz64\",\"title\":\"func badge(Text?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-31kbp\",\"title\":\"func badge(Int) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/badge(_:)-4i0v1\",\"title\":\"func badge<S>(S?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/blendmode(_:)\",\"title\":\"func blendMode(BlendMode) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/blur(radius:opaque:)\",\"title\":\"func blur(radius: CGFloat, opaque: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/border(_:width:)\",\"title\":\"func border<S>(S, width: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/brightness(_:)\",\"title\":\"func brightness(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/buttonbordershape(_:)\",\"title\":\"func buttonBorderShape(ButtonBorderShape) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/buttonstyle(_:)-42cf\",\"title\":\"func buttonStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/buttonstyle(_:)-4hs9e\",\"title\":\"func buttonStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselanimation(_:)\",\"title\":\"func carouselAnimation(CarouselAnimation) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouseldisabled(_:)\",\"title\":\"func carouselDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselpadding(_:)\",\"title\":\"func carouselPadding(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselscale(_:)\",\"title\":\"func carouselScale(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselspacing(_:)\",\"title\":\"func carouselSpacing(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouselstyle(_:)\",\"title\":\"func carouselStyle(CarouselStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/carouseltrigger(on:)\",\"title\":\"func carouselTrigger<P>(on: P) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/clipshape(_:style:)\",\"title\":\"func clipShape<S>(S, style: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/clipped(antialiased:)\",\"title\":\"func clipped(antialiased: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/colorinvert()\",\"title\":\"func colorInvert() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/colormultiply(_:)\",\"title\":\"func colorMultiply(Color) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/colorscheme(_:)\",\"title\":\"func colorScheme(ColorScheme) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/compositinggroup()\",\"title\":\"func compositingGroup() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-41ud8\",\"title\":\"func confirmationDialog<A>(LocalizedStringKey, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-4ywhx\",\"title\":\"func confirmationDialog<S, A>(S, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:)-7ipnf\",\"title\":\"func confirmationDialog<A>(Text, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1kurz\",\"title\":\"func confirmationDialog<S, A, M>(S, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5vmyl\",\"title\":\"func confirmationDialog<A, M>(Text, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9sue3\",\"title\":\"func confirmationDialog<A, M>(LocalizedStringKey, isPresented: Binding<Bool>, titleVisibility: Visibility, actions: () -> A, message: () -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1tkx\",\"title\":\"func confirmationDialog<A, T>(LocalizedStringKey, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5diu1\",\"title\":\"func confirmationDialog<S, A, T>(S, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pkdq\",\"title\":\"func confirmationDialog<A, T>(Text, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-296mh\",\"title\":\"func confirmationDialog<S, A, M, T>(S, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-5uj0y\",\"title\":\"func confirmationDialog<A, M, T>(LocalizedStringKey, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-7cjsq\",\"title\":\"func confirmationDialog<A, M, T>(Text, isPresented: Binding<Bool>, titleVisibility: Visibility, presenting: T?, actions: (T) -> A, message: (T) -> M) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/containershape(_:)\",\"title\":\"func containerShape<T>(T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contentshape(_:_:eofill:)\",\"title\":\"func contentShape<S>(ContentShapeKinds, S, eoFill: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contentshape(_:eofill:)\",\"title\":\"func contentShape<S>(S, eoFill: Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contextmenu(_:)\",\"title\":\"func contextMenu<MenuItems>(ContextMenu<MenuItems>?) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contextmenu(menuitems:)\",\"title\":\"func contextMenu<MenuItems>(menuItems: () -> MenuItems) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/contrast(_:)\",\"title\":\"func contrast(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/controlgroupstyle(_:)\",\"title\":\"func controlGroupStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/controlsize(_:)\",\"title\":\"func controlSize(ControlSize) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/coordinatespace(name:)\",\"title\":\"func coordinateSpace<T>(name: T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/cornerradius(_:antialiased:)\",\"title\":\"func cornerRadius(CGFloat, antialiased: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/datepickerstyle(_:)\",\"title\":\"func datePickerStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/defaultappstorage(_:)\",\"title\":\"func defaultAppStorage(UserDefaults) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/deletedisabled(_:)\",\"title\":\"func deleteDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/disableautocorrection(_:)\",\"title\":\"func disableAutocorrection(Bool?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/disabled(_:)\",\"title\":\"func disabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/drawinggroup(opaque:colormode:)\",\"title\":\"func drawingGroup(opaque: Bool, colorMode: ColorRenderingMode) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/dynamictypesize(_:)\",\"title\":\"func dynamicTypeSize(DynamicTypeSize) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/edgesignoringsafearea(_:)\",\"title\":\"func edgesIgnoringSafeArea(Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/environment(_:_:)\",\"title\":\"func environment<V>(WritableKeyPath<EnvironmentValues, V>, V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/environmentobject(_:)\",\"title\":\"func environmentObject<T>(T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/exportsitemproviders(_:onexport:)\",\"title\":\"func exportsItemProviders([UTType], onExport: () -> [NSItemProvider]) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/exportsitemproviders(_:onexport:onedit:)\",\"title\":\"func exportsItemProviders([UTType], onExport: () -> [NSItemProvider], onEdit: ([NSItemProvider]) -> Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-6evgr\",\"title\":\"func fileExporter<D>(isPresented: Binding<Bool>, document: D?, contentType: UTType, defaultFilename: String?, onCompletion: (Result<URL, Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-8iv2y\",\"title\":\"func fileExporter<D>(isPresented: Binding<Bool>, document: D?, contentType: UTType, defaultFilename: String?, onCompletion: (Result<URL, Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-233kd\",\"title\":\"func fileExporter<C>(isPresented: Binding<Bool>, documents: C, contentType: UTType, onCompletion: (Result<[URL], Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileexporter(ispresented:documents:contenttype:oncompletion:)-7map2\",\"title\":\"func fileExporter<C>(isPresented: Binding<Bool>, documents: C, contentType: UTType, onCompletion: (Result<[URL], Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)\",\"title\":\"func fileImporter(isPresented: Binding<Bool>, allowedContentTypes: [UTType], allowsMultipleSelection: Bool, onCompletion: (Result<[URL], Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)\",\"title\":\"func fileImporter(isPresented: Binding<Bool>, allowedContentTypes: [UTType], onCompletion: (Result<URL, Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/filemover(ispresented:file:oncompletion:)\",\"title\":\"func fileMover(isPresented: Binding<Bool>, file: URL?, onCompletion: (Result<URL, Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/filemover(ispresented:files:oncompletion:)\",\"title\":\"func fileMover<C>(isPresented: Binding<Bool>, files: C, onCompletion: (Result<[URL], Error>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fixedsize()\",\"title\":\"func fixedSize() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/fixedsize(horizontal:vertical:)\",\"title\":\"func fixedSize(horizontal: Bool, vertical: Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/flipsforrighttoleftlayoutdirection(_:)\",\"title\":\"func flipsForRightToLeftLayoutDirection(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusscope(_:)\",\"title\":\"func focusScope(Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusable(_:)\",\"title\":\"func focusable(Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusable(_:onfocuschange:)\",\"title\":\"func focusable(Bool, onFocusChange: (Bool) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focused(_:)\",\"title\":\"func focused(FocusState<Bool>.Binding) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focused(_:equals:)\",\"title\":\"func focused<Value>(FocusState<Value>.Binding, equals: Value) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusedscenevalue(_:_:)\",\"title\":\"func focusedSceneValue<T>(WritableKeyPath<FocusedValues, T?>, T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/focusedvalue(_:_:)\",\"title\":\"func focusedValue<Value>(WritableKeyPath<FocusedValues, Value?>, Value) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/font(_:)\",\"title\":\"func font(Font?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundcolor(_:)\",\"title\":\"func foregroundColor(Color?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundstyle(_:)\",\"title\":\"func foregroundStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundstyle(_:_:)\",\"title\":\"func foregroundStyle<S1, S2>(S1, S2) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/foregroundstyle(_:_:_:)\",\"title\":\"func foregroundStyle<S1, S2, S3>(S1, S2, S3) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/frame()\",\"title\":\"func frame() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)\",\"title\":\"func frame(minWidth: CGFloat?, idealWidth: CGFloat?, maxWidth: CGFloat?, minHeight: CGFloat?, idealHeight: CGFloat?, maxHeight: CGFloat?, alignment: Alignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/frame(width:height:alignment:)\",\"title\":\"func frame(width: CGFloat?, height: CGFloat?, alignment: Alignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/gesture(_:including:)\",\"title\":\"func gesture<T>(T, including: GestureMask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/grayscale(_:)\",\"title\":\"func grayscale(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/groupboxstyle(_:)\",\"title\":\"func groupBoxStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/handlesexternalevents(preferring:allowing:)\",\"title\":\"func handlesExternalEvents(preferring: Set<String>, allowing: Set<String>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/headerprominence(_:)\",\"title\":\"func headerProminence(Prominence) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/help(_:)-296\",\"title\":\"func help(LocalizedStringKey) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/help(_:)-2u744\",\"title\":\"func help<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/help(_:)-4q5ms\",\"title\":\"func help(Text) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/hidden()\",\"title\":\"func hidden() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/highprioritygesture(_:including:)\",\"title\":\"func highPriorityGesture<T>(T, including: GestureMask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/horizontalradiogrouplayout()\",\"title\":\"func horizontalRadioGroupLayout() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/huerotation(_:)\",\"title\":\"func hueRotation(Angle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/id(_:)\",\"title\":\"func id<ID>(ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ignoressafearea(_:edges:)\",\"title\":\"func ignoresSafeArea(SafeAreaRegions, edges: Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/imagescale(_:)\",\"title\":\"func imageScale(Image.Scale) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/importsitemproviders(_:onimport:)\",\"title\":\"func importsItemProviders([UTType], onImport: ([NSItemProvider]) -> Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/interactivedismissdisabled(_:)\",\"title\":\"func interactiveDismissDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/itemprovider(_:)\",\"title\":\"func itemProvider(Optional<() -> NSItemProvider?>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:)-30f12\",\"title\":\"func keyboardShortcut(KeyboardShortcut?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:)-38k96\",\"title\":\"func keyboardShortcut(KeyboardShortcut) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:modifiers:)\",\"title\":\"func keyboardShortcut(KeyEquivalent, modifiers: EventModifiers) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/keyboardshortcut(_:modifiers:localization:)\",\"title\":\"func keyboardShortcut(KeyEquivalent, modifiers: EventModifiers, localization: KeyboardShortcut.Localization) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/labelstyle(_:)\",\"title\":\"func labelStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/labelshidden()\",\"title\":\"func labelsHidden() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/layoutpriority(_:)\",\"title\":\"func layoutPriority(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/linelimit(_:)\",\"title\":\"func lineLimit(Int?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/linespacing(_:)\",\"title\":\"func lineSpacing(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/listitemtint(_:)-66j6h\",\"title\":\"func listItemTint(ListItemTint?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/listitemtint(_:)-6zn9q\",\"title\":\"func listItemTint(Color?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/listrowbackground(_:)\",\"title\":\"func listRowBackground<V>(V?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/listrowinsets(_:)\",\"title\":\"func listRowInsets(EdgeInsets?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/liststyle(_:)\",\"title\":\"func listStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/luminancetoalpha()\",\"title\":\"func luminanceToAlpha() -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/mask(_:)\",\"title\":\"func mask<Mask>(Mask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/mask(alignment:_:)\",\"title\":\"func mask<Mask>(alignment: Alignment, () -> Mask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/matchedgeometryeffect(id:in:properties:anchor:issource:)\",\"title\":\"func matchedGeometryEffect<ID>(id: ID, in: Namespace.ID, properties: MatchedGeometryProperties, anchor: UnitPoint, isSource: Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/menubuttonstyle(_:)\",\"title\":\"func menuButtonStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/menuindicator(_:)\",\"title\":\"func menuIndicator(Visibility) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/menustyle(_:)\",\"title\":\"func menuStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/minimumscalefactor(_:)\",\"title\":\"func minimumScaleFactor(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/modifier(_:)\",\"title\":\"func modifier<T>(T) -> ModifiedContent<Self, T>\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/monospaceddigit()\",\"title\":\"func monospacedDigit() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/movedisabled(_:)\",\"title\":\"func moveDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/multilinetextalignment(_:)\",\"title\":\"func multilineTextAlignment(TextAlignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationsubtitle(_:)-16d52\",\"title\":\"func navigationSubtitle(LocalizedStringKey) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationsubtitle(_:)-206md\",\"title\":\"func navigationSubtitle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationsubtitle(_:)-7em2i\",\"title\":\"func navigationSubtitle(Text) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7aj99\",\"title\":\"func navigationTitle(LocalizedStringKey) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7jd07\",\"title\":\"func navigationTitle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7twkm\",\"title\":\"func navigationTitle(Text) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationtitle(_:)-7w547\",\"title\":\"func navigationTitle<V>(() -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/navigationviewstyle(_:)\",\"title\":\"func navigationViewStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/offset(_:)\",\"title\":\"func offset(CGSize) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/offset(x:y:)\",\"title\":\"func offset(x: CGFloat, y: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onappear(perform:)\",\"title\":\"func onAppear(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncarousel(_:)\",\"title\":\"func onCarousel((CarouselContext) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncarouseltranslation(_:)\",\"title\":\"func onCarouselTranslation((CGFloat) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onchange(of:perform:)\",\"title\":\"func onChange<V>(of: V, perform: (V) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncommand(_:perform:)\",\"title\":\"func onCommand(Selector, perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncontinueuseractivity(_:perform:)\",\"title\":\"func onContinueUserActivity(String, perform: (NSUserActivity) -> ()) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncopycommand(perform:)\",\"title\":\"func onCopyCommand(perform: (() -> [NSItemProvider])?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/oncutcommand(perform:)\",\"title\":\"func onCutCommand(perform: (() -> [NSItemProvider])?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondeletecommand(perform:)\",\"title\":\"func onDeleteCommand(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondisappear(perform:)\",\"title\":\"func onDisappear(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrag(_:)\",\"title\":\"func onDrag(() -> NSItemProvider) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrag(_:preview:)\",\"title\":\"func onDrag<V>(() -> NSItemProvider, preview: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:delegate:)-1ea27\",\"title\":\"func onDrop(of: [UTType], delegate: DropDelegate) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:delegate:)-8thdr\",\"title\":\"func onDrop(of: [String], delegate: DropDelegate) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-363wn\",\"title\":\"func onDrop(of: [UTType], isTargeted: Binding<Bool>?, perform: ([NSItemProvider]) -> Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-3bmbv\",\"title\":\"func onDrop(of: [String], isTargeted: Binding<Bool>?, perform: ([NSItemProvider], CGPoint) -> Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-82gpe\",\"title\":\"func onDrop(of: [UTType], isTargeted: Binding<Bool>?, perform: ([NSItemProvider], CGPoint) -> Bool) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ondrop(of:istargeted:perform:)-84ef9\",\"title\":\"func onDrop(of: [String], isTargeted: Binding<Bool>?, perform: ([NSItemProvider]) -> Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onexitcommand(perform:)\",\"title\":\"func onExitCommand(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onhover(perform:)\",\"title\":\"func onHover(perform: (Bool) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)\",\"title\":\"func onLongPressGesture(minimumDuration: Double, maximumDistance: CGFloat, perform: () -> Void, onPressingChanged: ((Bool) -> Void)?) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)\",\"title\":\"func onLongPressGesture(minimumDuration: Double, maximumDistance: CGFloat, pressing: ((Bool) -> Void)?, perform: () -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:perform:onpressingchanged:)\",\"title\":\"func onLongPressGesture(minimumDuration: Double, perform: () -> Void, onPressingChanged: ((Bool) -> Void)?) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onlongpressgesture(minimumduration:pressing:perform:)\",\"title\":\"func onLongPressGesture(minimumDuration: Double, pressing: ((Bool) -> Void)?, perform: () -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onmovecommand(perform:)\",\"title\":\"func onMoveCommand(perform: ((MoveCommandDirection) -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onopenurl(perform:)\",\"title\":\"func onOpenURL(perform: (URL) -> ()) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:perform:)-4k6ie\",\"title\":\"func onPasteCommand(of: [String], perform: ([NSItemProvider]) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:perform:)-wliz\",\"title\":\"func onPasteCommand(of: [UTType], perform: ([NSItemProvider]) -> Void) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:validator:perform:)-7tcqn\",\"title\":\"func onPasteCommand<Payload>(of: [String], validator: ([NSItemProvider]) -> Payload?, perform: (Payload) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpastecommand(of:validator:perform:)-9ddq9\",\"title\":\"func onPasteCommand<Payload>(of: [UTType], validator: ([NSItemProvider]) -> Payload?, perform: (Payload) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onplaypausecommand(perform:)\",\"title\":\"func onPlayPauseCommand(perform: (() -> Void)?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onpreferencechange(_:perform:)\",\"title\":\"func onPreferenceChange<K>(K.Type, perform: (K.Value) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onreceive(_:perform:)\",\"title\":\"func onReceive<P>(P, perform: (P.Output) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffle(_:)\",\"title\":\"func onShuffle((ShuffleContext) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffledeck(_:)\",\"title\":\"func onShuffleDeck((ShuffleDeckContext) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffledecktranslation(_:)\",\"title\":\"func onShuffleDeckTranslation((CGFloat) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onshuffletranslation(_:)\",\"title\":\"func onShuffleTranslation((CGFloat) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/onsubmit(of:_:)\",\"title\":\"func onSubmit(of: SubmitTriggers, (() -> Void)) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/ontapgesture(count:perform:)\",\"title\":\"func onTapGesture(count: Int, perform: () -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/opacity(_:)\",\"title\":\"func opacity(Double) -> some View\",\"type\":\"method\"},{\"deprecated\":true,\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(_:alignment:)\",\"title\":\"func overlay<Overlay>(Overlay, alignment: Alignment) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(_:ignoressafeareaedges:)\",\"title\":\"func overlay<S>(S, ignoresSafeAreaEdges: Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(_:in:fillstyle:)\",\"title\":\"func overlay<S, T>(S, in: T, fillStyle: FillStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlay(alignment:content:)\",\"title\":\"func overlay<V>(alignment: Alignment, content: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/overlaypreferencevalue(_:_:)\",\"title\":\"func overlayPreferenceValue<Key, T>(Key.Type, (Key.Value) -> T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/padding(_:)-7zetw\",\"title\":\"func padding(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/padding(_:)-9obs7\",\"title\":\"func padding(EdgeInsets) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/padding(_:_:)\",\"title\":\"func padding(Edge.Set, CGFloat?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/pagecommand(value:in:step:)\",\"title\":\"func pageCommand<V>(value: Binding<V>, in: ClosedRange<V>, step: V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/pickerstyle(_:)\",\"title\":\"func pickerStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/popover(ispresented:attachmentanchor:arrowedge:content:)\",\"title\":\"func popover<Content>(isPresented: Binding<Bool>, attachmentAnchor: PopoverAttachmentAnchor, arrowEdge: Edge, content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/popover(item:attachmentanchor:arrowedge:content:)\",\"title\":\"func popover<Item, Content>(item: Binding<Item?>, attachmentAnchor: PopoverAttachmentAnchor, arrowEdge: Edge, content: (Item) -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/position(_:)\",\"title\":\"func position(CGPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/position(x:y:)\",\"title\":\"func position(x: CGFloat, y: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/preference(key:value:)\",\"title\":\"func preference<K>(key: K.Type, value: K.Value) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/preferredcolorscheme(_:)\",\"title\":\"func preferredColorScheme(ColorScheme?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/prefersdefaultfocus(_:in:)\",\"title\":\"func prefersDefaultFocus(Bool, in: Namespace.ID) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/presentedwindowstyle(_:)\",\"title\":\"func presentedWindowStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/presentedwindowtoolbarstyle(_:)\",\"title\":\"func presentedWindowToolbarStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewcontext(_:)\",\"title\":\"func previewContext<C>(C) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewdevice(_:)\",\"title\":\"func previewDevice(PreviewDevice?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewdisplayname(_:)\",\"title\":\"func previewDisplayName(String?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewinterfaceorientation(_:)\",\"title\":\"func previewInterfaceOrientation(InterfaceOrientation) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/previewlayout(_:)\",\"title\":\"func previewLayout(PreviewLayout) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/privacysensitive(_:)\",\"title\":\"func privacySensitive(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/progressviewstyle(_:)\",\"title\":\"func progressViewStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/projectioneffect(_:)\",\"title\":\"func projectionEffect(ProjectionTransform) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/redacted(reason:)\",\"title\":\"func redacted(reason: RedactionReasons) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/refreshable(action:)\",\"title\":\"func refreshable(action: () async -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/rotation3deffect(_:axis:anchor:anchorz:perspective:)\",\"title\":\"func rotation3DEffect(Angle, axis: (x: CGFloat, y: CGFloat, z: CGFloat), anchor: UnitPoint, anchorZ: CGFloat, perspective: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/rotationeffect(_:anchor:)\",\"title\":\"func rotationEffect(Angle, anchor: UnitPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/safeareainset(edge:alignment:spacing:content:)-9cc9j\",\"title\":\"func safeAreaInset<V>(edge: HorizontalEdge, alignment: VerticalAlignment, spacing: CGFloat?, content: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/safeareainset(edge:alignment:spacing:content:)-9ojua\",\"title\":\"func safeAreaInset<V>(edge: VerticalEdge, alignment: HorizontalAlignment, spacing: CGFloat?, content: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/saturation(_:)\",\"title\":\"func saturation(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaleeffect(_:anchor:)-2caa5\",\"title\":\"func scaleEffect(CGSize, anchor: UnitPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaleeffect(_:anchor:)-718iu\",\"title\":\"func scaleEffect(CGFloat, anchor: UnitPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaleeffect(x:y:anchor:)\",\"title\":\"func scaleEffect(x: CGFloat, y: CGFloat, anchor: UnitPoint) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaledtofill()\",\"title\":\"func scaledToFill() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scaledtofit()\",\"title\":\"func scaledToFit() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/scenepadding(_:)\",\"title\":\"func scenePadding(Edge.Set) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchcompletion(_:)\",\"title\":\"func searchCompletion(String) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:)-2vm7x\",\"title\":\"func searchable(text: Binding<String>, placement: SearchFieldPlacement, prompt: LocalizedStringKey) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:)-8rgzb\",\"title\":\"func searchable(text: Binding<String>, placement: SearchFieldPlacement, prompt: Text?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:)-988ga\",\"title\":\"func searchable<S>(text: Binding<String>, placement: SearchFieldPlacement, prompt: S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:suggestions:)-3zci7\",\"title\":\"func searchable<S>(text: Binding<String>, placement: SearchFieldPlacement, prompt: Text?, suggestions: () -> S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:suggestions:)-5taln\",\"title\":\"func searchable<S>(text: Binding<String>, placement: SearchFieldPlacement, prompt: LocalizedStringKey, suggestions: () -> S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/searchable(text:placement:prompt:suggestions:)-8jhzt\",\"title\":\"func searchable<V, S>(text: Binding<String>, placement: SearchFieldPlacement, prompt: S, suggestions: () -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shadow(color:radius:x:y:)\",\"title\":\"func shadow(color: Color, radius: CGFloat, x: CGFloat, y: CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/sheet(ispresented:ondismiss:content:)\",\"title\":\"func sheet<Content>(isPresented: Binding<Bool>, onDismiss: (() -> Void)?, content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/sheet(item:ondismiss:content:)\",\"title\":\"func sheet<Item, Content>(item: Binding<Item?>, onDismiss: (() -> Void)?, content: (Item) -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffleanimation(_:)\",\"title\":\"func shuffleAnimation(ShuffleAnimation) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckanimation(_:)\",\"title\":\"func shuffleDeckAnimation(ShuffleDeckAnimation) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckdisabled(_:)\",\"title\":\"func shuffleDeckDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckscale(_:)\",\"title\":\"func shuffleDeckScale(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledeckstyle(_:)\",\"title\":\"func shuffleDeckStyle(ShuffleDeckStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledecktrigger(on:)\",\"title\":\"func shuffleDeckTrigger<P>(on: P) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffledisabled(_:)\",\"title\":\"func shuffleDisabled(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffleoffset(_:)\",\"title\":\"func shuffleOffset(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflepadding(_:)\",\"title\":\"func shufflePadding(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflescale(_:)\",\"title\":\"func shuffleScale(CGFloat) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shufflestyle(_:)\",\"title\":\"func shuffleStyle(ShuffleStyle) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/shuffletrigger(on:)\",\"title\":\"func shuffleTrigger<P>(on: P) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/simultaneousgesture(_:including:)\",\"title\":\"func simultaneousGesture<T>(T, including: GestureMask) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/speechadjustedpitch(_:)\",\"title\":\"func speechAdjustedPitch(Double) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/speechalwaysincludespunctuation(_:)\",\"title\":\"func speechAlwaysIncludesPunctuation(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/speechannouncementsqueued(_:)\",\"title\":\"func speechAnnouncementsQueued(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/speechspellsoutcharacters(_:)\",\"title\":\"func speechSpellsOutCharacters(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/submitlabel(_:)\",\"title\":\"func submitLabel(SubmitLabel) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/submitscope(_:)\",\"title\":\"func submitScope(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/swipeactions(edge:allowsfullswipe:content:)\",\"title\":\"func swipeActions<T>(edge: HorizontalEdge, allowsFullSwipe: Bool, content: () -> T) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/symbolrenderingmode(_:)\",\"title\":\"func symbolRenderingMode(SymbolRenderingMode?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/symbolvariant(_:)\",\"title\":\"func symbolVariant(SymbolVariants) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tabitem(_:)\",\"title\":\"func tabItem<V>(() -> V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tabviewstyle(_:)\",\"title\":\"func tabViewStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tablestyle(_:)\",\"title\":\"func tableStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tag(_:)\",\"title\":\"func tag<V>(V) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/task(id:priority:_:)\",\"title\":\"func task<T>(id: T, priority: TaskPriority, () async -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/task(priority:_:)\",\"title\":\"func task(priority: TaskPriority, () async -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/textcase(_:)\",\"title\":\"func textCase(Text.Case?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/textcontenttype(_:)\",\"title\":\"func textContentType(NSTextContentType?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/textfieldstyle(_:)\",\"title\":\"func textFieldStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/textselection(_:)\",\"title\":\"func textSelection<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/tint(_:)\",\"title\":\"func tint(Color?) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/togglestyle(_:)\",\"title\":\"func toggleStyle<S>(S) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/toolbar(content:)-2fsde\",\"title\":\"func toolbar<Content>(content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/toolbar(content:)-9838r\",\"title\":\"func toolbar<Content>(content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/toolbar(id:content:)\",\"title\":\"func toolbar<Content>(id: String, content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbar(_:)\",\"title\":\"func touchBar<Content>(TouchBar<Content>) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbar(content:)\",\"title\":\"func touchBar<Content>(content: () -> Content) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbarcustomizationlabel(_:)\",\"title\":\"func touchBarCustomizationLabel(Text) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbaritempresence(_:)\",\"title\":\"func touchBarItemPresence(TouchBarItemPresence) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/touchbaritemprincipal(_:)\",\"title\":\"func touchBarItemPrincipal(Bool) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transaction(_:)\",\"title\":\"func transaction((inout Transaction) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transformanchorpreference(key:value:transform:)\",\"title\":\"func transformAnchorPreference<A, K>(key: K.Type, value: Anchor<A>.Source, transform: (inout K.Value, Anchor<A>) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transformeffect(_:)\",\"title\":\"func transformEffect(CGAffineTransform) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transformenvironment(_:transform:)\",\"title\":\"func transformEnvironment<V>(WritableKeyPath<EnvironmentValues, V>, transform: (inout V) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transformpreference(_:_:)\",\"title\":\"func transformPreference<K>(K.Type, (inout K.Value) -> Void) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/transition(_:)\",\"title\":\"func transition(AnyTransition) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/truncationmode(_:)\",\"title\":\"func truncationMode(Text.TruncationMode) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/unredacted()\",\"title\":\"func unredacted() -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/useractivity(_:element:_:)\",\"title\":\"func userActivity<P>(String, element: P?, (P, NSUserActivity) -> ()) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/useractivity(_:isactive:_:)\",\"title\":\"func userActivity(String, isActive: Bool, (NSUserActivity) -> ()) -> some View\",\"type\":\"method\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/zindex(_:)\",\"title\":\"func zIndex(Double) -> some View\",\"type\":\"method\"}],\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\\/view-implementations\",\"title\":\"View Implementations\",\"type\":\"symbol\"}],\"path\":\"\\/documentation\\/shuffleit\\/shufflestack\",\"title\":\"ShuffleStack\",\"type\":\"struct\"},{\"children\":[{\"title\":\"Enumeration Cases\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/easein\",\"title\":\"case easeIn\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/easeinout\",\"title\":\"case easeInOut\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/easeout\",\"title\":\"case easeOut\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/linear\",\"title\":\"case linear\",\"type\":\"case\"},{\"title\":\"Default Implementations\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Operators\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/!=(_:_:)\",\"title\":\"static func != (Self, Self) -> Bool\",\"type\":\"op\"}],\"path\":\"\\/documentation\\/shuffleit\\/shuffleanimation\\/equatable-implementations\",\"title\":\"Equatable Implementations\",\"type\":\"symbol\"}],\"path\":\"\\/documentation\\/shuffleit\\/shuffleanimation\",\"title\":\"ShuffleAnimation\",\"type\":\"enum\"},{\"children\":[{\"title\":\"Instance Properties\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflecontext\\/direction\",\"title\":\"let direction: ShuffleDirection\",\"type\":\"property\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflecontext\\/index\",\"title\":\"let index: Int\",\"type\":\"property\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflecontext\\/previousindex\",\"title\":\"let previousIndex: Int\",\"type\":\"property\"}],\"path\":\"\\/documentation\\/shuffleit\\/shufflecontext\",\"title\":\"ShuffleContext\",\"type\":\"struct\"},{\"children\":[{\"title\":\"Enumeration Cases\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledirection\\/left\",\"title\":\"case left\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledirection\\/right\",\"title\":\"case right\",\"type\":\"case\"},{\"title\":\"Default Implementations\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Operators\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shuffledirection\\/!=(_:_:)\",\"title\":\"static func != (Self, Self) -> Bool\",\"type\":\"op\"}],\"path\":\"\\/documentation\\/shuffleit\\/shuffledirection\\/equatable-implementations\",\"title\":\"Equatable Implementations\",\"type\":\"symbol\"}],\"path\":\"\\/documentation\\/shuffleit\\/shuffledirection\",\"title\":\"ShuffleDirection\",\"type\":\"enum\"},{\"children\":[{\"title\":\"Enumeration Cases\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/rotatein\",\"title\":\"case rotateIn\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/rotateout\",\"title\":\"case rotateOut\",\"type\":\"case\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/slide\",\"title\":\"case slide\",\"type\":\"case\"},{\"title\":\"Default Implementations\",\"type\":\"groupMarker\"},{\"children\":[{\"title\":\"Operators\",\"type\":\"groupMarker\"},{\"path\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/!=(_:_:)\",\"title\":\"static func != (Self, Self) -> Bool\",\"type\":\"op\"}],\"path\":\"\\/documentation\\/shuffleit\\/shufflestyle\\/equatable-implementations\",\"title\":\"Equatable Implementations\",\"type\":\"symbol\"}],\"path\":\"\\/documentation\\/shuffleit\\/shufflestyle\",\"title\":\"ShuffleStyle\",\"type\":\"enum\"}],\"path\":\"\\/documentation\\/shuffleit\",\"title\":\"ShuffleIt\",\"type\":\"module\"}]},\"schemaVersion\":{\"major\":0,\"minor\":1,\"patch\":0}}"
  },
  {
    "path": "docs/index.html",
    "content": "<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"utf-8\"><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1,viewport-fit=cover\"><link rel=\"icon\" href=\"/ShuffleIt/favicon.ico\"><link rel=\"mask-icon\" href=\"/ShuffleIt/favicon.svg\" color=\"#333333\"><title>Documentation</title><script>var baseUrl = \"/ShuffleIt/\"</script><link href=\"/ShuffleIt/css/documentation-topic.3bca6578.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/documentation-topic~topic~tutorials-overview.82acfe22.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/topic.ee15af52.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/tutorials-overview.06e8bcf7.css\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/chunk-2d0d3105.cd72cc8e.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic.f62098b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/documentation-topic~topic~tutorials-overview.8e36e44f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-bash.1b52852f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-c.d1db3f17.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-cpp.eaddddbe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-css.75eab1fe.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-markdown.7cffc4b3.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-custom-swift.5cda5c20.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-diff.62d66733.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-http.163e45b6.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-java.8326d9d8.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-javascript.acb8a8eb.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-json.471128d2.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-llvm.6100b125.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-markdown.90077643.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-objectivec.bcdf5156.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-perl.757d7b6f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-php.cc8d6c27.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-python.c214ed92.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-ruby.f889d392.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-scss.62ee18da.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-shell.dd7f411f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-swift.84f3e88c.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/highlight-js-xml.9c3688c7.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/topic.6a1c7b7f.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/js/tutorials-overview.c8178b83.js\" rel=\"prefetch\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"preload\" as=\"style\"><link href=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/js/index.58e30ec4.js\" rel=\"preload\" as=\"script\"><link href=\"/ShuffleIt/css/index.12bb178a.css\" rel=\"stylesheet\"></head><body data-color-scheme=\"auto\"><noscript><style>.noscript{font-family:\"SF Pro Display\",\"SF Pro Icons\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:92px auto 140px auto;text-align:center;width:980px}.noscript-title{color:#111;font-size:48px;font-weight:600;letter-spacing:-.003em;line-height:1.08365;margin:0 auto 54px auto;width:502px}@media only screen and (max-width:1068px){.noscript{margin:90px auto 120px auto;width:692px}.noscript-title{font-size:40px;letter-spacing:0;line-height:1.1;margin:0 auto 45px auto;width:420px}}@media only screen and (max-width:735px){.noscript{margin:45px auto 60px auto;width:87.5%}.noscript-title{font-size:32px;letter-spacing:.004em;line-height:1.125;margin:0 auto 35px auto;max-width:330px;width:auto}}#loading-placeholder{display:none}</style><div class=\"noscript\"><h1 class=\"noscript-title\">This page requires JavaScript.</h1><p>Please turn on JavaScript in your browser and refresh the page to view its content.</p></div></noscript><div id=\"app\"></div><script src=\"/ShuffleIt/js/chunk-vendors.b24b7aaa.js\"></script><script src=\"/ShuffleIt/js/index.58e30ec4.js\"></script></body></html>"
  },
  {
    "path": "docs/js/chunk-2d0d3105.cd72cc8e.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-2d0d3105\"],{\"5abe\":function(t,e){(function(){\"use strict\";if(\"object\"===typeof window)if(\"IntersectionObserver\"in window&&\"IntersectionObserverEntry\"in window&&\"intersectionRatio\"in window.IntersectionObserverEntry.prototype)\"isIntersecting\"in window.IntersectionObserverEntry.prototype||Object.defineProperty(window.IntersectionObserverEntry.prototype,\"isIntersecting\",{get:function(){return this.intersectionRatio>0}});else{var t=function(t){var e=t,n=i(e);while(n)e=n.ownerDocument,n=i(e);return e}(window.document),e=[],n=null,o=null;s.prototype.THROTTLE_TIMEOUT=100,s.prototype.POLL_INTERVAL=null,s.prototype.USE_MUTATION_OBSERVER=!0,s._setupCrossOriginUpdater=function(){return n||(n=function(t,n){o=t&&n?g(t,n):p(),e.forEach((function(t){t._checkForIntersections()}))}),n},s._resetCrossOriginUpdater=function(){n=null,o=null},s.prototype.observe=function(t){var e=this._observationTargets.some((function(e){return e.element==t}));if(!e){if(!t||1!=t.nodeType)throw new Error(\"target must be an Element\");this._registerInstance(),this._observationTargets.push({element:t,entry:null}),this._monitorIntersections(t.ownerDocument),this._checkForIntersections()}},s.prototype.unobserve=function(t){this._observationTargets=this._observationTargets.filter((function(e){return e.element!=t})),this._unmonitorIntersections(t.ownerDocument),0==this._observationTargets.length&&this._unregisterInstance()},s.prototype.disconnect=function(){this._observationTargets=[],this._unmonitorAllIntersections(),this._unregisterInstance()},s.prototype.takeRecords=function(){var t=this._queuedEntries.slice();return this._queuedEntries=[],t},s.prototype._initThresholds=function(t){var e=t||[0];return Array.isArray(e)||(e=[e]),e.sort().filter((function(t,e,n){if(\"number\"!=typeof t||isNaN(t)||t<0||t>1)throw new Error(\"threshold must be a number between 0 and 1 inclusively\");return t!==n[e-1]}))},s.prototype._parseRootMargin=function(t){var e=t||\"0px\",n=e.split(/\\s+/).map((function(t){var e=/^(-?\\d*\\.?\\d+)(px|%)$/.exec(t);if(!e)throw new Error(\"rootMargin must be specified in pixels or percent\");return{value:parseFloat(e[1]),unit:e[2]}}));return n[1]=n[1]||n[0],n[2]=n[2]||n[0],n[3]=n[3]||n[1],n},s.prototype._monitorIntersections=function(e){var n=e.defaultView;if(n&&-1==this._monitoringDocuments.indexOf(e)){var o=this._checkForIntersections,r=null,s=null;this.POLL_INTERVAL?r=n.setInterval(o,this.POLL_INTERVAL):(c(n,\"resize\",o,!0),c(e,\"scroll\",o,!0),this.USE_MUTATION_OBSERVER&&\"MutationObserver\"in n&&(s=new n.MutationObserver(o),s.observe(e,{attributes:!0,childList:!0,characterData:!0,subtree:!0}))),this._monitoringDocuments.push(e),this._monitoringUnsubscribes.push((function(){var t=e.defaultView;t&&(r&&t.clearInterval(r),a(t,\"resize\",o,!0)),a(e,\"scroll\",o,!0),s&&s.disconnect()}));var h=this.root&&(this.root.ownerDocument||this.root)||t;if(e!=h){var u=i(e);u&&this._monitorIntersections(u.ownerDocument)}}},s.prototype._unmonitorIntersections=function(e){var n=this._monitoringDocuments.indexOf(e);if(-1!=n){var o=this.root&&(this.root.ownerDocument||this.root)||t,r=this._observationTargets.some((function(t){var n=t.element.ownerDocument;if(n==e)return!0;while(n&&n!=o){var r=i(n);if(n=r&&r.ownerDocument,n==e)return!0}return!1}));if(!r){var s=this._monitoringUnsubscribes[n];if(this._monitoringDocuments.splice(n,1),this._monitoringUnsubscribes.splice(n,1),s(),e!=o){var h=i(e);h&&this._unmonitorIntersections(h.ownerDocument)}}}},s.prototype._unmonitorAllIntersections=function(){var t=this._monitoringUnsubscribes.slice(0);this._monitoringDocuments.length=0,this._monitoringUnsubscribes.length=0;for(var e=0;e<t.length;e++)t[e]()},s.prototype._checkForIntersections=function(){if(this.root||!n||o){var t=this._rootIsInDom(),e=t?this._getRootRect():p();this._observationTargets.forEach((function(o){var i=o.element,s=f(i),u=this._rootContainsTarget(i),c=o.entry,a=t&&u&&this._computeTargetAndRootIntersection(i,s,e),l=null;this._rootContainsTarget(i)?n&&!this.root||(l=e):l=p();var d=o.entry=new r({time:h(),target:i,boundingClientRect:s,rootBounds:l,intersectionRect:a});c?t&&u?this._hasCrossedThreshold(c,d)&&this._queuedEntries.push(d):c&&c.isIntersecting&&this._queuedEntries.push(d):this._queuedEntries.push(d)}),this),this._queuedEntries.length&&this._callback(this.takeRecords(),this)}},s.prototype._computeTargetAndRootIntersection=function(e,i,r){if(\"none\"!=window.getComputedStyle(e).display){var s=i,h=v(e),u=!1;while(!u&&h){var c=null,a=1==h.nodeType?window.getComputedStyle(h):{};if(\"none\"==a.display)return null;if(h==this.root||9==h.nodeType)if(u=!0,h==this.root||h==t)n&&!this.root?!o||0==o.width&&0==o.height?(h=null,c=null,s=null):c=o:c=r;else{var p=v(h),d=p&&f(p),m=p&&this._computeTargetAndRootIntersection(p,d,r);d&&m?(h=p,c=g(d,m)):(h=null,s=null)}else{var w=h.ownerDocument;h!=w.body&&h!=w.documentElement&&\"visible\"!=a.overflow&&(c=f(h))}if(c&&(s=l(c,s)),!s)break;h=h&&v(h)}return s}},s.prototype._getRootRect=function(){var e;if(this.root&&!w(this.root))e=f(this.root);else{var n=w(this.root)?this.root:t,o=n.documentElement,i=n.body;e={top:0,left:0,right:o.clientWidth||i.clientWidth,width:o.clientWidth||i.clientWidth,bottom:o.clientHeight||i.clientHeight,height:o.clientHeight||i.clientHeight}}return this._expandRectByRootMargin(e)},s.prototype._expandRectByRootMargin=function(t){var e=this._rootMarginValues.map((function(e,n){return\"px\"==e.unit?e.value:e.value*(n%2?t.width:t.height)/100})),n={top:t.top-e[0],right:t.right+e[1],bottom:t.bottom+e[2],left:t.left-e[3]};return n.width=n.right-n.left,n.height=n.bottom-n.top,n},s.prototype._hasCrossedThreshold=function(t,e){var n=t&&t.isIntersecting?t.intersectionRatio||0:-1,o=e.isIntersecting?e.intersectionRatio||0:-1;if(n!==o)for(var i=0;i<this.thresholds.length;i++){var r=this.thresholds[i];if(r==n||r==o||r<n!==r<o)return!0}},s.prototype._rootIsInDom=function(){return!this.root||m(t,this.root)},s.prototype._rootContainsTarget=function(e){var n=this.root&&(this.root.ownerDocument||this.root)||t;return m(n,e)&&(!this.root||n==e.ownerDocument)},s.prototype._registerInstance=function(){e.indexOf(this)<0&&e.push(this)},s.prototype._unregisterInstance=function(){var t=e.indexOf(this);-1!=t&&e.splice(t,1)},window.IntersectionObserver=s,window.IntersectionObserverEntry=r}function i(t){try{return t.defaultView&&t.defaultView.frameElement||null}catch(e){return null}}function r(t){this.time=t.time,this.target=t.target,this.rootBounds=d(t.rootBounds),this.boundingClientRect=d(t.boundingClientRect),this.intersectionRect=d(t.intersectionRect||p()),this.isIntersecting=!!t.intersectionRect;var e=this.boundingClientRect,n=e.width*e.height,o=this.intersectionRect,i=o.width*o.height;this.intersectionRatio=n?Number((i/n).toFixed(4)):this.isIntersecting?1:0}function s(t,e){var n=e||{};if(\"function\"!=typeof t)throw new Error(\"callback must be a function\");if(n.root&&1!=n.root.nodeType&&9!=n.root.nodeType)throw new Error(\"root must be a Document or Element\");this._checkForIntersections=u(this._checkForIntersections.bind(this),this.THROTTLE_TIMEOUT),this._callback=t,this._observationTargets=[],this._queuedEntries=[],this._rootMarginValues=this._parseRootMargin(n.rootMargin),this.thresholds=this._initThresholds(n.threshold),this.root=n.root||null,this.rootMargin=this._rootMarginValues.map((function(t){return t.value+t.unit})).join(\" \"),this._monitoringDocuments=[],this._monitoringUnsubscribes=[]}function h(){return window.performance&&performance.now&&performance.now()}function u(t,e){var n=null;return function(){n||(n=setTimeout((function(){t(),n=null}),e))}}function c(t,e,n,o){\"function\"==typeof t.addEventListener?t.addEventListener(e,n,o||!1):\"function\"==typeof t.attachEvent&&t.attachEvent(\"on\"+e,n)}function a(t,e,n,o){\"function\"==typeof t.removeEventListener?t.removeEventListener(e,n,o||!1):\"function\"==typeof t.detatchEvent&&t.detatchEvent(\"on\"+e,n)}function l(t,e){var n=Math.max(t.top,e.top),o=Math.min(t.bottom,e.bottom),i=Math.max(t.left,e.left),r=Math.min(t.right,e.right),s=r-i,h=o-n;return s>=0&&h>=0&&{top:n,bottom:o,left:i,right:r,width:s,height:h}||null}function f(t){var e;try{e=t.getBoundingClientRect()}catch(n){}return e?(e.width&&e.height||(e={top:e.top,right:e.right,bottom:e.bottom,left:e.left,width:e.right-e.left,height:e.bottom-e.top}),e):p()}function p(){return{top:0,bottom:0,left:0,right:0,width:0,height:0}}function d(t){return!t||\"x\"in t?t:{top:t.top,y:t.top,bottom:t.bottom,left:t.left,x:t.left,right:t.right,width:t.width,height:t.height}}function g(t,e){var n=e.top-t.top,o=e.left-t.left;return{top:n,left:o,height:e.height,width:e.width,bottom:n+e.height,right:o+e.width}}function m(t,e){var n=e;while(n){if(n==t)return!0;n=v(n)}return!1}function v(e){var n=e.parentNode;return 9==e.nodeType&&e!=t?i(e):(n&&n.assignedSlot&&(n=n.assignedSlot.parentNode),n&&11==n.nodeType&&n.host?n.host:n)}function w(t){return t&&9===t.nodeType}})()}}]);"
  },
  {
    "path": "docs/js/chunk-vendors.b24b7aaa.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"chunk-vendors\"],{2877:function(t,e,n){\"use strict\";function r(t,e,n,r,o,i,a,s){var c,u=\"function\"===typeof t?t.options:t;if(e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId=\"data-v-\"+i),a?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),o&&o.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},u._ssrRegister=c):o&&(c=s?function(){o.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:o),c)if(u.functional){u._injectStyles=c;var f=u.render;u.render=function(t,e){return c.call(e),f(t,e)}}else{var l=u.beforeCreate;u.beforeCreate=l?[].concat(l,c):[c]}return{exports:t,options:u}}n.d(e,\"a\",(function(){return r}))},\"2b0e\":function(t,e,n){\"use strict\";n.r(e),function(t){\n/*!\n * Vue.js v2.6.14\n * (c) 2014-2021 Evan You\n * Released under the MIT License.\n */\nvar n=Object.freeze({});function r(t){return void 0===t||null===t}function o(t){return void 0!==t&&null!==t}function i(t){return!0===t}function a(t){return!1===t}function s(t){return\"string\"===typeof t||\"number\"===typeof t||\"symbol\"===typeof t||\"boolean\"===typeof t}function c(t){return null!==t&&\"object\"===typeof t}var u=Object.prototype.toString;function f(t){return\"[object Object]\"===u.call(t)}function l(t){return\"[object RegExp]\"===u.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function d(t){return o(t)&&\"function\"===typeof t.then&&\"function\"===typeof t.catch}function h(t){return null==t?\"\":Array.isArray(t)||f(t)&&t.toString===u?JSON.stringify(t,null,2):String(t)}function v(t){var e=parseFloat(t);return isNaN(e)?t:e}function y(t,e){for(var n=Object.create(null),r=t.split(\",\"),o=0;o<r.length;o++)n[r[o]]=!0;return e?function(t){return n[t.toLowerCase()]}:function(t){return n[t]}}y(\"slot,component\",!0);var m=y(\"key,ref,slot,slot-scope,is\");function g(t,e){if(t.length){var n=t.indexOf(e);if(n>-1)return t.splice(n,1)}}var _=Object.prototype.hasOwnProperty;function b(t,e){return _.call(t,e)}function w(t){var e=Object.create(null);return function(n){var r=e[n];return r||(e[n]=t(n))}}var C=/-(\\w)/g,x=w((function(t){return t.replace(C,(function(t,e){return e?e.toUpperCase():\"\"}))})),A=w((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),$=/\\B([A-Z])/g,k=w((function(t){return t.replace($,\"-$1\").toLowerCase()}));function O(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function S(t,e){return t.bind(e)}var E=Function.prototype.bind?S:O;function T(t,e){e=e||0;var n=t.length-e,r=new Array(n);while(n--)r[n]=t[n+e];return r}function j(t,e){for(var n in e)t[n]=e[n];return t}function R(t){for(var e={},n=0;n<t.length;n++)t[n]&&j(e,t[n]);return e}function P(t,e,n){}var I=function(t,e,n){return!1},L=function(t){return t};function N(t,e){if(t===e)return!0;var n=c(t),r=c(e);if(!n||!r)return!n&&!r&&String(t)===String(e);try{var o=Array.isArray(t),i=Array.isArray(e);if(o&&i)return t.length===e.length&&t.every((function(t,n){return N(t,e[n])}));if(t instanceof Date&&e instanceof Date)return t.getTime()===e.getTime();if(o||i)return!1;var a=Object.keys(t),s=Object.keys(e);return a.length===s.length&&a.every((function(n){return N(t[n],e[n])}))}catch(u){return!1}}function D(t,e){for(var n=0;n<t.length;n++)if(N(t[n],e))return n;return-1}function M(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}var F=\"data-server-rendered\",U=[\"component\",\"directive\",\"filter\"],V=[\"beforeCreate\",\"created\",\"beforeMount\",\"mounted\",\"beforeUpdate\",\"updated\",\"beforeDestroy\",\"destroyed\",\"activated\",\"deactivated\",\"errorCaptured\",\"serverPrefetch\"],B={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:I,isReservedAttr:I,isUnknownElement:I,getTagNamespace:P,parsePlatformTagName:L,mustUseProp:I,async:!0,_lifecycleHooks:V},H=/a-zA-Z\\u00B7\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u203F-\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD/;function q(t){var e=(t+\"\").charCodeAt(0);return 36===e||95===e}function z(t,e,n,r){Object.defineProperty(t,e,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var W=new RegExp(\"[^\"+H.source+\".$_\\\\d]\");function K(t){if(!W.test(t)){var e=t.split(\".\");return function(t){for(var n=0;n<e.length;n++){if(!t)return;t=t[e[n]]}return t}}}var X,J=\"__proto__\"in{},G=\"undefined\"!==typeof window,Q=\"undefined\"!==typeof WXEnvironment&&!!WXEnvironment.platform,Y=Q&&WXEnvironment.platform.toLowerCase(),Z=G&&window.navigator.userAgent.toLowerCase(),tt=Z&&/msie|trident/.test(Z),et=Z&&Z.indexOf(\"msie 9.0\")>0,nt=Z&&Z.indexOf(\"edge/\")>0,rt=(Z&&Z.indexOf(\"android\"),Z&&/iphone|ipad|ipod|ios/.test(Z)||\"ios\"===Y),ot=(Z&&/chrome\\/\\d+/.test(Z),Z&&/phantomjs/.test(Z),Z&&Z.match(/firefox\\/(\\d+)/)),it={}.watch,at=!1;if(G)try{var st={};Object.defineProperty(st,\"passive\",{get:function(){at=!0}}),window.addEventListener(\"test-passive\",null,st)}catch(Aa){}var ct=function(){return void 0===X&&(X=!G&&!Q&&\"undefined\"!==typeof t&&(t[\"process\"]&&\"server\"===t[\"process\"].env.VUE_ENV)),X},ut=G&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ft(t){return\"function\"===typeof t&&/native code/.test(t.toString())}var lt,pt=\"undefined\"!==typeof Symbol&&ft(Symbol)&&\"undefined\"!==typeof Reflect&&ft(Reflect.ownKeys);lt=\"undefined\"!==typeof Set&&ft(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var dt=P,ht=0,vt=function(){this.id=ht++,this.subs=[]};vt.prototype.addSub=function(t){this.subs.push(t)},vt.prototype.removeSub=function(t){g(this.subs,t)},vt.prototype.depend=function(){vt.target&&vt.target.addDep(this)},vt.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e<n;e++)t[e].update()},vt.target=null;var yt=[];function mt(t){yt.push(t),vt.target=t}function gt(){yt.pop(),vt.target=yt[yt.length-1]}var _t=function(t,e,n,r,o,i,a,s){this.tag=t,this.data=e,this.children=n,this.text=r,this.elm=o,this.ns=void 0,this.context=i,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=s,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},bt={child:{configurable:!0}};bt.child.get=function(){return this.componentInstance},Object.defineProperties(_t.prototype,bt);var wt=function(t){void 0===t&&(t=\"\");var e=new _t;return e.text=t,e.isComment=!0,e};function Ct(t){return new _t(void 0,void 0,void 0,String(t))}function xt(t){var e=new _t(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}var At=Array.prototype,$t=Object.create(At),kt=[\"push\",\"pop\",\"shift\",\"unshift\",\"splice\",\"sort\",\"reverse\"];kt.forEach((function(t){var e=At[t];z($t,t,(function(){var n=[],r=arguments.length;while(r--)n[r]=arguments[r];var o,i=e.apply(this,n),a=this.__ob__;switch(t){case\"push\":case\"unshift\":o=n;break;case\"splice\":o=n.slice(2);break}return o&&a.observeArray(o),a.dep.notify(),i}))}));var Ot=Object.getOwnPropertyNames($t),St=!0;function Et(t){St=t}var Tt=function(t){this.value=t,this.dep=new vt,this.vmCount=0,z(t,\"__ob__\",this),Array.isArray(t)?(J?jt(t,$t):Rt(t,$t,Ot),this.observeArray(t)):this.walk(t)};function jt(t,e){t.__proto__=e}function Rt(t,e,n){for(var r=0,o=n.length;r<o;r++){var i=n[r];z(t,i,e[i])}}function Pt(t,e){var n;if(c(t)&&!(t instanceof _t))return b(t,\"__ob__\")&&t.__ob__ instanceof Tt?n=t.__ob__:St&&!ct()&&(Array.isArray(t)||f(t))&&Object.isExtensible(t)&&!t._isVue&&(n=new Tt(t)),e&&n&&n.vmCount++,n}function It(t,e,n,r,o){var i=new vt,a=Object.getOwnPropertyDescriptor(t,e);if(!a||!1!==a.configurable){var s=a&&a.get,c=a&&a.set;s&&!c||2!==arguments.length||(n=t[e]);var u=!o&&Pt(n);Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=s?s.call(t):n;return vt.target&&(i.depend(),u&&(u.dep.depend(),Array.isArray(e)&&Dt(e))),e},set:function(e){var r=s?s.call(t):n;e===r||e!==e&&r!==r||s&&!c||(c?c.call(t,e):n=e,u=!o&&Pt(e),i.notify())}})}}function Lt(t,e,n){if(Array.isArray(t)&&p(e))return t.length=Math.max(t.length,e),t.splice(e,1,n),n;if(e in t&&!(e in Object.prototype))return t[e]=n,n;var r=t.__ob__;return t._isVue||r&&r.vmCount?n:r?(It(r.value,e,n),r.dep.notify(),n):(t[e]=n,n)}function Nt(t,e){if(Array.isArray(t)&&p(e))t.splice(e,1);else{var n=t.__ob__;t._isVue||n&&n.vmCount||b(t,e)&&(delete t[e],n&&n.dep.notify())}}function Dt(t){for(var e=void 0,n=0,r=t.length;n<r;n++)e=t[n],e&&e.__ob__&&e.__ob__.dep.depend(),Array.isArray(e)&&Dt(e)}Tt.prototype.walk=function(t){for(var e=Object.keys(t),n=0;n<e.length;n++)It(t,e[n])},Tt.prototype.observeArray=function(t){for(var e=0,n=t.length;e<n;e++)Pt(t[e])};var Mt=B.optionMergeStrategies;function Ft(t,e){if(!e)return t;for(var n,r,o,i=pt?Reflect.ownKeys(e):Object.keys(e),a=0;a<i.length;a++)n=i[a],\"__ob__\"!==n&&(r=t[n],o=e[n],b(t,n)?r!==o&&f(r)&&f(o)&&Ft(r,o):Lt(t,n,o));return t}function Ut(t,e,n){return n?function(){var r=\"function\"===typeof e?e.call(n,n):e,o=\"function\"===typeof t?t.call(n,n):t;return r?Ft(r,o):o}:e?t?function(){return Ft(\"function\"===typeof e?e.call(this,this):e,\"function\"===typeof t?t.call(this,this):t)}:e:t}function Vt(t,e){var n=e?t?t.concat(e):Array.isArray(e)?e:[e]:t;return n?Bt(n):n}function Bt(t){for(var e=[],n=0;n<t.length;n++)-1===e.indexOf(t[n])&&e.push(t[n]);return e}function Ht(t,e,n,r){var o=Object.create(t||null);return e?j(o,e):o}Mt.data=function(t,e,n){return n?Ut(t,e,n):e&&\"function\"!==typeof e?t:Ut(t,e)},V.forEach((function(t){Mt[t]=Vt})),U.forEach((function(t){Mt[t+\"s\"]=Ht})),Mt.watch=function(t,e,n,r){if(t===it&&(t=void 0),e===it&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var o={};for(var i in j(o,t),e){var a=o[i],s=e[i];a&&!Array.isArray(a)&&(a=[a]),o[i]=a?a.concat(s):Array.isArray(s)?s:[s]}return o},Mt.props=Mt.methods=Mt.inject=Mt.computed=function(t,e,n,r){if(!t)return e;var o=Object.create(null);return j(o,t),e&&j(o,e),o},Mt.provide=Ut;var qt=function(t,e){return void 0===e?t:e};function zt(t,e){var n=t.props;if(n){var r,o,i,a={};if(Array.isArray(n)){r=n.length;while(r--)o=n[r],\"string\"===typeof o&&(i=x(o),a[i]={type:null})}else if(f(n))for(var s in n)o=n[s],i=x(s),a[i]=f(o)?o:{type:o};else 0;t.props=a}}function Wt(t,e){var n=t.inject;if(n){var r=t.inject={};if(Array.isArray(n))for(var o=0;o<n.length;o++)r[n[o]]={from:n[o]};else if(f(n))for(var i in n){var a=n[i];r[i]=f(a)?j({from:i},a):{from:a}}else 0}}function Kt(t){var e=t.directives;if(e)for(var n in e){var r=e[n];\"function\"===typeof r&&(e[n]={bind:r,update:r})}}function Xt(t,e,n){if(\"function\"===typeof e&&(e=e.options),zt(e,n),Wt(e,n),Kt(e),!e._base&&(e.extends&&(t=Xt(t,e.extends,n)),e.mixins))for(var r=0,o=e.mixins.length;r<o;r++)t=Xt(t,e.mixins[r],n);var i,a={};for(i in t)s(i);for(i in e)b(t,i)||s(i);function s(r){var o=Mt[r]||qt;a[r]=o(t[r],e[r],n,r)}return a}function Jt(t,e,n,r){if(\"string\"===typeof n){var o=t[e];if(b(o,n))return o[n];var i=x(n);if(b(o,i))return o[i];var a=A(i);if(b(o,a))return o[a];var s=o[n]||o[i]||o[a];return s}}function Gt(t,e,n,r){var o=e[t],i=!b(n,t),a=n[t],s=ee(Boolean,o.type);if(s>-1)if(i&&!b(o,\"default\"))a=!1;else if(\"\"===a||a===k(t)){var c=ee(String,o.type);(c<0||s<c)&&(a=!0)}if(void 0===a){a=Qt(r,o,t);var u=St;Et(!0),Pt(a),Et(u)}return a}function Qt(t,e,n){if(b(e,\"default\")){var r=e.default;return t&&t.$options.propsData&&void 0===t.$options.propsData[n]&&void 0!==t._props[n]?t._props[n]:\"function\"===typeof r&&\"Function\"!==Zt(e.type)?r.call(t):r}}var Yt=/^\\s*function (\\w+)/;function Zt(t){var e=t&&t.toString().match(Yt);return e?e[1]:\"\"}function te(t,e){return Zt(t)===Zt(e)}function ee(t,e){if(!Array.isArray(e))return te(e,t)?0:-1;for(var n=0,r=e.length;n<r;n++)if(te(e[n],t))return n;return-1}function ne(t,e,n){mt();try{if(e){var r=e;while(r=r.$parent){var o=r.$options.errorCaptured;if(o)for(var i=0;i<o.length;i++)try{var a=!1===o[i].call(r,t,e,n);if(a)return}catch(Aa){oe(Aa,r,\"errorCaptured hook\")}}}oe(t,e,n)}finally{gt()}}function re(t,e,n,r,o){var i;try{i=n?t.apply(e,n):t.call(e),i&&!i._isVue&&d(i)&&!i._handled&&(i.catch((function(t){return ne(t,r,o+\" (Promise/async)\")})),i._handled=!0)}catch(Aa){ne(Aa,r,o)}return i}function oe(t,e,n){if(B.errorHandler)try{return B.errorHandler.call(null,t,e,n)}catch(Aa){Aa!==t&&ie(Aa,null,\"config.errorHandler\")}ie(t,e,n)}function ie(t,e,n){if(!G&&!Q||\"undefined\"===typeof console)throw t;console.error(t)}var ae,se=!1,ce=[],ue=!1;function fe(){ue=!1;var t=ce.slice(0);ce.length=0;for(var e=0;e<t.length;e++)t[e]()}if(\"undefined\"!==typeof Promise&&ft(Promise)){var le=Promise.resolve();ae=function(){le.then(fe),rt&&setTimeout(P)},se=!0}else if(tt||\"undefined\"===typeof MutationObserver||!ft(MutationObserver)&&\"[object MutationObserverConstructor]\"!==MutationObserver.toString())ae=\"undefined\"!==typeof setImmediate&&ft(setImmediate)?function(){setImmediate(fe)}:function(){setTimeout(fe,0)};else{var pe=1,de=new MutationObserver(fe),he=document.createTextNode(String(pe));de.observe(he,{characterData:!0}),ae=function(){pe=(pe+1)%2,he.data=String(pe)},se=!0}function ve(t,e){var n;if(ce.push((function(){if(t)try{t.call(e)}catch(Aa){ne(Aa,e,\"nextTick\")}else n&&n(e)})),ue||(ue=!0,ae()),!t&&\"undefined\"!==typeof Promise)return new Promise((function(t){n=t}))}var ye=new lt;function me(t){ge(t,ye),ye.clear()}function ge(t,e){var n,r,o=Array.isArray(t);if(!(!o&&!c(t)||Object.isFrozen(t)||t instanceof _t)){if(t.__ob__){var i=t.__ob__.dep.id;if(e.has(i))return;e.add(i)}if(o){n=t.length;while(n--)ge(t[n],e)}else{r=Object.keys(t),n=r.length;while(n--)ge(t[r[n]],e)}}}var _e=w((function(t){var e=\"&\"===t.charAt(0);t=e?t.slice(1):t;var n=\"~\"===t.charAt(0);t=n?t.slice(1):t;var r=\"!\"===t.charAt(0);return t=r?t.slice(1):t,{name:t,once:n,capture:r,passive:e}}));function be(t,e){function n(){var t=arguments,r=n.fns;if(!Array.isArray(r))return re(r,null,arguments,e,\"v-on handler\");for(var o=r.slice(),i=0;i<o.length;i++)re(o[i],null,t,e,\"v-on handler\")}return n.fns=t,n}function we(t,e,n,o,a,s){var c,u,f,l;for(c in t)u=t[c],f=e[c],l=_e(c),r(u)||(r(f)?(r(u.fns)&&(u=t[c]=be(u,s)),i(l.once)&&(u=t[c]=a(l.name,u,l.capture)),n(l.name,u,l.capture,l.passive,l.params)):u!==f&&(f.fns=u,t[c]=f));for(c in e)r(t[c])&&(l=_e(c),o(l.name,e[c],l.capture))}function Ce(t,e,n){var a;t instanceof _t&&(t=t.data.hook||(t.data.hook={}));var s=t[e];function c(){n.apply(this,arguments),g(a.fns,c)}r(s)?a=be([c]):o(s.fns)&&i(s.merged)?(a=s,a.fns.push(c)):a=be([s,c]),a.merged=!0,t[e]=a}function xe(t,e,n){var i=e.options.props;if(!r(i)){var a={},s=t.attrs,c=t.props;if(o(s)||o(c))for(var u in i){var f=k(u);Ae(a,c,u,f,!0)||Ae(a,s,u,f,!1)}return a}}function Ae(t,e,n,r,i){if(o(e)){if(b(e,n))return t[n]=e[n],i||delete e[n],!0;if(b(e,r))return t[n]=e[r],i||delete e[r],!0}return!1}function $e(t){for(var e=0;e<t.length;e++)if(Array.isArray(t[e]))return Array.prototype.concat.apply([],t);return t}function ke(t){return s(t)?[Ct(t)]:Array.isArray(t)?Se(t):void 0}function Oe(t){return o(t)&&o(t.text)&&a(t.isComment)}function Se(t,e){var n,a,c,u,f=[];for(n=0;n<t.length;n++)a=t[n],r(a)||\"boolean\"===typeof a||(c=f.length-1,u=f[c],Array.isArray(a)?a.length>0&&(a=Se(a,(e||\"\")+\"_\"+n),Oe(a[0])&&Oe(u)&&(f[c]=Ct(u.text+a[0].text),a.shift()),f.push.apply(f,a)):s(a)?Oe(u)?f[c]=Ct(u.text+a):\"\"!==a&&f.push(Ct(a)):Oe(a)&&Oe(u)?f[c]=Ct(u.text+a.text):(i(t._isVList)&&o(a.tag)&&r(a.key)&&o(e)&&(a.key=\"__vlist\"+e+\"_\"+n+\"__\"),f.push(a)));return f}function Ee(t){var e=t.$options.provide;e&&(t._provided=\"function\"===typeof e?e.call(t):e)}function Te(t){var e=je(t.$options.inject,t);e&&(Et(!1),Object.keys(e).forEach((function(n){It(t,n,e[n])})),Et(!0))}function je(t,e){if(t){for(var n=Object.create(null),r=pt?Reflect.ownKeys(t):Object.keys(t),o=0;o<r.length;o++){var i=r[o];if(\"__ob__\"!==i){var a=t[i].from,s=e;while(s){if(s._provided&&b(s._provided,a)){n[i]=s._provided[a];break}s=s.$parent}if(!s)if(\"default\"in t[i]){var c=t[i].default;n[i]=\"function\"===typeof c?c.call(e):c}else 0}}return n}}function Re(t,e){if(!t||!t.length)return{};for(var n={},r=0,o=t.length;r<o;r++){var i=t[r],a=i.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,i.context!==e&&i.fnContext!==e||!a||null==a.slot)(n.default||(n.default=[])).push(i);else{var s=a.slot,c=n[s]||(n[s]=[]);\"template\"===i.tag?c.push.apply(c,i.children||[]):c.push(i)}}for(var u in n)n[u].every(Pe)&&delete n[u];return n}function Pe(t){return t.isComment&&!t.asyncFactory||\" \"===t.text}function Ie(t){return t.isComment&&t.asyncFactory}function Le(t,e,r){var o,i=Object.keys(e).length>0,a=t?!!t.$stable:!i,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&r&&r!==n&&s===r.$key&&!i&&!r.$hasNormal)return r;for(var c in o={},t)t[c]&&\"$\"!==c[0]&&(o[c]=Ne(e,c,t[c]))}else o={};for(var u in e)u in o||(o[u]=De(e,u));return t&&Object.isExtensible(t)&&(t._normalized=o),z(o,\"$stable\",a),z(o,\"$key\",s),z(o,\"$hasNormal\",i),o}function Ne(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});t=t&&\"object\"===typeof t&&!Array.isArray(t)?[t]:ke(t);var e=t&&t[0];return t&&(!e||1===t.length&&e.isComment&&!Ie(e))?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function De(t,e){return function(){return t[e]}}function Me(t,e){var n,r,i,a,s;if(Array.isArray(t)||\"string\"===typeof t)for(n=new Array(t.length),r=0,i=t.length;r<i;r++)n[r]=e(t[r],r);else if(\"number\"===typeof t)for(n=new Array(t),r=0;r<t;r++)n[r]=e(r+1,r);else if(c(t))if(pt&&t[Symbol.iterator]){n=[];var u=t[Symbol.iterator](),f=u.next();while(!f.done)n.push(e(f.value,n.length)),f=u.next()}else for(a=Object.keys(t),n=new Array(a.length),r=0,i=a.length;r<i;r++)s=a[r],n[r]=e(t[s],s,r);return o(n)||(n=[]),n._isVList=!0,n}function Fe(t,e,n,r){var o,i=this.$scopedSlots[t];i?(n=n||{},r&&(n=j(j({},r),n)),o=i(n)||(\"function\"===typeof e?e():e)):o=this.$slots[t]||(\"function\"===typeof e?e():e);var a=n&&n.slot;return a?this.$createElement(\"template\",{slot:a},o):o}function Ue(t){return Jt(this.$options,\"filters\",t,!0)||L}function Ve(t,e){return Array.isArray(t)?-1===t.indexOf(e):t!==e}function Be(t,e,n,r,o){var i=B.keyCodes[e]||n;return o&&r&&!B.keyCodes[e]?Ve(o,r):i?Ve(i,t):r?k(r)!==e:void 0===t}function He(t,e,n,r,o){if(n)if(c(n)){var i;Array.isArray(n)&&(n=R(n));var a=function(a){if(\"class\"===a||\"style\"===a||m(a))i=t;else{var s=t.attrs&&t.attrs.type;i=r||B.mustUseProp(e,s,a)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}var c=x(a),u=k(a);if(!(c in i)&&!(u in i)&&(i[a]=n[a],o)){var f=t.on||(t.on={});f[\"update:\"+a]=function(t){n[a]=t}}};for(var s in n)a(s)}else;return t}function qe(t,e){var n=this._staticTrees||(this._staticTrees=[]),r=n[t];return r&&!e||(r=n[t]=this.$options.staticRenderFns[t].call(this._renderProxy,null,this),We(r,\"__static__\"+t,!1)),r}function ze(t,e,n){return We(t,\"__once__\"+e+(n?\"_\"+n:\"\"),!0),t}function We(t,e,n){if(Array.isArray(t))for(var r=0;r<t.length;r++)t[r]&&\"string\"!==typeof t[r]&&Ke(t[r],e+\"_\"+r,n);else Ke(t,e,n)}function Ke(t,e,n){t.isStatic=!0,t.key=e,t.isOnce=n}function Xe(t,e){if(e)if(f(e)){var n=t.on=t.on?j({},t.on):{};for(var r in e){var o=n[r],i=e[r];n[r]=o?[].concat(o,i):i}}else;return t}function Je(t,e,n,r){e=e||{$stable:!n};for(var o=0;o<t.length;o++){var i=t[o];Array.isArray(i)?Je(i,e,n):i&&(i.proxy&&(i.fn.proxy=!0),e[i.key]=i.fn)}return r&&(e.$key=r),e}function Ge(t,e){for(var n=0;n<e.length;n+=2){var r=e[n];\"string\"===typeof r&&r&&(t[e[n]]=e[n+1])}return t}function Qe(t,e){return\"string\"===typeof t?e+t:t}function Ye(t){t._o=ze,t._n=v,t._s=h,t._l=Me,t._t=Fe,t._q=N,t._i=D,t._m=qe,t._f=Ue,t._k=Be,t._b=He,t._v=Ct,t._e=wt,t._u=Je,t._g=Xe,t._d=Ge,t._p=Qe}function Ze(t,e,r,o,a){var s,c=this,u=a.options;b(o,\"_uid\")?(s=Object.create(o),s._original=o):(s=o,o=o._original);var f=i(u._compiled),l=!f;this.data=t,this.props=e,this.children=r,this.parent=o,this.listeners=t.on||n,this.injections=je(u.inject,o),this.slots=function(){return c.$slots||Le(t.scopedSlots,c.$slots=Re(r,o)),c.$slots},Object.defineProperty(this,\"scopedSlots\",{enumerable:!0,get:function(){return Le(t.scopedSlots,this.slots())}}),f&&(this.$options=u,this.$slots=this.slots(),this.$scopedSlots=Le(t.scopedSlots,this.$slots)),u._scopeId?this._c=function(t,e,n,r){var i=dn(s,t,e,n,r,l);return i&&!Array.isArray(i)&&(i.fnScopeId=u._scopeId,i.fnContext=o),i}:this._c=function(t,e,n,r){return dn(s,t,e,n,r,l)}}function tn(t,e,r,i,a){var s=t.options,c={},u=s.props;if(o(u))for(var f in u)c[f]=Gt(f,u,e||n);else o(r.attrs)&&nn(c,r.attrs),o(r.props)&&nn(c,r.props);var l=new Ze(r,c,a,i,t),p=s.render.call(null,l._c,l);if(p instanceof _t)return en(p,r,l.parent,s,l);if(Array.isArray(p)){for(var d=ke(p)||[],h=new Array(d.length),v=0;v<d.length;v++)h[v]=en(d[v],r,l.parent,s,l);return h}}function en(t,e,n,r,o){var i=xt(t);return i.fnContext=n,i.fnOptions=r,e.slot&&((i.data||(i.data={})).slot=e.slot),i}function nn(t,e){for(var n in e)t[x(n)]=e[n]}Ye(Ze.prototype);var rn={init:function(t,e){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var n=t;rn.prepatch(n,n)}else{var r=t.componentInstance=sn(t,jn);r.$mount(e?t.elm:void 0,e)}},prepatch:function(t,e){var n=e.componentOptions,r=e.componentInstance=t.componentInstance;Nn(r,n.propsData,n.listeners,e,n.children)},insert:function(t){var e=t.context,n=t.componentInstance;n._isMounted||(n._isMounted=!0,Un(n,\"mounted\")),t.data.keepAlive&&(e._isMounted?Zn(n):Mn(n,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?Fn(e,!0):e.$destroy())}},on=Object.keys(rn);function an(t,e,n,a,s){if(!r(t)){var u=n.$options._base;if(c(t)&&(t=u.extend(t)),\"function\"===typeof t){var f;if(r(t.cid)&&(f=t,t=xn(f,u),void 0===t))return Cn(f,e,n,a,s);e=e||{},Cr(t),o(e.model)&&fn(t.options,e);var l=xe(e,t,s);if(i(t.options.functional))return tn(t,l,e,n,a);var p=e.on;if(e.on=e.nativeOn,i(t.options.abstract)){var d=e.slot;e={},d&&(e.slot=d)}cn(e);var h=t.options.name||s,v=new _t(\"vue-component-\"+t.cid+(h?\"-\"+h:\"\"),e,void 0,void 0,void 0,n,{Ctor:t,propsData:l,listeners:p,tag:s,children:a},f);return v}}}function sn(t,e){var n={_isComponent:!0,_parentVnode:t,parent:e},r=t.data.inlineTemplate;return o(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns),new t.componentOptions.Ctor(n)}function cn(t){for(var e=t.hook||(t.hook={}),n=0;n<on.length;n++){var r=on[n],o=e[r],i=rn[r];o===i||o&&o._merged||(e[r]=o?un(i,o):i)}}function un(t,e){var n=function(n,r){t(n,r),e(n,r)};return n._merged=!0,n}function fn(t,e){var n=t.model&&t.model.prop||\"value\",r=t.model&&t.model.event||\"input\";(e.attrs||(e.attrs={}))[n]=e.model.value;var i=e.on||(e.on={}),a=i[r],s=e.model.callback;o(a)?(Array.isArray(a)?-1===a.indexOf(s):a!==s)&&(i[r]=[s].concat(a)):i[r]=s}var ln=1,pn=2;function dn(t,e,n,r,o,a){return(Array.isArray(n)||s(n))&&(o=r,r=n,n=void 0),i(a)&&(o=pn),hn(t,e,n,r,o)}function hn(t,e,n,r,i){if(o(n)&&o(n.__ob__))return wt();if(o(n)&&o(n.is)&&(e=n.is),!e)return wt();var a,s,c;(Array.isArray(r)&&\"function\"===typeof r[0]&&(n=n||{},n.scopedSlots={default:r[0]},r.length=0),i===pn?r=ke(r):i===ln&&(r=$e(r)),\"string\"===typeof e)?(s=t.$vnode&&t.$vnode.ns||B.getTagNamespace(e),a=B.isReservedTag(e)?new _t(B.parsePlatformTagName(e),n,r,void 0,void 0,t):n&&n.pre||!o(c=Jt(t.$options,\"components\",e))?new _t(e,n,r,void 0,void 0,t):an(c,n,t,r,e)):a=an(e,n,t,r);return Array.isArray(a)?a:o(a)?(o(s)&&vn(a,s),o(n)&&yn(n),a):wt()}function vn(t,e,n){if(t.ns=e,\"foreignObject\"===t.tag&&(e=void 0,n=!0),o(t.children))for(var a=0,s=t.children.length;a<s;a++){var c=t.children[a];o(c.tag)&&(r(c.ns)||i(n)&&\"svg\"!==c.tag)&&vn(c,e,n)}}function yn(t){c(t.style)&&me(t.style),c(t.class)&&me(t.class)}function mn(t){t._vnode=null,t._staticTrees=null;var e=t.$options,r=t.$vnode=e._parentVnode,o=r&&r.context;t.$slots=Re(e._renderChildren,o),t.$scopedSlots=n,t._c=function(e,n,r,o){return dn(t,e,n,r,o,!1)},t.$createElement=function(e,n,r,o){return dn(t,e,n,r,o,!0)};var i=r&&r.data;It(t,\"$attrs\",i&&i.attrs||n,null,!0),It(t,\"$listeners\",e._parentListeners||n,null,!0)}var gn,_n=null;function bn(t){Ye(t.prototype),t.prototype.$nextTick=function(t){return ve(t,this)},t.prototype._render=function(){var t,e=this,n=e.$options,r=n.render,o=n._parentVnode;o&&(e.$scopedSlots=Le(o.data.scopedSlots,e.$slots,e.$scopedSlots)),e.$vnode=o;try{_n=e,t=r.call(e._renderProxy,e.$createElement)}catch(Aa){ne(Aa,e,\"render\"),t=e._vnode}finally{_n=null}return Array.isArray(t)&&1===t.length&&(t=t[0]),t instanceof _t||(t=wt()),t.parent=o,t}}function wn(t,e){return(t.__esModule||pt&&\"Module\"===t[Symbol.toStringTag])&&(t=t.default),c(t)?e.extend(t):t}function Cn(t,e,n,r,o){var i=wt();return i.asyncFactory=t,i.asyncMeta={data:e,context:n,children:r,tag:o},i}function xn(t,e){if(i(t.error)&&o(t.errorComp))return t.errorComp;if(o(t.resolved))return t.resolved;var n=_n;if(n&&o(t.owners)&&-1===t.owners.indexOf(n)&&t.owners.push(n),i(t.loading)&&o(t.loadingComp))return t.loadingComp;if(n&&!o(t.owners)){var a=t.owners=[n],s=!0,u=null,f=null;n.$on(\"hook:destroyed\",(function(){return g(a,n)}));var l=function(t){for(var e=0,n=a.length;e<n;e++)a[e].$forceUpdate();t&&(a.length=0,null!==u&&(clearTimeout(u),u=null),null!==f&&(clearTimeout(f),f=null))},p=M((function(n){t.resolved=wn(n,e),s?a.length=0:l(!0)})),h=M((function(e){o(t.errorComp)&&(t.error=!0,l(!0))})),v=t(p,h);return c(v)&&(d(v)?r(t.resolved)&&v.then(p,h):d(v.component)&&(v.component.then(p,h),o(v.error)&&(t.errorComp=wn(v.error,e)),o(v.loading)&&(t.loadingComp=wn(v.loading,e),0===v.delay?t.loading=!0:u=setTimeout((function(){u=null,r(t.resolved)&&r(t.error)&&(t.loading=!0,l(!1))}),v.delay||200)),o(v.timeout)&&(f=setTimeout((function(){f=null,r(t.resolved)&&h(null)}),v.timeout)))),s=!1,t.loading?t.loadingComp:t.resolved}}function An(t){if(Array.isArray(t))for(var e=0;e<t.length;e++){var n=t[e];if(o(n)&&(o(n.componentOptions)||Ie(n)))return n}}function $n(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&En(t,e)}function kn(t,e){gn.$on(t,e)}function On(t,e){gn.$off(t,e)}function Sn(t,e){var n=gn;return function r(){var o=e.apply(null,arguments);null!==o&&n.$off(t,r)}}function En(t,e,n){gn=t,we(e,n||{},kn,On,Sn,t),gn=void 0}function Tn(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(Array.isArray(t))for(var o=0,i=t.length;o<i;o++)r.$on(t[o],n);else(r._events[t]||(r._events[t]=[])).push(n),e.test(t)&&(r._hasHookEvent=!0);return r},t.prototype.$once=function(t,e){var n=this;function r(){n.$off(t,r),e.apply(n,arguments)}return r.fn=e,n.$on(t,r),n},t.prototype.$off=function(t,e){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(Array.isArray(t)){for(var r=0,o=t.length;r<o;r++)n.$off(t[r],e);return n}var i,a=n._events[t];if(!a)return n;if(!e)return n._events[t]=null,n;var s=a.length;while(s--)if(i=a[s],i===e||i.fn===e){a.splice(s,1);break}return n},t.prototype.$emit=function(t){var e=this,n=e._events[t];if(n){n=n.length>1?T(n):n;for(var r=T(arguments,1),o='event handler for \"'+t+'\"',i=0,a=n.length;i<a;i++)re(n[i],e,r,e,o)}return e}}var jn=null;function Rn(t){var e=jn;return jn=t,function(){jn=e}}function Pn(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){while(n.$options.abstract&&n.$parent)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}function In(t){t.prototype._update=function(t,e){var n=this,r=n.$el,o=n._vnode,i=Rn(n);n._vnode=t,n.$el=o?n.__patch__(o,t):n.__patch__(n.$el,t,e,!1),i(),r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},t.prototype.$forceUpdate=function(){var t=this;t._watcher&&t._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){Un(t,\"beforeDestroy\"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||g(e.$children,t),t._watcher&&t._watcher.teardown();var n=t._watchers.length;while(n--)t._watchers[n].teardown();t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),Un(t,\"destroyed\"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}function Ln(t,e,n){var r;return t.$el=e,t.$options.render||(t.$options.render=wt),Un(t,\"beforeMount\"),r=function(){t._update(t._render(),n)},new rr(t,r,P,{before:function(){t._isMounted&&!t._isDestroyed&&Un(t,\"beforeUpdate\")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,Un(t,\"mounted\")),t}function Nn(t,e,r,o,i){var a=o.data.scopedSlots,s=t.$scopedSlots,c=!!(a&&!a.$stable||s!==n&&!s.$stable||a&&t.$scopedSlots.$key!==a.$key||!a&&t.$scopedSlots.$key),u=!!(i||t.$options._renderChildren||c);if(t.$options._parentVnode=o,t.$vnode=o,t._vnode&&(t._vnode.parent=o),t.$options._renderChildren=i,t.$attrs=o.data.attrs||n,t.$listeners=r||n,e&&t.$options.props){Et(!1);for(var f=t._props,l=t.$options._propKeys||[],p=0;p<l.length;p++){var d=l[p],h=t.$options.props;f[d]=Gt(d,h,e,t)}Et(!0),t.$options.propsData=e}r=r||n;var v=t.$options._parentListeners;t.$options._parentListeners=r,En(t,r,v),u&&(t.$slots=Re(i,o.context),t.$forceUpdate())}function Dn(t){while(t&&(t=t.$parent))if(t._inactive)return!0;return!1}function Mn(t,e){if(e){if(t._directInactive=!1,Dn(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var n=0;n<t.$children.length;n++)Mn(t.$children[n]);Un(t,\"activated\")}}function Fn(t,e){if((!e||(t._directInactive=!0,!Dn(t)))&&!t._inactive){t._inactive=!0;for(var n=0;n<t.$children.length;n++)Fn(t.$children[n]);Un(t,\"deactivated\")}}function Un(t,e){mt();var n=t.$options[e],r=e+\" hook\";if(n)for(var o=0,i=n.length;o<i;o++)re(n[o],t,null,t,r);t._hasHookEvent&&t.$emit(\"hook:\"+e),gt()}var Vn=[],Bn=[],Hn={},qn=!1,zn=!1,Wn=0;function Kn(){Wn=Vn.length=Bn.length=0,Hn={},qn=zn=!1}var Xn=0,Jn=Date.now;if(G&&!tt){var Gn=window.performance;Gn&&\"function\"===typeof Gn.now&&Jn()>document.createEvent(\"Event\").timeStamp&&(Jn=function(){return Gn.now()})}function Qn(){var t,e;for(Xn=Jn(),zn=!0,Vn.sort((function(t,e){return t.id-e.id})),Wn=0;Wn<Vn.length;Wn++)t=Vn[Wn],t.before&&t.before(),e=t.id,Hn[e]=null,t.run();var n=Bn.slice(),r=Vn.slice();Kn(),tr(n),Yn(r),ut&&B.devtools&&ut.emit(\"flush\")}function Yn(t){var e=t.length;while(e--){var n=t[e],r=n.vm;r._watcher===n&&r._isMounted&&!r._isDestroyed&&Un(r,\"updated\")}}function Zn(t){t._inactive=!1,Bn.push(t)}function tr(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,Mn(t[e],!0)}function er(t){var e=t.id;if(null==Hn[e]){if(Hn[e]=!0,zn){var n=Vn.length-1;while(n>Wn&&Vn[n].id>t.id)n--;Vn.splice(n+1,0,t)}else Vn.push(t);qn||(qn=!0,ve(Qn))}}var nr=0,rr=function(t,e,n,r,o){this.vm=t,o&&(t._watcher=this),t._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++nr,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new lt,this.newDepIds=new lt,this.expression=\"\",\"function\"===typeof e?this.getter=e:(this.getter=K(e),this.getter||(this.getter=P)),this.value=this.lazy?void 0:this.get()};rr.prototype.get=function(){var t;mt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(Aa){if(!this.user)throw Aa;ne(Aa,e,'getter for watcher \"'+this.expression+'\"')}finally{this.deep&&me(t),gt(),this.cleanupDeps()}return t},rr.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},rr.prototype.cleanupDeps=function(){var t=this.deps.length;while(t--){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},rr.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():er(this)},rr.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||c(t)||this.deep){var e=this.value;if(this.value=t,this.user){var n='callback for watcher \"'+this.expression+'\"';re(this.cb,this.vm,[t,e],this.vm,n)}else this.cb.call(this.vm,t,e)}}},rr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},rr.prototype.depend=function(){var t=this.deps.length;while(t--)this.deps[t].depend()},rr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);var t=this.deps.length;while(t--)this.deps[t].removeSub(this);this.active=!1}};var or={enumerable:!0,configurable:!0,get:P,set:P};function ir(t,e,n){or.get=function(){return this[e][n]},or.set=function(t){this[e][n]=t},Object.defineProperty(t,n,or)}function ar(t){t._watchers=[];var e=t.$options;e.props&&sr(t,e.props),e.methods&&vr(t,e.methods),e.data?cr(t):Pt(t._data={},!0),e.computed&&lr(t,e.computed),e.watch&&e.watch!==it&&yr(t,e.watch)}function sr(t,e){var n=t.$options.propsData||{},r=t._props={},o=t.$options._propKeys=[],i=!t.$parent;i||Et(!1);var a=function(i){o.push(i);var a=Gt(i,e,n,t);It(r,i,a),i in t||ir(t,\"_props\",i)};for(var s in e)a(s);Et(!0)}function cr(t){var e=t.$options.data;e=t._data=\"function\"===typeof e?ur(e,t):e||{},f(e)||(e={});var n=Object.keys(e),r=t.$options.props,o=(t.$options.methods,n.length);while(o--){var i=n[o];0,r&&b(r,i)||q(i)||ir(t,\"_data\",i)}Pt(e,!0)}function ur(t,e){mt();try{return t.call(e,e)}catch(Aa){return ne(Aa,e,\"data()\"),{}}finally{gt()}}var fr={lazy:!0};function lr(t,e){var n=t._computedWatchers=Object.create(null),r=ct();for(var o in e){var i=e[o],a=\"function\"===typeof i?i:i.get;0,r||(n[o]=new rr(t,a||P,P,fr)),o in t||pr(t,o,i)}}function pr(t,e,n){var r=!ct();\"function\"===typeof n?(or.get=r?dr(e):hr(n),or.set=P):(or.get=n.get?r&&!1!==n.cache?dr(e):hr(n.get):P,or.set=n.set||P),Object.defineProperty(t,e,or)}function dr(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),vt.target&&e.depend(),e.value}}function hr(t){return function(){return t.call(this,this)}}function vr(t,e){t.$options.props;for(var n in e)t[n]=\"function\"!==typeof e[n]?P:E(e[n],t)}function yr(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var o=0;o<r.length;o++)mr(t,n,r[o]);else mr(t,n,r)}}function mr(t,e,n,r){return f(n)&&(r=n,n=n.handler),\"string\"===typeof n&&(n=t[n]),t.$watch(e,n,r)}function gr(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,\"$data\",e),Object.defineProperty(t.prototype,\"$props\",n),t.prototype.$set=Lt,t.prototype.$delete=Nt,t.prototype.$watch=function(t,e,n){var r=this;if(f(e))return mr(r,t,e,n);n=n||{},n.user=!0;var o=new rr(r,t,e,n);if(n.immediate){var i='callback for immediate watcher \"'+o.expression+'\"';mt(),re(e,r,[o.value],r,i),gt()}return function(){o.teardown()}}}var _r=0;function br(t){t.prototype._init=function(t){var e=this;e._uid=_r++,e._isVue=!0,t&&t._isComponent?wr(e,t):e.$options=Xt(Cr(e.constructor),t||{},e),e._renderProxy=e,e._self=e,Pn(e),$n(e),mn(e),Un(e,\"beforeCreate\"),Te(e),ar(e),Ee(e),Un(e,\"created\"),e.$options.el&&e.$mount(e.$options.el)}}function wr(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var o=r.componentOptions;n.propsData=o.propsData,n._parentListeners=o.listeners,n._renderChildren=o.children,n._componentTag=o.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}function Cr(t){var e=t.options;if(t.super){var n=Cr(t.super),r=t.superOptions;if(n!==r){t.superOptions=n;var o=xr(t);o&&j(t.extendOptions,o),e=t.options=Xt(n,t.extendOptions),e.name&&(e.components[e.name]=t)}}return e}function xr(t){var e,n=t.options,r=t.sealedOptions;for(var o in n)n[o]!==r[o]&&(e||(e={}),e[o]=n[o]);return e}function Ar(t){this._init(t)}function $r(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=T(arguments,1);return n.unshift(this),\"function\"===typeof t.install?t.install.apply(t,n):\"function\"===typeof t&&t.apply(null,n),e.push(t),this}}function kr(t){t.mixin=function(t){return this.options=Xt(this.options,t),this}}function Or(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,o=t._Ctor||(t._Ctor={});if(o[r])return o[r];var i=t.name||n.options.name;var a=function(t){this._init(t)};return a.prototype=Object.create(n.prototype),a.prototype.constructor=a,a.cid=e++,a.options=Xt(n.options,t),a[\"super\"]=n,a.options.props&&Sr(a),a.options.computed&&Er(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,U.forEach((function(t){a[t]=n[t]})),i&&(a.options.components[i]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=j({},a.options),o[r]=a,a}}function Sr(t){var e=t.options.props;for(var n in e)ir(t.prototype,\"_props\",n)}function Er(t){var e=t.options.computed;for(var n in e)pr(t.prototype,n,e[n])}function Tr(t){U.forEach((function(e){t[e]=function(t,n){return n?(\"component\"===e&&f(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),\"directive\"===e&&\"function\"===typeof n&&(n={bind:n,update:n}),this.options[e+\"s\"][t]=n,n):this.options[e+\"s\"][t]}}))}function jr(t){return t&&(t.Ctor.options.name||t.tag)}function Rr(t,e){return Array.isArray(t)?t.indexOf(e)>-1:\"string\"===typeof t?t.split(\",\").indexOf(e)>-1:!!l(t)&&t.test(e)}function Pr(t,e){var n=t.cache,r=t.keys,o=t._vnode;for(var i in n){var a=n[i];if(a){var s=a.name;s&&!e(s)&&Ir(n,i,r,o)}}}function Ir(t,e,n,r){var o=t[e];!o||r&&o.tag===r.tag||o.componentInstance.$destroy(),t[e]=null,g(n,e)}br(Ar),gr(Ar),Tn(Ar),In(Ar),bn(Ar);var Lr=[String,RegExp,Array],Nr={name:\"keep-alive\",abstract:!0,props:{include:Lr,exclude:Lr,max:[String,Number]},methods:{cacheVNode:function(){var t=this,e=t.cache,n=t.keys,r=t.vnodeToCache,o=t.keyToCache;if(r){var i=r.tag,a=r.componentInstance,s=r.componentOptions;e[o]={name:jr(s),tag:i,componentInstance:a},n.push(o),this.max&&n.length>parseInt(this.max)&&Ir(e,n[0],n,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Ir(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch(\"include\",(function(e){Pr(t,(function(t){return Rr(e,t)}))})),this.$watch(\"exclude\",(function(e){Pr(t,(function(t){return!Rr(e,t)}))}))},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=An(t),n=e&&e.componentOptions;if(n){var r=jr(n),o=this,i=o.include,a=o.exclude;if(i&&(!r||!Rr(i,r))||a&&r&&Rr(a,r))return e;var s=this,c=s.cache,u=s.keys,f=null==e.key?n.Ctor.cid+(n.tag?\"::\"+n.tag:\"\"):e.key;c[f]?(e.componentInstance=c[f].componentInstance,g(u,f),u.push(f)):(this.vnodeToCache=e,this.keyToCache=f),e.data.keepAlive=!0}return e||t&&t[0]}},Dr={KeepAlive:Nr};function Mr(t){var e={get:function(){return B}};Object.defineProperty(t,\"config\",e),t.util={warn:dt,extend:j,mergeOptions:Xt,defineReactive:It},t.set=Lt,t.delete=Nt,t.nextTick=ve,t.observable=function(t){return Pt(t),t},t.options=Object.create(null),U.forEach((function(e){t.options[e+\"s\"]=Object.create(null)})),t.options._base=t,j(t.options.components,Dr),$r(t),kr(t),Or(t),Tr(t)}Mr(Ar),Object.defineProperty(Ar.prototype,\"$isServer\",{get:ct}),Object.defineProperty(Ar.prototype,\"$ssrContext\",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(Ar,\"FunctionalRenderContext\",{value:Ze}),Ar.version=\"2.6.14\";var Fr=y(\"style,class\"),Ur=y(\"input,textarea,option,select,progress\"),Vr=function(t,e,n){return\"value\"===n&&Ur(t)&&\"button\"!==e||\"selected\"===n&&\"option\"===t||\"checked\"===n&&\"input\"===t||\"muted\"===n&&\"video\"===t},Br=y(\"contenteditable,draggable,spellcheck\"),Hr=y(\"events,caret,typing,plaintext-only\"),qr=function(t,e){return Jr(e)||\"false\"===e?\"false\":\"contenteditable\"===t&&Hr(e)?e:\"true\"},zr=y(\"allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible\"),Wr=\"http://www.w3.org/1999/xlink\",Kr=function(t){return\":\"===t.charAt(5)&&\"xlink\"===t.slice(0,5)},Xr=function(t){return Kr(t)?t.slice(6,t.length):\"\"},Jr=function(t){return null==t||!1===t};function Gr(t){var e=t.data,n=t,r=t;while(o(r.componentInstance))r=r.componentInstance._vnode,r&&r.data&&(e=Qr(r.data,e));while(o(n=n.parent))n&&n.data&&(e=Qr(e,n.data));return Yr(e.staticClass,e.class)}function Qr(t,e){return{staticClass:Zr(t.staticClass,e.staticClass),class:o(t.class)?[t.class,e.class]:e.class}}function Yr(t,e){return o(t)||o(e)?Zr(t,to(e)):\"\"}function Zr(t,e){return t?e?t+\" \"+e:t:e||\"\"}function to(t){return Array.isArray(t)?eo(t):c(t)?no(t):\"string\"===typeof t?t:\"\"}function eo(t){for(var e,n=\"\",r=0,i=t.length;r<i;r++)o(e=to(t[r]))&&\"\"!==e&&(n&&(n+=\" \"),n+=e);return n}function no(t){var e=\"\";for(var n in t)t[n]&&(e&&(e+=\" \"),e+=n);return e}var ro={svg:\"http://www.w3.org/2000/svg\",math:\"http://www.w3.org/1998/Math/MathML\"},oo=y(\"html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot\"),io=y(\"svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignobject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view\",!0),ao=function(t){return oo(t)||io(t)};function so(t){return io(t)?\"svg\":\"math\"===t?\"math\":void 0}var co=Object.create(null);function uo(t){if(!G)return!0;if(ao(t))return!1;if(t=t.toLowerCase(),null!=co[t])return co[t];var e=document.createElement(t);return t.indexOf(\"-\")>-1?co[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:co[t]=/HTMLUnknownElement/.test(e.toString())}var fo=y(\"text,number,password,search,email,tel,url\");function lo(t){if(\"string\"===typeof t){var e=document.querySelector(t);return e||document.createElement(\"div\")}return t}function po(t,e){var n=document.createElement(t);return\"select\"!==t||e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute(\"multiple\",\"multiple\"),n}function ho(t,e){return document.createElementNS(ro[t],e)}function vo(t){return document.createTextNode(t)}function yo(t){return document.createComment(t)}function mo(t,e,n){t.insertBefore(e,n)}function go(t,e){t.removeChild(e)}function _o(t,e){t.appendChild(e)}function bo(t){return t.parentNode}function wo(t){return t.nextSibling}function Co(t){return t.tagName}function xo(t,e){t.textContent=e}function Ao(t,e){t.setAttribute(e,\"\")}var $o=Object.freeze({createElement:po,createElementNS:ho,createTextNode:vo,createComment:yo,insertBefore:mo,removeChild:go,appendChild:_o,parentNode:bo,nextSibling:wo,tagName:Co,setTextContent:xo,setStyleScope:Ao}),ko={create:function(t,e){Oo(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Oo(t,!0),Oo(e))},destroy:function(t){Oo(t,!0)}};function Oo(t,e){var n=t.data.ref;if(o(n)){var r=t.context,i=t.componentInstance||t.elm,a=r.$refs;e?Array.isArray(a[n])?g(a[n],i):a[n]===i&&(a[n]=void 0):t.data.refInFor?Array.isArray(a[n])?a[n].indexOf(i)<0&&a[n].push(i):a[n]=[i]:a[n]=i}}var So=new _t(\"\",{},[]),Eo=[\"create\",\"activate\",\"update\",\"remove\",\"destroy\"];function To(t,e){return t.key===e.key&&t.asyncFactory===e.asyncFactory&&(t.tag===e.tag&&t.isComment===e.isComment&&o(t.data)===o(e.data)&&jo(t,e)||i(t.isAsyncPlaceholder)&&r(e.asyncFactory.error))}function jo(t,e){if(\"input\"!==t.tag)return!0;var n,r=o(n=t.data)&&o(n=n.attrs)&&n.type,i=o(n=e.data)&&o(n=n.attrs)&&n.type;return r===i||fo(r)&&fo(i)}function Ro(t,e,n){var r,i,a={};for(r=e;r<=n;++r)i=t[r].key,o(i)&&(a[i]=r);return a}function Po(t){var e,n,a={},c=t.modules,u=t.nodeOps;for(e=0;e<Eo.length;++e)for(a[Eo[e]]=[],n=0;n<c.length;++n)o(c[n][Eo[e]])&&a[Eo[e]].push(c[n][Eo[e]]);function f(t){return new _t(u.tagName(t).toLowerCase(),{},[],void 0,t)}function l(t,e){function n(){0===--n.listeners&&p(t)}return n.listeners=e,n}function p(t){var e=u.parentNode(t);o(e)&&u.removeChild(e,t)}function d(t,e,n,r,a,s,c){if(o(t.elm)&&o(s)&&(t=s[c]=xt(t)),t.isRootInsert=!a,!h(t,e,n,r)){var f=t.data,l=t.children,p=t.tag;o(p)?(t.elm=t.ns?u.createElementNS(t.ns,p):u.createElement(p,t),C(t),_(t,l,e),o(f)&&w(t,e),g(n,t.elm,r)):i(t.isComment)?(t.elm=u.createComment(t.text),g(n,t.elm,r)):(t.elm=u.createTextNode(t.text),g(n,t.elm,r))}}function h(t,e,n,r){var a=t.data;if(o(a)){var s=o(t.componentInstance)&&a.keepAlive;if(o(a=a.hook)&&o(a=a.init)&&a(t,!1),o(t.componentInstance))return v(t,e),g(n,t.elm,r),i(s)&&m(t,e,n,r),!0}}function v(t,e){o(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,b(t)?(w(t,e),C(t)):(Oo(t),e.push(t))}function m(t,e,n,r){var i,s=t;while(s.componentInstance)if(s=s.componentInstance._vnode,o(i=s.data)&&o(i=i.transition)){for(i=0;i<a.activate.length;++i)a.activate[i](So,s);e.push(s);break}g(n,t.elm,r)}function g(t,e,n){o(t)&&(o(n)?u.parentNode(n)===t&&u.insertBefore(t,e,n):u.appendChild(t,e))}function _(t,e,n){if(Array.isArray(e)){0;for(var r=0;r<e.length;++r)d(e[r],n,t.elm,null,!0,e,r)}else s(t.text)&&u.appendChild(t.elm,u.createTextNode(String(t.text)))}function b(t){while(t.componentInstance)t=t.componentInstance._vnode;return o(t.tag)}function w(t,n){for(var r=0;r<a.create.length;++r)a.create[r](So,t);e=t.data.hook,o(e)&&(o(e.create)&&e.create(So,t),o(e.insert)&&n.push(t))}function C(t){var e;if(o(e=t.fnScopeId))u.setStyleScope(t.elm,e);else{var n=t;while(n)o(e=n.context)&&o(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e),n=n.parent}o(e=jn)&&e!==t.context&&e!==t.fnContext&&o(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e)}function x(t,e,n,r,o,i){for(;r<=o;++r)d(n[r],i,t,e,!1,n,r)}function A(t){var e,n,r=t.data;if(o(r))for(o(e=r.hook)&&o(e=e.destroy)&&e(t),e=0;e<a.destroy.length;++e)a.destroy[e](t);if(o(e=t.children))for(n=0;n<t.children.length;++n)A(t.children[n])}function $(t,e,n){for(;e<=n;++e){var r=t[e];o(r)&&(o(r.tag)?(k(r),A(r)):p(r.elm))}}function k(t,e){if(o(e)||o(t.data)){var n,r=a.remove.length+1;for(o(e)?e.listeners+=r:e=l(t.elm,r),o(n=t.componentInstance)&&o(n=n._vnode)&&o(n.data)&&k(n,e),n=0;n<a.remove.length;++n)a.remove[n](t,e);o(n=t.data.hook)&&o(n=n.remove)?n(t,e):e()}else p(t.elm)}function O(t,e,n,i,a){var s,c,f,l,p=0,h=0,v=e.length-1,y=e[0],m=e[v],g=n.length-1,_=n[0],b=n[g],w=!a;while(p<=v&&h<=g)r(y)?y=e[++p]:r(m)?m=e[--v]:To(y,_)?(E(y,_,i,n,h),y=e[++p],_=n[++h]):To(m,b)?(E(m,b,i,n,g),m=e[--v],b=n[--g]):To(y,b)?(E(y,b,i,n,g),w&&u.insertBefore(t,y.elm,u.nextSibling(m.elm)),y=e[++p],b=n[--g]):To(m,_)?(E(m,_,i,n,h),w&&u.insertBefore(t,m.elm,y.elm),m=e[--v],_=n[++h]):(r(s)&&(s=Ro(e,p,v)),c=o(_.key)?s[_.key]:S(_,e,p,v),r(c)?d(_,i,t,y.elm,!1,n,h):(f=e[c],To(f,_)?(E(f,_,i,n,h),e[c]=void 0,w&&u.insertBefore(t,f.elm,y.elm)):d(_,i,t,y.elm,!1,n,h)),_=n[++h]);p>v?(l=r(n[g+1])?null:n[g+1].elm,x(t,l,n,h,g,i)):h>g&&$(e,p,v)}function S(t,e,n,r){for(var i=n;i<r;i++){var a=e[i];if(o(a)&&To(t,a))return i}}function E(t,e,n,s,c,f){if(t!==e){o(e.elm)&&o(s)&&(e=s[c]=xt(e));var l=e.elm=t.elm;if(i(t.isAsyncPlaceholder))o(e.asyncFactory.resolved)?R(t.elm,e,n):e.isAsyncPlaceholder=!0;else if(i(e.isStatic)&&i(t.isStatic)&&e.key===t.key&&(i(e.isCloned)||i(e.isOnce)))e.componentInstance=t.componentInstance;else{var p,d=e.data;o(d)&&o(p=d.hook)&&o(p=p.prepatch)&&p(t,e);var h=t.children,v=e.children;if(o(d)&&b(e)){for(p=0;p<a.update.length;++p)a.update[p](t,e);o(p=d.hook)&&o(p=p.update)&&p(t,e)}r(e.text)?o(h)&&o(v)?h!==v&&O(l,h,v,n,f):o(v)?(o(t.text)&&u.setTextContent(l,\"\"),x(l,null,v,0,v.length-1,n)):o(h)?$(h,0,h.length-1):o(t.text)&&u.setTextContent(l,\"\"):t.text!==e.text&&u.setTextContent(l,e.text),o(d)&&o(p=d.hook)&&o(p=p.postpatch)&&p(t,e)}}}function T(t,e,n){if(i(n)&&o(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r<e.length;++r)e[r].data.hook.insert(e[r])}var j=y(\"attrs,class,staticClass,staticStyle,key\");function R(t,e,n,r){var a,s=e.tag,c=e.data,u=e.children;if(r=r||c&&c.pre,e.elm=t,i(e.isComment)&&o(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(o(c)&&(o(a=c.hook)&&o(a=a.init)&&a(e,!0),o(a=e.componentInstance)))return v(e,n),!0;if(o(s)){if(o(u))if(t.hasChildNodes())if(o(a=c)&&o(a=a.domProps)&&o(a=a.innerHTML)){if(a!==t.innerHTML)return!1}else{for(var f=!0,l=t.firstChild,p=0;p<u.length;p++){if(!l||!R(l,u[p],n,r)){f=!1;break}l=l.nextSibling}if(!f||l)return!1}else _(e,u,n);if(o(c)){var d=!1;for(var h in c)if(!j(h)){d=!0,w(e,n);break}!d&&c[\"class\"]&&me(c[\"class\"])}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,n,s){if(!r(e)){var c=!1,l=[];if(r(t))c=!0,d(e,l);else{var p=o(t.nodeType);if(!p&&To(t,e))E(t,e,l,null,null,s);else{if(p){if(1===t.nodeType&&t.hasAttribute(F)&&(t.removeAttribute(F),n=!0),i(n)&&R(t,e,l))return T(e,l,!0),t;t=f(t)}var h=t.elm,v=u.parentNode(h);if(d(e,l,h._leaveCb?null:v,u.nextSibling(h)),o(e.parent)){var y=e.parent,m=b(e);while(y){for(var g=0;g<a.destroy.length;++g)a.destroy[g](y);if(y.elm=e.elm,m){for(var _=0;_<a.create.length;++_)a.create[_](So,y);var w=y.data.hook.insert;if(w.merged)for(var C=1;C<w.fns.length;C++)w.fns[C]()}else Oo(y);y=y.parent}}o(v)?$([t],0,0):o(t.tag)&&A(t)}}return T(e,l,c),e.elm}o(t)&&A(t)}}var Io={create:Lo,update:Lo,destroy:function(t){Lo(t,So)}};function Lo(t,e){(t.data.directives||e.data.directives)&&No(t,e)}function No(t,e){var n,r,o,i=t===So,a=e===So,s=Mo(t.data.directives,t.context),c=Mo(e.data.directives,e.context),u=[],f=[];for(n in c)r=s[n],o=c[n],r?(o.oldValue=r.value,o.oldArg=r.arg,Uo(o,\"update\",e,t),o.def&&o.def.componentUpdated&&f.push(o)):(Uo(o,\"bind\",e,t),o.def&&o.def.inserted&&u.push(o));if(u.length){var l=function(){for(var n=0;n<u.length;n++)Uo(u[n],\"inserted\",e,t)};i?Ce(e,\"insert\",l):l()}if(f.length&&Ce(e,\"postpatch\",(function(){for(var n=0;n<f.length;n++)Uo(f[n],\"componentUpdated\",e,t)})),!i)for(n in s)c[n]||Uo(s[n],\"unbind\",t,t,a)}var Do=Object.create(null);function Mo(t,e){var n,r,o=Object.create(null);if(!t)return o;for(n=0;n<t.length;n++)r=t[n],r.modifiers||(r.modifiers=Do),o[Fo(r)]=r,r.def=Jt(e.$options,\"directives\",r.name,!0);return o}function Fo(t){return t.rawName||t.name+\".\"+Object.keys(t.modifiers||{}).join(\".\")}function Uo(t,e,n,r,o){var i=t.def&&t.def[e];if(i)try{i(n.elm,t,n,r,o)}catch(Aa){ne(Aa,n.context,\"directive \"+t.name+\" \"+e+\" hook\")}}var Vo=[ko,Io];function Bo(t,e){var n=e.componentOptions;if((!o(n)||!1!==n.Ctor.options.inheritAttrs)&&(!r(t.data.attrs)||!r(e.data.attrs))){var i,a,s,c=e.elm,u=t.data.attrs||{},f=e.data.attrs||{};for(i in o(f.__ob__)&&(f=e.data.attrs=j({},f)),f)a=f[i],s=u[i],s!==a&&Ho(c,i,a,e.data.pre);for(i in(tt||nt)&&f.value!==u.value&&Ho(c,\"value\",f.value),u)r(f[i])&&(Kr(i)?c.removeAttributeNS(Wr,Xr(i)):Br(i)||c.removeAttribute(i))}}function Ho(t,e,n,r){r||t.tagName.indexOf(\"-\")>-1?qo(t,e,n):zr(e)?Jr(n)?t.removeAttribute(e):(n=\"allowfullscreen\"===e&&\"EMBED\"===t.tagName?\"true\":e,t.setAttribute(e,n)):Br(e)?t.setAttribute(e,qr(e,n)):Kr(e)?Jr(n)?t.removeAttributeNS(Wr,Xr(e)):t.setAttributeNS(Wr,e,n):qo(t,e,n)}function qo(t,e,n){if(Jr(n))t.removeAttribute(e);else{if(tt&&!et&&\"TEXTAREA\"===t.tagName&&\"placeholder\"===e&&\"\"!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener(\"input\",r)};t.addEventListener(\"input\",r),t.__ieph=!0}t.setAttribute(e,n)}}var zo={create:Bo,update:Bo};function Wo(t,e){var n=e.elm,i=e.data,a=t.data;if(!(r(i.staticClass)&&r(i.class)&&(r(a)||r(a.staticClass)&&r(a.class)))){var s=Gr(e),c=n._transitionClasses;o(c)&&(s=Zr(s,to(c))),s!==n._prevClass&&(n.setAttribute(\"class\",s),n._prevClass=s)}}var Ko,Xo={create:Wo,update:Wo},Jo=\"__r\",Go=\"__c\";function Qo(t){if(o(t[Jo])){var e=tt?\"change\":\"input\";t[e]=[].concat(t[Jo],t[e]||[]),delete t[Jo]}o(t[Go])&&(t.change=[].concat(t[Go],t.change||[]),delete t[Go])}function Yo(t,e,n){var r=Ko;return function o(){var i=e.apply(null,arguments);null!==i&&ei(t,o,n,r)}}var Zo=se&&!(ot&&Number(ot[1])<=53);function ti(t,e,n,r){if(Zo){var o=Xn,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=o||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}Ko.addEventListener(t,e,at?{capture:n,passive:r}:n)}function ei(t,e,n,r){(r||Ko).removeEventListener(t,e._wrapper||e,n)}function ni(t,e){if(!r(t.data.on)||!r(e.data.on)){var n=e.data.on||{},o=t.data.on||{};Ko=e.elm,Qo(n),we(n,o,ti,ei,Yo,e.context),Ko=void 0}}var ri,oi={create:ni,update:ni};function ii(t,e){if(!r(t.data.domProps)||!r(e.data.domProps)){var n,i,a=e.elm,s=t.data.domProps||{},c=e.data.domProps||{};for(n in o(c.__ob__)&&(c=e.data.domProps=j({},c)),s)n in c||(a[n]=\"\");for(n in c){if(i=c[n],\"textContent\"===n||\"innerHTML\"===n){if(e.children&&(e.children.length=0),i===s[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if(\"value\"===n&&\"PROGRESS\"!==a.tagName){a._value=i;var u=r(i)?\"\":String(i);ai(a,u)&&(a.value=u)}else if(\"innerHTML\"===n&&io(a.tagName)&&r(a.innerHTML)){ri=ri||document.createElement(\"div\"),ri.innerHTML=\"<svg>\"+i+\"</svg>\";var f=ri.firstChild;while(a.firstChild)a.removeChild(a.firstChild);while(f.firstChild)a.appendChild(f.firstChild)}else if(i!==s[n])try{a[n]=i}catch(Aa){}}}}function ai(t,e){return!t.composing&&(\"OPTION\"===t.tagName||si(t,e)||ci(t,e))}function si(t,e){var n=!0;try{n=document.activeElement!==t}catch(Aa){}return n&&t.value!==e}function ci(t,e){var n=t.value,r=t._vModifiers;if(o(r)){if(r.number)return v(n)!==v(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}var ui={create:ii,update:ii},fi=w((function(t){var e={},n=/;(?![^(]*\\))/g,r=/:(.+)/;return t.split(n).forEach((function(t){if(t){var n=t.split(r);n.length>1&&(e[n[0].trim()]=n[1].trim())}})),e}));function li(t){var e=pi(t.style);return t.staticStyle?j(t.staticStyle,e):e}function pi(t){return Array.isArray(t)?R(t):\"string\"===typeof t?fi(t):t}function di(t,e){var n,r={};if(e){var o=t;while(o.componentInstance)o=o.componentInstance._vnode,o&&o.data&&(n=li(o.data))&&j(r,n)}(n=li(t.data))&&j(r,n);var i=t;while(i=i.parent)i.data&&(n=li(i.data))&&j(r,n);return r}var hi,vi=/^--/,yi=/\\s*!important$/,mi=function(t,e,n){if(vi.test(e))t.style.setProperty(e,n);else if(yi.test(n))t.style.setProperty(k(e),n.replace(yi,\"\"),\"important\");else{var r=_i(e);if(Array.isArray(n))for(var o=0,i=n.length;o<i;o++)t.style[r]=n[o];else t.style[r]=n}},gi=[\"Webkit\",\"Moz\",\"ms\"],_i=w((function(t){if(hi=hi||document.createElement(\"div\").style,t=x(t),\"filter\"!==t&&t in hi)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),n=0;n<gi.length;n++){var r=gi[n]+e;if(r in hi)return r}}));function bi(t,e){var n=e.data,i=t.data;if(!(r(n.staticStyle)&&r(n.style)&&r(i.staticStyle)&&r(i.style))){var a,s,c=e.elm,u=i.staticStyle,f=i.normalizedStyle||i.style||{},l=u||f,p=pi(e.data.style)||{};e.data.normalizedStyle=o(p.__ob__)?j({},p):p;var d=di(e,!0);for(s in l)r(d[s])&&mi(c,s,\"\");for(s in d)a=d[s],a!==l[s]&&mi(c,s,null==a?\"\":a)}}var wi={create:bi,update:bi},Ci=/\\s+/;function xi(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(\" \")>-1?e.split(Ci).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=\" \"+(t.getAttribute(\"class\")||\"\")+\" \";n.indexOf(\" \"+e+\" \")<0&&t.setAttribute(\"class\",(n+e).trim())}}function Ai(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(\" \")>-1?e.split(Ci).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute(\"class\");else{var n=\" \"+(t.getAttribute(\"class\")||\"\")+\" \",r=\" \"+e+\" \";while(n.indexOf(r)>=0)n=n.replace(r,\" \");n=n.trim(),n?t.setAttribute(\"class\",n):t.removeAttribute(\"class\")}}function $i(t){if(t){if(\"object\"===typeof t){var e={};return!1!==t.css&&j(e,ki(t.name||\"v\")),j(e,t),e}return\"string\"===typeof t?ki(t):void 0}}var ki=w((function(t){return{enterClass:t+\"-enter\",enterToClass:t+\"-enter-to\",enterActiveClass:t+\"-enter-active\",leaveClass:t+\"-leave\",leaveToClass:t+\"-leave-to\",leaveActiveClass:t+\"-leave-active\"}})),Oi=G&&!et,Si=\"transition\",Ei=\"animation\",Ti=\"transition\",ji=\"transitionend\",Ri=\"animation\",Pi=\"animationend\";Oi&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Ti=\"WebkitTransition\",ji=\"webkitTransitionEnd\"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Ri=\"WebkitAnimation\",Pi=\"webkitAnimationEnd\"));var Ii=G?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Li(t){Ii((function(){Ii(t)}))}function Ni(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),xi(t,e))}function Di(t,e){t._transitionClasses&&g(t._transitionClasses,e),Ai(t,e)}function Mi(t,e,n){var r=Ui(t,e),o=r.type,i=r.timeout,a=r.propCount;if(!o)return n();var s=o===Si?ji:Pi,c=0,u=function(){t.removeEventListener(s,f),n()},f=function(e){e.target===t&&++c>=a&&u()};setTimeout((function(){c<a&&u()}),i+1),t.addEventListener(s,f)}var Fi=/\\b(transform|all)(,|$)/;function Ui(t,e){var n,r=window.getComputedStyle(t),o=(r[Ti+\"Delay\"]||\"\").split(\", \"),i=(r[Ti+\"Duration\"]||\"\").split(\", \"),a=Vi(o,i),s=(r[Ri+\"Delay\"]||\"\").split(\", \"),c=(r[Ri+\"Duration\"]||\"\").split(\", \"),u=Vi(s,c),f=0,l=0;e===Si?a>0&&(n=Si,f=a,l=i.length):e===Ei?u>0&&(n=Ei,f=u,l=c.length):(f=Math.max(a,u),n=f>0?a>u?Si:Ei:null,l=n?n===Si?i.length:c.length:0);var p=n===Si&&Fi.test(r[Ti+\"Property\"]);return{type:n,timeout:f,propCount:l,hasTransform:p}}function Vi(t,e){while(t.length<e.length)t=t.concat(t);return Math.max.apply(null,e.map((function(e,n){return Bi(e)+Bi(t[n])})))}function Bi(t){return 1e3*Number(t.slice(0,-1).replace(\",\",\".\"))}function Hi(t,e){var n=t.elm;o(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var i=$i(t.data.transition);if(!r(i)&&!o(n._enterCb)&&1===n.nodeType){var a=i.css,s=i.type,u=i.enterClass,f=i.enterToClass,l=i.enterActiveClass,p=i.appearClass,d=i.appearToClass,h=i.appearActiveClass,y=i.beforeEnter,m=i.enter,g=i.afterEnter,_=i.enterCancelled,b=i.beforeAppear,w=i.appear,C=i.afterAppear,x=i.appearCancelled,A=i.duration,$=jn,k=jn.$vnode;while(k&&k.parent)$=k.context,k=k.parent;var O=!$._isMounted||!t.isRootInsert;if(!O||w||\"\"===w){var S=O&&p?p:u,E=O&&h?h:l,T=O&&d?d:f,j=O&&b||y,R=O&&\"function\"===typeof w?w:m,P=O&&C||g,I=O&&x||_,L=v(c(A)?A.enter:A);0;var N=!1!==a&&!et,D=Wi(R),F=n._enterCb=M((function(){N&&(Di(n,T),Di(n,E)),F.cancelled?(N&&Di(n,S),I&&I(n)):P&&P(n),n._enterCb=null}));t.data.show||Ce(t,\"insert\",(function(){var e=n.parentNode,r=e&&e._pending&&e._pending[t.key];r&&r.tag===t.tag&&r.elm._leaveCb&&r.elm._leaveCb(),R&&R(n,F)})),j&&j(n),N&&(Ni(n,S),Ni(n,E),Li((function(){Di(n,S),F.cancelled||(Ni(n,T),D||(zi(L)?setTimeout(F,L):Mi(n,s,F)))}))),t.data.show&&(e&&e(),R&&R(n,F)),N||D||F()}}}function qi(t,e){var n=t.elm;o(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var i=$i(t.data.transition);if(r(i)||1!==n.nodeType)return e();if(!o(n._leaveCb)){var a=i.css,s=i.type,u=i.leaveClass,f=i.leaveToClass,l=i.leaveActiveClass,p=i.beforeLeave,d=i.leave,h=i.afterLeave,y=i.leaveCancelled,m=i.delayLeave,g=i.duration,_=!1!==a&&!et,b=Wi(d),w=v(c(g)?g.leave:g);0;var C=n._leaveCb=M((function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[t.key]=null),_&&(Di(n,f),Di(n,l)),C.cancelled?(_&&Di(n,u),y&&y(n)):(e(),h&&h(n)),n._leaveCb=null}));m?m(x):x()}function x(){C.cancelled||(!t.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[t.key]=t),p&&p(n),_&&(Ni(n,u),Ni(n,l),Li((function(){Di(n,u),C.cancelled||(Ni(n,f),b||(zi(w)?setTimeout(C,w):Mi(n,s,C)))}))),d&&d(n,C),_||b||C())}}function zi(t){return\"number\"===typeof t&&!isNaN(t)}function Wi(t){if(r(t))return!1;var e=t.fns;return o(e)?Wi(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function Ki(t,e){!0!==e.data.show&&Hi(e)}var Xi=G?{create:Ki,activate:Ki,remove:function(t,e){!0!==t.data.show?qi(t,e):e()}}:{},Ji=[zo,Xo,oi,ui,wi,Xi],Gi=Ji.concat(Vo),Qi=Po({nodeOps:$o,modules:Gi});et&&document.addEventListener(\"selectionchange\",(function(){var t=document.activeElement;t&&t.vmodel&&ia(t,\"input\")}));var Yi={inserted:function(t,e,n,r){\"select\"===n.tag?(r.elm&&!r.elm._vOptions?Ce(n,\"postpatch\",(function(){Yi.componentUpdated(t,e,n)})):Zi(t,e,n.context),t._vOptions=[].map.call(t.options,na)):(\"textarea\"===n.tag||fo(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener(\"compositionstart\",ra),t.addEventListener(\"compositionend\",oa),t.addEventListener(\"change\",oa),et&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if(\"select\"===n.tag){Zi(t,e,n.context);var r=t._vOptions,o=t._vOptions=[].map.call(t.options,na);if(o.some((function(t,e){return!N(t,r[e])}))){var i=t.multiple?e.value.some((function(t){return ea(t,o)})):e.value!==e.oldValue&&ea(e.value,o);i&&ia(t,\"change\")}}}};function Zi(t,e,n){ta(t,e,n),(tt||nt)&&setTimeout((function(){ta(t,e,n)}),0)}function ta(t,e,n){var r=e.value,o=t.multiple;if(!o||Array.isArray(r)){for(var i,a,s=0,c=t.options.length;s<c;s++)if(a=t.options[s],o)i=D(r,na(a))>-1,a.selected!==i&&(a.selected=i);else if(N(na(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));o||(t.selectedIndex=-1)}}function ea(t,e){return e.every((function(e){return!N(e,t)}))}function na(t){return\"_value\"in t?t._value:t.value}function ra(t){t.target.composing=!0}function oa(t){t.target.composing&&(t.target.composing=!1,ia(t.target,\"input\"))}function ia(t,e){var n=document.createEvent(\"HTMLEvents\");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function aa(t){return!t.componentInstance||t.data&&t.data.transition?t:aa(t.componentInstance._vnode)}var sa={bind:function(t,e,n){var r=e.value;n=aa(n);var o=n.data&&n.data.transition,i=t.__vOriginalDisplay=\"none\"===t.style.display?\"\":t.style.display;r&&o?(n.data.show=!0,Hi(n,(function(){t.style.display=i}))):t.style.display=r?i:\"none\"},update:function(t,e,n){var r=e.value,o=e.oldValue;if(!r!==!o){n=aa(n);var i=n.data&&n.data.transition;i?(n.data.show=!0,r?Hi(n,(function(){t.style.display=t.__vOriginalDisplay})):qi(n,(function(){t.style.display=\"none\"}))):t.style.display=r?t.__vOriginalDisplay:\"none\"}},unbind:function(t,e,n,r,o){o||(t.style.display=t.__vOriginalDisplay)}},ca={model:Yi,show:sa},ua={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function fa(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?fa(An(e.children)):t}function la(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var o=n._parentListeners;for(var i in o)e[x(i)]=o[i];return e}function pa(t,e){if(/\\d-keep-alive$/.test(e.tag))return t(\"keep-alive\",{props:e.componentOptions.propsData})}function da(t){while(t=t.parent)if(t.data.transition)return!0}function ha(t,e){return e.key===t.key&&e.tag===t.tag}var va=function(t){return t.tag||Ie(t)},ya=function(t){return\"show\"===t.name},ma={name:\"transition\",props:ua,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(va),n.length)){0;var r=this.mode;0;var o=n[0];if(da(this.$vnode))return o;var i=fa(o);if(!i)return o;if(this._leaving)return pa(t,o);var a=\"__transition-\"+this._uid+\"-\";i.key=null==i.key?i.isComment?a+\"comment\":a+i.tag:s(i.key)?0===String(i.key).indexOf(a)?i.key:a+i.key:i.key;var c=(i.data||(i.data={})).transition=la(this),u=this._vnode,f=fa(u);if(i.data.directives&&i.data.directives.some(ya)&&(i.data.show=!0),f&&f.data&&!ha(i,f)&&!Ie(f)&&(!f.componentInstance||!f.componentInstance._vnode.isComment)){var l=f.data.transition=j({},c);if(\"out-in\"===r)return this._leaving=!0,Ce(l,\"afterLeave\",(function(){e._leaving=!1,e.$forceUpdate()})),pa(t,o);if(\"in-out\"===r){if(Ie(i))return u;var p,d=function(){p()};Ce(c,\"afterEnter\",d),Ce(c,\"enterCancelled\",d),Ce(l,\"delayLeave\",(function(t){p=t}))}}return o}}},ga=j({tag:String,moveClass:String},ua);delete ga.mode;var _a={props:ga,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var o=Rn(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,o(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||\"span\",n=Object.create(null),r=this.prevChildren=this.children,o=this.$slots.default||[],i=this.children=[],a=la(this),s=0;s<o.length;s++){var c=o[s];if(c.tag)if(null!=c.key&&0!==String(c.key).indexOf(\"__vlist\"))i.push(c),n[c.key]=c,(c.data||(c.data={})).transition=a;else;}if(r){for(var u=[],f=[],l=0;l<r.length;l++){var p=r[l];p.data.transition=a,p.data.pos=p.elm.getBoundingClientRect(),n[p.key]?u.push(p):f.push(p)}this.kept=t(e,null,u),this.removed=f}return t(e,null,i)},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||\"v\")+\"-move\";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(ba),t.forEach(wa),t.forEach(Ca),this._reflow=document.body.offsetHeight,t.forEach((function(t){if(t.data.moved){var n=t.elm,r=n.style;Ni(n,e),r.transform=r.WebkitTransform=r.transitionDuration=\"\",n.addEventListener(ji,n._moveCb=function t(r){r&&r.target!==n||r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(ji,t),n._moveCb=null,Di(n,e))})}})))},methods:{hasMove:function(t,e){if(!Oi)return!1;if(this._hasMove)return this._hasMove;var n=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach((function(t){Ai(n,t)})),xi(n,e),n.style.display=\"none\",this.$el.appendChild(n);var r=Ui(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}};function ba(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function wa(t){t.data.newPos=t.elm.getBoundingClientRect()}function Ca(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,o=e.top-n.top;if(r||o){t.data.moved=!0;var i=t.elm.style;i.transform=i.WebkitTransform=\"translate(\"+r+\"px,\"+o+\"px)\",i.transitionDuration=\"0s\"}}var xa={Transition:ma,TransitionGroup:_a};Ar.config.mustUseProp=Vr,Ar.config.isReservedTag=ao,Ar.config.isReservedAttr=Fr,Ar.config.getTagNamespace=so,Ar.config.isUnknownElement=uo,j(Ar.options.directives,ca),j(Ar.options.components,xa),Ar.prototype.__patch__=G?Qi:P,Ar.prototype.$mount=function(t,e){return t=t&&G?lo(t):void 0,Ln(this,t,e)},G&&setTimeout((function(){B.devtools&&ut&&ut.emit(\"init\",Ar)}),0),e[\"default\"]=Ar}.call(this,n(\"c8ba\"))},\"8c4f\":function(t,e,n){\"use strict\";\n/*!\n  * vue-router v3.5.2\n  * (c) 2021 Evan You\n  * @license MIT\n  */function r(t,e){0}function o(t,e){for(var n in e)t[n]=e[n];return t}var i=/[!'()*]/g,a=function(t){return\"%\"+t.charCodeAt(0).toString(16)},s=/%2C/g,c=function(t){return encodeURIComponent(t).replace(i,a).replace(s,\",\")};function u(t){try{return decodeURIComponent(t)}catch(e){0}return t}function f(t,e,n){void 0===e&&(e={});var r,o=n||p;try{r=o(t||\"\")}catch(s){r={}}for(var i in e){var a=e[i];r[i]=Array.isArray(a)?a.map(l):l(a)}return r}var l=function(t){return null==t||\"object\"===typeof t?t:String(t)};function p(t){var e={};return t=t.trim().replace(/^(\\?|#|&)/,\"\"),t?(t.split(\"&\").forEach((function(t){var n=t.replace(/\\+/g,\" \").split(\"=\"),r=u(n.shift()),o=n.length>0?u(n.join(\"=\")):null;void 0===e[r]?e[r]=o:Array.isArray(e[r])?e[r].push(o):e[r]=[e[r],o]})),e):e}function d(t){var e=t?Object.keys(t).map((function(e){var n=t[e];if(void 0===n)return\"\";if(null===n)return c(e);if(Array.isArray(n)){var r=[];return n.forEach((function(t){void 0!==t&&(null===t?r.push(c(e)):r.push(c(e)+\"=\"+c(t)))})),r.join(\"&\")}return c(e)+\"=\"+c(n)})).filter((function(t){return t.length>0})).join(\"&\"):null;return e?\"?\"+e:\"\"}var h=/\\/?$/;function v(t,e,n,r){var o=r&&r.options.stringifyQuery,i=e.query||{};try{i=y(i)}catch(s){}var a={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||\"/\",hash:e.hash||\"\",query:i,params:e.params||{},fullPath:_(e,o),matched:t?g(t):[]};return n&&(a.redirectedFrom=_(n,o)),Object.freeze(a)}function y(t){if(Array.isArray(t))return t.map(y);if(t&&\"object\"===typeof t){var e={};for(var n in t)e[n]=y(t[n]);return e}return t}var m=v(null,{path:\"/\"});function g(t){var e=[];while(t)e.unshift(t),t=t.parent;return e}function _(t,e){var n=t.path,r=t.query;void 0===r&&(r={});var o=t.hash;void 0===o&&(o=\"\");var i=e||d;return(n||\"/\")+i(r)+o}function b(t,e,n){return e===m?t===e:!!e&&(t.path&&e.path?t.path.replace(h,\"\")===e.path.replace(h,\"\")&&(n||t.hash===e.hash&&w(t.query,e.query)):!(!t.name||!e.name)&&(t.name===e.name&&(n||t.hash===e.hash&&w(t.query,e.query)&&w(t.params,e.params))))}function w(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t).sort(),r=Object.keys(e).sort();return n.length===r.length&&n.every((function(n,o){var i=t[n],a=r[o];if(a!==n)return!1;var s=e[n];return null==i||null==s?i===s:\"object\"===typeof i&&\"object\"===typeof s?w(i,s):String(i)===String(s)}))}function C(t,e){return 0===t.path.replace(h,\"/\").indexOf(e.path.replace(h,\"/\"))&&(!e.hash||t.hash===e.hash)&&x(t.query,e.query)}function x(t,e){for(var n in e)if(!(n in t))return!1;return!0}function A(t){for(var e=0;e<t.matched.length;e++){var n=t.matched[e];for(var r in n.instances){var o=n.instances[r],i=n.enteredCbs[r];if(o&&i){delete n.enteredCbs[r];for(var a=0;a<i.length;a++)o._isBeingDestroyed||i[a](o)}}}}var $={name:\"RouterView\",functional:!0,props:{name:{type:String,default:\"default\"}},render:function(t,e){var n=e.props,r=e.children,i=e.parent,a=e.data;a.routerView=!0;var s=i.$createElement,c=n.name,u=i.$route,f=i._routerViewCache||(i._routerViewCache={}),l=0,p=!1;while(i&&i._routerRoot!==i){var d=i.$vnode?i.$vnode.data:{};d.routerView&&l++,d.keepAlive&&i._directInactive&&i._inactive&&(p=!0),i=i.$parent}if(a.routerViewDepth=l,p){var h=f[c],v=h&&h.component;return v?(h.configProps&&k(v,a,h.route,h.configProps),s(v,a,r)):s()}var y=u.matched[l],m=y&&y.components[c];if(!y||!m)return f[c]=null,s();f[c]={component:m},a.registerRouteInstance=function(t,e){var n=y.instances[c];(e&&n!==t||!e&&n===t)&&(y.instances[c]=e)},(a.hook||(a.hook={})).prepatch=function(t,e){y.instances[c]=e.componentInstance},a.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==y.instances[c]&&(y.instances[c]=t.componentInstance),A(u)};var g=y.props&&y.props[c];return g&&(o(f[c],{route:u,configProps:g}),k(m,a,u,g)),s(m,a,r)}};function k(t,e,n,r){var i=e.props=O(n,r);if(i){i=e.props=o({},i);var a=e.attrs=e.attrs||{};for(var s in i)t.props&&s in t.props||(a[s]=i[s],delete i[s])}}function O(t,e){switch(typeof e){case\"undefined\":return;case\"object\":return e;case\"function\":return e(t);case\"boolean\":return e?t.params:void 0;default:0}}function S(t,e,n){var r=t.charAt(0);if(\"/\"===r)return t;if(\"?\"===r||\"#\"===r)return e+t;var o=e.split(\"/\");n&&o[o.length-1]||o.pop();for(var i=t.replace(/^\\//,\"\").split(\"/\"),a=0;a<i.length;a++){var s=i[a];\"..\"===s?o.pop():\".\"!==s&&o.push(s)}return\"\"!==o[0]&&o.unshift(\"\"),o.join(\"/\")}function E(t){var e=\"\",n=\"\",r=t.indexOf(\"#\");r>=0&&(e=t.slice(r),t=t.slice(0,r));var o=t.indexOf(\"?\");return o>=0&&(n=t.slice(o+1),t=t.slice(0,o)),{path:t,query:n,hash:e}}function T(t){return t.replace(/\\/\\//g,\"/\")}var j=Array.isArray||function(t){return\"[object Array]\"==Object.prototype.toString.call(t)},R=Q,P=M,I=F,L=B,N=G,D=new RegExp([\"(\\\\\\\\.)\",\"([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))\"].join(\"|\"),\"g\");function M(t,e){var n,r=[],o=0,i=0,a=\"\",s=e&&e.delimiter||\"/\";while(null!=(n=D.exec(t))){var c=n[0],u=n[1],f=n.index;if(a+=t.slice(i,f),i=f+c.length,u)a+=u[1];else{var l=t[i],p=n[2],d=n[3],h=n[4],v=n[5],y=n[6],m=n[7];a&&(r.push(a),a=\"\");var g=null!=p&&null!=l&&l!==p,_=\"+\"===y||\"*\"===y,b=\"?\"===y||\"*\"===y,w=n[2]||s,C=h||v;r.push({name:d||o++,prefix:p||\"\",delimiter:w,optional:b,repeat:_,partial:g,asterisk:!!m,pattern:C?q(C):m?\".*\":\"[^\"+H(w)+\"]+?\"})}}return i<t.length&&(a+=t.substr(i)),a&&r.push(a),r}function F(t,e){return B(M(t,e),e)}function U(t){return encodeURI(t).replace(/[\\/?#]/g,(function(t){return\"%\"+t.charCodeAt(0).toString(16).toUpperCase()}))}function V(t){return encodeURI(t).replace(/[?#]/g,(function(t){return\"%\"+t.charCodeAt(0).toString(16).toUpperCase()}))}function B(t,e){for(var n=new Array(t.length),r=0;r<t.length;r++)\"object\"===typeof t[r]&&(n[r]=new RegExp(\"^(?:\"+t[r].pattern+\")$\",W(e)));return function(e,r){for(var o=\"\",i=e||{},a=r||{},s=a.pretty?U:encodeURIComponent,c=0;c<t.length;c++){var u=t[c];if(\"string\"!==typeof u){var f,l=i[u.name];if(null==l){if(u.optional){u.partial&&(o+=u.prefix);continue}throw new TypeError('Expected \"'+u.name+'\" to be defined')}if(j(l)){if(!u.repeat)throw new TypeError('Expected \"'+u.name+'\" to not repeat, but received `'+JSON.stringify(l)+\"`\");if(0===l.length){if(u.optional)continue;throw new TypeError('Expected \"'+u.name+'\" to not be empty')}for(var p=0;p<l.length;p++){if(f=s(l[p]),!n[c].test(f))throw new TypeError('Expected all \"'+u.name+'\" to match \"'+u.pattern+'\", but received `'+JSON.stringify(f)+\"`\");o+=(0===p?u.prefix:u.delimiter)+f}}else{if(f=u.asterisk?V(l):s(l),!n[c].test(f))throw new TypeError('Expected \"'+u.name+'\" to match \"'+u.pattern+'\", but received \"'+f+'\"');o+=u.prefix+f}}else o+=u}return o}}function H(t){return t.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g,\"\\\\$1\")}function q(t){return t.replace(/([=!:$\\/()])/g,\"\\\\$1\")}function z(t,e){return t.keys=e,t}function W(t){return t&&t.sensitive?\"\":\"i\"}function K(t,e){var n=t.source.match(/\\((?!\\?)/g);if(n)for(var r=0;r<n.length;r++)e.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return z(t,e)}function X(t,e,n){for(var r=[],o=0;o<t.length;o++)r.push(Q(t[o],e,n).source);var i=new RegExp(\"(?:\"+r.join(\"|\")+\")\",W(n));return z(i,e)}function J(t,e,n){return G(M(t,n),e,n)}function G(t,e,n){j(e)||(n=e||n,e=[]),n=n||{};for(var r=n.strict,o=!1!==n.end,i=\"\",a=0;a<t.length;a++){var s=t[a];if(\"string\"===typeof s)i+=H(s);else{var c=H(s.prefix),u=\"(?:\"+s.pattern+\")\";e.push(s),s.repeat&&(u+=\"(?:\"+c+u+\")*\"),u=s.optional?s.partial?c+\"(\"+u+\")?\":\"(?:\"+c+\"(\"+u+\"))?\":c+\"(\"+u+\")\",i+=u}}var f=H(n.delimiter||\"/\"),l=i.slice(-f.length)===f;return r||(i=(l?i.slice(0,-f.length):i)+\"(?:\"+f+\"(?=$))?\"),i+=o?\"$\":r&&l?\"\":\"(?=\"+f+\"|$)\",z(new RegExp(\"^\"+i,W(n)),e)}function Q(t,e,n){return j(e)||(n=e||n,e=[]),n=n||{},t instanceof RegExp?K(t,e):j(t)?X(t,e,n):J(t,e,n)}R.parse=P,R.compile=I,R.tokensToFunction=L,R.tokensToRegExp=N;var Y=Object.create(null);function Z(t,e,n){e=e||{};try{var r=Y[t]||(Y[t]=R.compile(t));return\"string\"===typeof e.pathMatch&&(e[0]=e.pathMatch),r(e,{pretty:!0})}catch(o){return\"\"}finally{delete e[0]}}function tt(t,e,n,r){var i=\"string\"===typeof t?{path:t}:t;if(i._normalized)return i;if(i.name){i=o({},t);var a=i.params;return a&&\"object\"===typeof a&&(i.params=o({},a)),i}if(!i.path&&i.params&&e){i=o({},i),i._normalized=!0;var s=o(o({},e.params),i.params);if(e.name)i.name=e.name,i.params=s;else if(e.matched.length){var c=e.matched[e.matched.length-1].path;i.path=Z(c,s,\"path \"+e.path)}else 0;return i}var u=E(i.path||\"\"),l=e&&e.path||\"/\",p=u.path?S(u.path,l,n||i.append):l,d=f(u.query,i.query,r&&r.options.parseQuery),h=i.hash||u.hash;return h&&\"#\"!==h.charAt(0)&&(h=\"#\"+h),{_normalized:!0,path:p,query:d,hash:h}}var et,nt=[String,Object],rt=[String,Array],ot=function(){},it={name:\"RouterLink\",props:{to:{type:nt,required:!0},tag:{type:String,default:\"a\"},custom:Boolean,exact:Boolean,exactPath:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:{type:String,default:\"page\"},event:{type:rt,default:\"click\"}},render:function(t){var e=this,n=this.$router,r=this.$route,i=n.resolve(this.to,r,this.append),a=i.location,s=i.route,c=i.href,u={},f=n.options.linkActiveClass,l=n.options.linkExactActiveClass,p=null==f?\"router-link-active\":f,d=null==l?\"router-link-exact-active\":l,h=null==this.activeClass?p:this.activeClass,y=null==this.exactActiveClass?d:this.exactActiveClass,m=s.redirectedFrom?v(null,tt(s.redirectedFrom),null,n):s;u[y]=b(r,m,this.exactPath),u[h]=this.exact||this.exactPath?u[y]:C(r,m);var g=u[y]?this.ariaCurrentValue:null,_=function(t){at(t)&&(e.replace?n.replace(a,ot):n.push(a,ot))},w={click:at};Array.isArray(this.event)?this.event.forEach((function(t){w[t]=_})):w[this.event]=_;var x={class:u},A=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:c,route:s,navigate:_,isActive:u[h],isExactActive:u[y]});if(A){if(1===A.length)return A[0];if(A.length>1||!A.length)return 0===A.length?t():t(\"span\",{},A)}if(\"a\"===this.tag)x.on=w,x.attrs={href:c,\"aria-current\":g};else{var $=st(this.$slots.default);if($){$.isStatic=!1;var k=$.data=o({},$.data);for(var O in k.on=k.on||{},k.on){var S=k.on[O];O in w&&(k.on[O]=Array.isArray(S)?S:[S])}for(var E in w)E in k.on?k.on[E].push(w[E]):k.on[E]=_;var T=$.data.attrs=o({},$.data.attrs);T.href=c,T[\"aria-current\"]=g}else x.on=w}return t(this.tag,x,this.$slots.default)}};function at(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)&&!t.defaultPrevented&&(void 0===t.button||0===t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute(\"target\");if(/\\b_blank\\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function st(t){if(t)for(var e,n=0;n<t.length;n++){if(e=t[n],\"a\"===e.tag)return e;if(e.children&&(e=st(e.children)))return e}}function ct(t){if(!ct.installed||et!==t){ct.installed=!0,et=t;var e=function(t){return void 0!==t},n=function(t,n){var r=t.$options._parentVnode;e(r)&&e(r=r.data)&&e(r=r.registerRouteInstance)&&r(t,n)};t.mixin({beforeCreate:function(){e(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),t.util.defineReactive(this,\"_route\",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,n(this,this)},destroyed:function(){n(this)}}),Object.defineProperty(t.prototype,\"$router\",{get:function(){return this._routerRoot._router}}),Object.defineProperty(t.prototype,\"$route\",{get:function(){return this._routerRoot._route}}),t.component(\"RouterView\",$),t.component(\"RouterLink\",it);var r=t.config.optionMergeStrategies;r.beforeRouteEnter=r.beforeRouteLeave=r.beforeRouteUpdate=r.created}}var ut=\"undefined\"!==typeof window;function ft(t,e,n,r,o){var i=e||[],a=n||Object.create(null),s=r||Object.create(null);t.forEach((function(t){lt(i,a,s,t,o)}));for(var c=0,u=i.length;c<u;c++)\"*\"===i[c]&&(i.push(i.splice(c,1)[0]),u--,c--);return{pathList:i,pathMap:a,nameMap:s}}function lt(t,e,n,r,o,i){var a=r.path,s=r.name;var c=r.pathToRegexpOptions||{},u=dt(a,o,c.strict);\"boolean\"===typeof r.caseSensitive&&(c.sensitive=r.caseSensitive);var f={path:u,regex:pt(u,c),components:r.components||{default:r.component},alias:r.alias?\"string\"===typeof r.alias?[r.alias]:r.alias:[],instances:{},enteredCbs:{},name:s,parent:o,matchAs:i,redirect:r.redirect,beforeEnter:r.beforeEnter,meta:r.meta||{},props:null==r.props?{}:r.components?r.props:{default:r.props}};if(r.children&&r.children.forEach((function(r){var o=i?T(i+\"/\"+r.path):void 0;lt(t,e,n,r,f,o)})),e[f.path]||(t.push(f.path),e[f.path]=f),void 0!==r.alias)for(var l=Array.isArray(r.alias)?r.alias:[r.alias],p=0;p<l.length;++p){var d=l[p];0;var h={path:d,children:r.children};lt(t,e,n,h,o,f.path||\"/\")}s&&(n[s]||(n[s]=f))}function pt(t,e){var n=R(t,[],e);return n}function dt(t,e,n){return n||(t=t.replace(/\\/$/,\"\")),\"/\"===t[0]||null==e?t:T(e.path+\"/\"+t)}function ht(t,e){var n=ft(t),r=n.pathList,o=n.pathMap,i=n.nameMap;function a(t){ft(t,r,o,i)}function s(t,e){var n=\"object\"!==typeof t?i[t]:void 0;ft([e||t],r,o,i,n),n&&n.alias.length&&ft(n.alias.map((function(t){return{path:t,children:[e]}})),r,o,i,n)}function c(){return r.map((function(t){return o[t]}))}function u(t,n,a){var s=tt(t,n,!1,e),c=s.name;if(c){var u=i[c];if(!u)return p(null,s);var f=u.regex.keys.filter((function(t){return!t.optional})).map((function(t){return t.name}));if(\"object\"!==typeof s.params&&(s.params={}),n&&\"object\"===typeof n.params)for(var l in n.params)!(l in s.params)&&f.indexOf(l)>-1&&(s.params[l]=n.params[l]);return s.path=Z(u.path,s.params,'named route \"'+c+'\"'),p(u,s,a)}if(s.path){s.params={};for(var d=0;d<r.length;d++){var h=r[d],v=o[h];if(vt(v.regex,s.path,s.params))return p(v,s,a)}}return p(null,s)}function f(t,n){var r=t.redirect,o=\"function\"===typeof r?r(v(t,n,null,e)):r;if(\"string\"===typeof o&&(o={path:o}),!o||\"object\"!==typeof o)return p(null,n);var a=o,s=a.name,c=a.path,f=n.query,l=n.hash,d=n.params;if(f=a.hasOwnProperty(\"query\")?a.query:f,l=a.hasOwnProperty(\"hash\")?a.hash:l,d=a.hasOwnProperty(\"params\")?a.params:d,s){i[s];return u({_normalized:!0,name:s,query:f,hash:l,params:d},void 0,n)}if(c){var h=yt(c,t),y=Z(h,d,'redirect route with path \"'+h+'\"');return u({_normalized:!0,path:y,query:f,hash:l},void 0,n)}return p(null,n)}function l(t,e,n){var r=Z(n,e.params,'aliased route with path \"'+n+'\"'),o=u({_normalized:!0,path:r});if(o){var i=o.matched,a=i[i.length-1];return e.params=o.params,p(a,e)}return p(null,e)}function p(t,n,r){return t&&t.redirect?f(t,r||n):t&&t.matchAs?l(t,n,t.matchAs):v(t,n,r,e)}return{match:u,addRoute:s,getRoutes:c,addRoutes:a}}function vt(t,e,n){var r=e.match(t);if(!r)return!1;if(!n)return!0;for(var o=1,i=r.length;o<i;++o){var a=t.keys[o-1];a&&(n[a.name||\"pathMatch\"]=\"string\"===typeof r[o]?u(r[o]):r[o])}return!0}function yt(t,e){return S(t,e.parent?e.parent.path:\"/\",!0)}var mt=ut&&window.performance&&window.performance.now?window.performance:Date;function gt(){return mt.now().toFixed(3)}var _t=gt();function bt(){return _t}function wt(t){return _t=t}var Ct=Object.create(null);function xt(){\"scrollRestoration\"in window.history&&(window.history.scrollRestoration=\"manual\");var t=window.location.protocol+\"//\"+window.location.host,e=window.location.href.replace(t,\"\"),n=o({},window.history.state);return n.key=bt(),window.history.replaceState(n,\"\",e),window.addEventListener(\"popstate\",kt),function(){window.removeEventListener(\"popstate\",kt)}}function At(t,e,n,r){if(t.app){var o=t.options.scrollBehavior;o&&t.app.$nextTick((function(){var i=Ot(),a=o.call(t,e,n,r?i:null);a&&(\"function\"===typeof a.then?a.then((function(t){It(t,i)})).catch((function(t){0})):It(a,i))}))}}function $t(){var t=bt();t&&(Ct[t]={x:window.pageXOffset,y:window.pageYOffset})}function kt(t){$t(),t.state&&t.state.key&&wt(t.state.key)}function Ot(){var t=bt();if(t)return Ct[t]}function St(t,e){var n=document.documentElement,r=n.getBoundingClientRect(),o=t.getBoundingClientRect();return{x:o.left-r.left-e.x,y:o.top-r.top-e.y}}function Et(t){return Rt(t.x)||Rt(t.y)}function Tt(t){return{x:Rt(t.x)?t.x:window.pageXOffset,y:Rt(t.y)?t.y:window.pageYOffset}}function jt(t){return{x:Rt(t.x)?t.x:0,y:Rt(t.y)?t.y:0}}function Rt(t){return\"number\"===typeof t}var Pt=/^#\\d/;function It(t,e){var n=\"object\"===typeof t;if(n&&\"string\"===typeof t.selector){var r=Pt.test(t.selector)?document.getElementById(t.selector.slice(1)):document.querySelector(t.selector);if(r){var o=t.offset&&\"object\"===typeof t.offset?t.offset:{};o=jt(o),e=St(r,o)}else Et(t)&&(e=Tt(t))}else n&&Et(t)&&(e=Tt(t));e&&(\"scrollBehavior\"in document.documentElement.style?window.scrollTo({left:e.x,top:e.y,behavior:t.behavior}):window.scrollTo(e.x,e.y))}var Lt=ut&&function(){var t=window.navigator.userAgent;return(-1===t.indexOf(\"Android 2.\")&&-1===t.indexOf(\"Android 4.0\")||-1===t.indexOf(\"Mobile Safari\")||-1!==t.indexOf(\"Chrome\")||-1!==t.indexOf(\"Windows Phone\"))&&(window.history&&\"function\"===typeof window.history.pushState)}();function Nt(t,e){$t();var n=window.history;try{if(e){var r=o({},n.state);r.key=bt(),n.replaceState(r,\"\",t)}else n.pushState({key:wt(gt())},\"\",t)}catch(i){window.location[e?\"replace\":\"assign\"](t)}}function Dt(t){Nt(t,!0)}function Mt(t,e,n){var r=function(o){o>=t.length?n():t[o]?e(t[o],(function(){r(o+1)})):r(o+1)};r(0)}var Ft={redirected:2,aborted:4,cancelled:8,duplicated:16};function Ut(t,e){return qt(t,e,Ft.redirected,'Redirected when going from \"'+t.fullPath+'\" to \"'+Wt(e)+'\" via a navigation guard.')}function Vt(t,e){var n=qt(t,e,Ft.duplicated,'Avoided redundant navigation to current location: \"'+t.fullPath+'\".');return n.name=\"NavigationDuplicated\",n}function Bt(t,e){return qt(t,e,Ft.cancelled,'Navigation cancelled from \"'+t.fullPath+'\" to \"'+e.fullPath+'\" with a new navigation.')}function Ht(t,e){return qt(t,e,Ft.aborted,'Navigation aborted from \"'+t.fullPath+'\" to \"'+e.fullPath+'\" via a navigation guard.')}function qt(t,e,n,r){var o=new Error(r);return o._isRouter=!0,o.from=t,o.to=e,o.type=n,o}var zt=[\"params\",\"query\",\"hash\"];function Wt(t){if(\"string\"===typeof t)return t;if(\"path\"in t)return t.path;var e={};return zt.forEach((function(n){n in t&&(e[n]=t[n])})),JSON.stringify(e,null,2)}function Kt(t){return Object.prototype.toString.call(t).indexOf(\"Error\")>-1}function Xt(t,e){return Kt(t)&&t._isRouter&&(null==e||t.type===e)}function Jt(t){return function(e,n,r){var o=!1,i=0,a=null;Gt(t,(function(t,e,n,s){if(\"function\"===typeof t&&void 0===t.cid){o=!0,i++;var c,u=te((function(e){Zt(e)&&(e=e.default),t.resolved=\"function\"===typeof e?e:et.extend(e),n.components[s]=e,i--,i<=0&&r()})),f=te((function(t){var e=\"Failed to resolve async component \"+s+\": \"+t;a||(a=Kt(t)?t:new Error(e),r(a))}));try{c=t(u,f)}catch(p){f(p)}if(c)if(\"function\"===typeof c.then)c.then(u,f);else{var l=c.component;l&&\"function\"===typeof l.then&&l.then(u,f)}}})),o||r()}}function Gt(t,e){return Qt(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function Qt(t){return Array.prototype.concat.apply([],t)}var Yt=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.toStringTag;function Zt(t){return t.__esModule||Yt&&\"Module\"===t[Symbol.toStringTag]}function te(t){var e=!1;return function(){var n=[],r=arguments.length;while(r--)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var ee=function(t,e){this.router=t,this.base=ne(e),this.current=m,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function ne(t){if(!t)if(ut){var e=document.querySelector(\"base\");t=e&&e.getAttribute(\"href\")||\"/\",t=t.replace(/^https?:\\/\\/[^\\/]+/,\"\")}else t=\"/\";return\"/\"!==t.charAt(0)&&(t=\"/\"+t),t.replace(/\\/$/,\"\")}function re(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n<r;n++)if(t[n]!==e[n])break;return{updated:e.slice(0,n),activated:e.slice(n),deactivated:t.slice(n)}}function oe(t,e,n,r){var o=Gt(t,(function(t,r,o,i){var a=ie(t,e);if(a)return Array.isArray(a)?a.map((function(t){return n(t,r,o,i)})):n(a,r,o,i)}));return Qt(r?o.reverse():o)}function ie(t,e){return\"function\"!==typeof t&&(t=et.extend(t)),t.options[e]}function ae(t){return oe(t,\"beforeRouteLeave\",ce,!0)}function se(t){return oe(t,\"beforeRouteUpdate\",ce)}function ce(t,e){if(e)return function(){return t.apply(e,arguments)}}function ue(t){return oe(t,\"beforeRouteEnter\",(function(t,e,n,r){return fe(t,n,r)}))}function fe(t,e,n){return function(r,o,i){return t(r,o,(function(t){\"function\"===typeof t&&(e.enteredCbs[n]||(e.enteredCbs[n]=[]),e.enteredCbs[n].push(t)),i(t)}))}}ee.prototype.listen=function(t){this.cb=t},ee.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},ee.prototype.onError=function(t){this.errorCbs.push(t)},ee.prototype.transitionTo=function(t,e,n){var r,o=this;try{r=this.router.match(t,this.current)}catch(a){throw this.errorCbs.forEach((function(t){t(a)})),a}var i=this.current;this.confirmTransition(r,(function(){o.updateRoute(r),e&&e(r),o.ensureURL(),o.router.afterHooks.forEach((function(t){t&&t(r,i)})),o.ready||(o.ready=!0,o.readyCbs.forEach((function(t){t(r)})))}),(function(t){n&&n(t),t&&!o.ready&&(Xt(t,Ft.redirected)&&i===m||(o.ready=!0,o.readyErrorCbs.forEach((function(e){e(t)}))))}))},ee.prototype.confirmTransition=function(t,e,n){var o=this,i=this.current;this.pending=t;var a=function(t){!Xt(t)&&Kt(t)&&(o.errorCbs.length?o.errorCbs.forEach((function(e){e(t)})):(r(!1,\"uncaught error during route navigation:\"),console.error(t))),n&&n(t)},s=t.matched.length-1,c=i.matched.length-1;if(b(t,i)&&s===c&&t.matched[s]===i.matched[c])return this.ensureURL(),a(Vt(i,t));var u=re(this.current.matched,t.matched),f=u.updated,l=u.deactivated,p=u.activated,d=[].concat(ae(l),this.router.beforeHooks,se(f),p.map((function(t){return t.beforeEnter})),Jt(p)),h=function(e,n){if(o.pending!==t)return a(Bt(i,t));try{e(t,i,(function(e){!1===e?(o.ensureURL(!0),a(Ht(i,t))):Kt(e)?(o.ensureURL(!0),a(e)):\"string\"===typeof e||\"object\"===typeof e&&(\"string\"===typeof e.path||\"string\"===typeof e.name)?(a(Ut(i,t)),\"object\"===typeof e&&e.replace?o.replace(e):o.push(e)):n(e)}))}catch(r){a(r)}};Mt(d,h,(function(){var n=ue(p),r=n.concat(o.router.resolveHooks);Mt(r,h,(function(){if(o.pending!==t)return a(Bt(i,t));o.pending=null,e(t),o.router.app&&o.router.app.$nextTick((function(){A(t)}))}))}))},ee.prototype.updateRoute=function(t){this.current=t,this.cb&&this.cb(t)},ee.prototype.setupListeners=function(){},ee.prototype.teardown=function(){this.listeners.forEach((function(t){t()})),this.listeners=[],this.current=m,this.pending=null};var le=function(t){function e(e,n){t.call(this,e,n),this._startLocation=pe(this.base)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,n=e.options.scrollBehavior,r=Lt&&n;r&&this.listeners.push(xt());var o=function(){var n=t.current,o=pe(t.base);t.current===m&&o===t._startLocation||t.transitionTo(o,(function(t){r&&At(e,t,n,!0)}))};window.addEventListener(\"popstate\",o),this.listeners.push((function(){window.removeEventListener(\"popstate\",o)}))}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){Nt(T(r.base+t.fullPath)),At(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){Dt(T(r.base+t.fullPath)),At(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.ensureURL=function(t){if(pe(this.base)!==this.current.fullPath){var e=T(this.base+this.current.fullPath);t?Nt(e):Dt(e)}},e.prototype.getCurrentLocation=function(){return pe(this.base)},e}(ee);function pe(t){var e=window.location.pathname,n=e.toLowerCase(),r=t.toLowerCase();return!t||n!==r&&0!==n.indexOf(T(r+\"/\"))||(e=e.slice(t.length)),(e||\"/\")+window.location.search+window.location.hash}var de=function(t){function e(e,n,r){t.call(this,e,n),r&&he(this.base)||ve()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,n=e.options.scrollBehavior,r=Lt&&n;r&&this.listeners.push(xt());var o=function(){var e=t.current;ve()&&t.transitionTo(ye(),(function(n){r&&At(t.router,n,e,!0),Lt||_e(n.fullPath)}))},i=Lt?\"popstate\":\"hashchange\";window.addEventListener(i,o),this.listeners.push((function(){window.removeEventListener(i,o)}))}},e.prototype.push=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){ge(t.fullPath),At(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){_e(t.fullPath),At(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;ye()!==e&&(t?ge(e):_e(e))},e.prototype.getCurrentLocation=function(){return ye()},e}(ee);function he(t){var e=pe(t);if(!/^\\/#/.test(e))return window.location.replace(T(t+\"/#\"+e)),!0}function ve(){var t=ye();return\"/\"===t.charAt(0)||(_e(\"/\"+t),!1)}function ye(){var t=window.location.href,e=t.indexOf(\"#\");return e<0?\"\":(t=t.slice(e+1),t)}function me(t){var e=window.location.href,n=e.indexOf(\"#\"),r=n>=0?e.slice(0,n):e;return r+\"#\"+t}function ge(t){Lt?Nt(me(t)):window.location.hash=t}function _e(t){Lt?Dt(me(t)):window.location.replace(me(t))}var be=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,(function(){var t=e.current;e.index=n,e.updateRoute(r),e.router.afterHooks.forEach((function(e){e&&e(r,t)}))}),(function(t){Xt(t,Ft.duplicated)&&(e.index=n)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:\"/\"},e.prototype.ensureURL=function(){},e}(ee),we=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=ht(t.routes||[],this);var e=t.mode||\"hash\";switch(this.fallback=\"history\"===e&&!Lt&&!1!==t.fallback,this.fallback&&(e=\"hash\"),ut||(e=\"abstract\"),this.mode=e,e){case\"history\":this.history=new le(this,t.base);break;case\"hash\":this.history=new de(this,t.base,this.fallback);break;case\"abstract\":this.history=new be(this,t.base);break;default:0}},Ce={currentRoute:{configurable:!0}};function xe(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}function Ae(t,e,n){var r=\"hash\"===n?\"#\"+e:e;return t?T(t+\"/\"+r):r}we.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},Ce.currentRoute.get=function(){return this.history&&this.history.current},we.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once(\"hook:destroyed\",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardown()})),!this.app){this.app=t;var n=this.history;if(n instanceof le||n instanceof de){var r=function(t){var r=n.current,o=e.options.scrollBehavior,i=Lt&&o;i&&\"fullPath\"in t&&At(e,t,r,!1)},o=function(t){n.setupListeners(),r(t)};n.transitionTo(n.getCurrentLocation(),o,o)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},we.prototype.beforeEach=function(t){return xe(this.beforeHooks,t)},we.prototype.beforeResolve=function(t){return xe(this.resolveHooks,t)},we.prototype.afterEach=function(t){return xe(this.afterHooks,t)},we.prototype.onReady=function(t,e){this.history.onReady(t,e)},we.prototype.onError=function(t){this.history.onError(t)},we.prototype.push=function(t,e,n){var r=this;if(!e&&!n&&\"undefined\"!==typeof Promise)return new Promise((function(e,n){r.history.push(t,e,n)}));this.history.push(t,e,n)},we.prototype.replace=function(t,e,n){var r=this;if(!e&&!n&&\"undefined\"!==typeof Promise)return new Promise((function(e,n){r.history.replace(t,e,n)}));this.history.replace(t,e,n)},we.prototype.go=function(t){this.history.go(t)},we.prototype.back=function(){this.go(-1)},we.prototype.forward=function(){this.go(1)},we.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},we.prototype.resolve=function(t,e,n){e=e||this.history.current;var r=tt(t,e,n,this),o=this.match(r,e),i=o.redirectedFrom||o.fullPath,a=this.history.base,s=Ae(a,i,this.mode);return{location:r,route:o,href:s,normalizedTo:r,resolved:o}},we.prototype.getRoutes=function(){return this.matcher.getRoutes()},we.prototype.addRoute=function(t,e){this.matcher.addRoute(t,e),this.history.current!==m&&this.history.transitionTo(this.history.getCurrentLocation())},we.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==m&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(we.prototype,Ce),we.install=ct,we.version=\"3.5.2\",we.isNavigationFailure=Xt,we.NavigationFailureType=Ft,we.START_LOCATION=m,ut&&window.Vue&&window.Vue.use(we),e[\"a\"]=we},c8ba:function(t,e){var n;n=function(){return this}();try{n=n||new Function(\"return this\")()}catch(r){\"object\"===typeof window&&(n=window)}t.exports=n},e7a5:function(t,e,n){(function(e){(function(e,n){t.exports=n(e)})(\"undefined\"!=typeof e?e:this,(function(t){if(t.CSS&&t.CSS.escape)return t.CSS.escape;var e=function(t){if(0==arguments.length)throw new TypeError(\"`CSS.escape` requires an argument.\");var e,n=String(t),r=n.length,o=-1,i=\"\",a=n.charCodeAt(0);while(++o<r)e=n.charCodeAt(o),i+=0!=e?e>=1&&e<=31||127==e||0==o&&e>=48&&e<=57||1==o&&e>=48&&e<=57&&45==a?\"\\\\\"+e.toString(16)+\" \":(0!=o||1!=r||45!=e)&&(e>=128||45==e||95==e||e>=48&&e<=57||e>=65&&e<=90||e>=97&&e<=122)?n.charAt(o):\"\\\\\"+n.charAt(o):\"�\";return i};return t.CSS||(t.CSS={}),t.CSS.escape=e,e}))}).call(this,n(\"c8ba\"))}}]);"
  },
  {
    "path": "docs/js/documentation-topic.f62098b6.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"documentation-topic\"],{\"042f\":function(e,t,n){},\"0725\":function(e,t,n){},\"09db\":function(e,t,n){\"use strict\";n(\"535f\")},\"0b15\":function(e,t,n){\"use strict\";n(\"9792\")},\"0b72\":function(e,t,n){},1347:function(e,t,n){\"use strict\";n(\"367e\")},\"18b3\":function(e,t,n){\"use strict\";n(\"6fe8\")},\"1a47\":function(e,t,n){\"use strict\";n(\"042f\")},\"1fb2\":function(e,t,n){\"use strict\";n(\"476d\")},\"22f6\":function(e,t,n){},2521:function(e,t,n){},\"252c\":function(e,t,n){\"use strict\";(function(e){function a(){var e=window.navigator.userAgent,t=e.indexOf(\"MSIE \");if(t>0)return parseInt(e.substring(t+5,e.indexOf(\".\",t)),10);var n=e.indexOf(\"Trident/\");if(n>0){var a=e.indexOf(\"rv:\");return parseInt(e.substring(a+3,e.indexOf(\".\",a)),10)}var i=e.indexOf(\"Edge/\");return i>0?parseInt(e.substring(i+5,e.indexOf(\".\",i)),10):-1}n.d(t,\"a\",(function(){return r}));var i=void 0;function s(){s.init||(s.init=!0,i=-1!==a())}var r={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"resize-observer\",attrs:{tabindex:\"-1\"}})},staticRenderFns:[],_scopeId:\"data-v-b329ee4c\",name:\"resize-observer\",methods:{compareAndNotify:function(){this._w===this.$el.offsetWidth&&this._h===this.$el.offsetHeight||(this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.$emit(\"notify\"))},addResizeHandlers:function(){this._resizeObject.contentDocument.defaultView.addEventListener(\"resize\",this.compareAndNotify),this.compareAndNotify()},removeResizeHandlers:function(){this._resizeObject&&this._resizeObject.onload&&(!i&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener(\"resize\",this.compareAndNotify),delete this._resizeObject.onload)}},mounted:function(){var e=this;s(),this.$nextTick((function(){e._w=e.$el.offsetWidth,e._h=e.$el.offsetHeight}));var t=document.createElement(\"object\");this._resizeObject=t,t.setAttribute(\"aria-hidden\",\"true\"),t.setAttribute(\"tabindex\",-1),t.onload=this.addResizeHandlers,t.type=\"text/html\",i&&this.$el.appendChild(t),t.data=\"about:blank\",i||this.$el.appendChild(t)},beforeDestroy:function(){this.removeResizeHandlers()}};function o(e){e.component(\"resize-observer\",r),e.component(\"ResizeObserver\",r)}var l={version:\"0.4.5\",install:o},c=null;\"undefined\"!==typeof window?c=window.Vue:\"undefined\"!==typeof e&&(c=e.Vue),c&&c.use(l)}).call(this,n(\"c8ba\"))},\"260a\":function(e,t,n){\"use strict\";n(\"9a8a\")},2822:function(e,t,n){\"use strict\";n(\"2521\")},\"2a5c\":function(e,t,n){},\"2ca2\":function(e,t,n){\"use strict\";n(\"98e2\")},\"2dd1\":function(e,t,n){\"use strict\";n(\"c953\")},\"2ddb\":function(e,t,n){},\"2f04\":function(e,t,n){},\"2f87\":function(e,t,n){\"use strict\";n(\"b0a0\")},3099:function(e,t,n){\"use strict\";n(\"ec60\")},\"367e\":function(e,t,n){},\"374e\":function(e,t,n){\"use strict\";n(\"0b72\")},\"3b96\":function(e,t,n){\"use strict\";var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"curly-brackets-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M9.987 14h-0.814v-0.916h0.36c0.137 0 0.253-0.038 0.349-0.116 0.099-0.080 0.179-0.188 0.239-0.318 0.064-0.134 0.11-0.298 0.139-0.483 0.031-0.186 0.045-0.38 0.045-0.58v-2.115c0-0.417 0.046-0.781 0.139-1.083 0.092-0.3 0.2-0.554 0.322-0.754 0.127-0.203 0.246-0.353 0.366-0.458 0.087-0.076 0.155-0.131 0.207-0.169-0.052-0.037-0.12-0.093-0.207-0.167-0.12-0.105-0.239-0.255-0.366-0.459-0.122-0.2-0.23-0.453-0.322-0.754-0.093-0.3-0.139-0.665-0.139-1.082v-2.13c0-0.199-0.014-0.392-0.045-0.572-0.029-0.182-0.076-0.345-0.139-0.483-0.060-0.137-0.141-0.246-0.239-0.328-0.095-0.076-0.212-0.115-0.349-0.115h-0.36v-0.916h0.814c0.442 0 0.788 0.18 1.030 0.538 0.238 0.352 0.358 0.826 0.358 1.407v2.236c0 0.3 0.015 0.597 0.044 0.886 0.030 0.287 0.086 0.544 0.164 0.765 0.077 0.216 0.184 0.392 0.318 0.522 0.129 0.124 0.298 0.188 0.503 0.188h0.058v0.916h-0.058c-0.206 0-0.374 0.064-0.503 0.188-0.134 0.129-0.242 0.305-0.318 0.521-0.078 0.223-0.134 0.48-0.164 0.766-0.029 0.288-0.044 0.587-0.044 0.884v2.236c0 0.582-0.12 1.055-0.358 1.409-0.242 0.358-0.588 0.538-1.030 0.538z\"}}),n(\"path\",{attrs:{d:\"M4.827 14h-0.814c-0.442 0-0.788-0.18-1.030-0.538-0.238-0.352-0.358-0.825-0.358-1.409v-2.221c0-0.301-0.015-0.599-0.045-0.886-0.029-0.287-0.085-0.544-0.163-0.764-0.077-0.216-0.184-0.393-0.318-0.522-0.131-0.127-0.296-0.188-0.503-0.188h-0.058v-0.916h0.058c0.208 0 0.373-0.063 0.503-0.188 0.135-0.129 0.242-0.304 0.318-0.522 0.078-0.22 0.134-0.477 0.163-0.765 0.030-0.286 0.045-0.585 0.045-0.886v-2.251c0-0.582 0.12-1.055 0.358-1.407 0.242-0.358 0.588-0.538 1.030-0.538h0.814v0.916h-0.36c-0.138 0-0.252 0.038-0.349 0.116-0.099 0.079-0.179 0.189-0.239 0.327-0.064 0.139-0.11 0.302-0.141 0.483-0.029 0.18-0.044 0.373-0.044 0.572v2.13c0 0.417-0.046 0.782-0.138 1.082-0.092 0.302-0.201 0.556-0.324 0.754-0.123 0.201-0.246 0.356-0.366 0.459-0.086 0.074-0.153 0.13-0.206 0.167 0.052 0.038 0.12 0.093 0.206 0.169 0.12 0.103 0.243 0.258 0.366 0.458s0.232 0.453 0.324 0.754c0.092 0.302 0.138 0.666 0.138 1.083v2.115c0 0.2 0.015 0.394 0.044 0.58 0.030 0.186 0.077 0.349 0.139 0.482 0.062 0.132 0.142 0.239 0.241 0.32 0.096 0.079 0.21 0.116 0.349 0.116h0.36z\"}})])},i=[],s=n(\"be08\"),r={name:\"CurlyBracketsIcon\",components:{SVGIcon:s[\"a\"]}},o=r,l=n(\"2877\"),c=Object(l[\"a\"])(o,a,i,!1,null,null,null);t[\"a\"]=c.exports},\"3e7c\":function(e,t,n){},4281:function(e,t,n){\"use strict\";n(\"f0dd\")},4340:function(e,t,n){\"use strict\";n(\"a378\")},4539:function(e,t,n){\"use strict\";n(\"7db8\")},\"476d\":function(e,t,n){},\"4ab9\":function(e,t,n){},\"4adf\":function(e,t,n){},\"4d12\":function(e,t,n){},\"4eb2\":function(e,t,n){\"use strict\";n(\"2ddb\")},\"533e\":function(e,t,n){},\"535f\":function(e,t,n){},\"592d\":function(e,t,n){},\"59f2\":function(e,t,n){},\"5c57\":function(e,t,n){\"use strict\";n(\"f0ff\")},\"5d48\":function(e,t,n){\"use strict\";n(\"e81c\")},\"5fad\":function(e,t,n){\"use strict\";n(\"2a5c\")},\"66c9\":function(e,t,n){\"use strict\";t[\"a\"]={state:{codeColors:null},reset(){this.state.codeColors=null},updateCodeColors(e){const t=e=>e?`rgba(${e.red}, ${e.green}, ${e.blue}, ${e.alpha})`:null;this.state.codeColors=Object.entries(e).reduce((e,[n,a])=>({...e,[n]:t(a)}),{})}}},6928:function(e,t,n){},6963:function(e,t,n){},\"6b62\":function(e,t,n){\"use strict\";n(\"59f2\")},\"6c70\":function(e,t,n){},\"6e80\":function(e,t,n){\"use strict\";n(\"592d\")},\"6e90\":function(e,t,n){},\"6fe8\":function(e,t,n){},\"719b\":function(e,t,n){\"use strict\";n(\"8b3c\")},\"73d6\":function(e,t,n){\"use strict\";n(\"6963\")},7500:function(e,t,n){\"use strict\";n(\"6928\")},7625:function(e,t,n){},7948:function(e,t,n){\"use strict\";var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"inline-chevron-down-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M12.634 2.964l0.76 0.649-6.343 7.426-6.445-7.423 0.755-0.655 5.683 6.545 5.59-6.542z\"}})])},i=[],s=n(\"be08\"),r={name:\"InlineChevronDownIcon\",components:{SVGIcon:s[\"a\"]}},o=r,l=n(\"2877\"),c=Object(l[\"a\"])(o,a,i,!1,null,null,null);t[\"a\"]=c.exports},\"7a2c\":function(e,t,n){\"use strict\";n(\"c4c1\")},\"7db8\":function(e,t,n){},8464:function(e,t,n){},8590:function(e,t,n){\"use strict\";var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{style:e.codeStyle},[e._t(\"default\")],2)},i=[],s=n(\"66c9\");const r=0,o=255;function l(e){const t=e.match(/rgba\\((\\d+),\\s*(\\d+),\\s*(\\d+),\\s*(\\d+\\.?\\d*|\\.\\d+)\\s*\\)/);if(!t)throw new Error(\"invalid rgba() input\");const n=10;return{r:parseInt(t[1],n),g:parseInt(t[2],n),b:parseInt(t[3],n),a:parseFloat(t[4])}}function c(e){const{r:t,g:n,b:a}=l(e);return.2126*t+.7152*n+.0722*a}function u(e,t){const n=Math.round(o*t),a=l(e),{a:i}=a,[s,c,u]=[a.r,a.g,a.b].map(e=>Math.max(r,Math.min(o,e+n)));return`rgba(${s}, ${c}, ${u}, ${i})`}function d(e,t){return u(e,t)}function h(e,t){return u(e,-1*t)}var p={name:\"CodeTheme\",data(){return{codeThemeState:s[\"a\"].state}},computed:{codeStyle(){const{codeColors:e}=this.codeThemeState;return e?{\"--text\":e.text,\"--background\":e.background,\"--line-highlight\":e.lineHighlight,\"--url\":e.commentURL,\"--syntax-comment\":e.comment,\"--syntax-quote\":e.comment,\"--syntax-keyword\":e.keyword,\"--syntax-literal\":e.keyword,\"--syntax-selector-tag\":e.keyword,\"--syntax-string\":e.stringLiteral,\"--syntax-bullet\":e.stringLiteral,\"--syntax-meta\":e.keyword,\"--syntax-number\":e.stringLiteral,\"--syntax-symbol\":e.stringLiteral,\"--syntax-tag\":e.stringLiteral,\"--syntax-attr\":e.typeAnnotation,\"--syntax-built_in\":e.typeAnnotation,\"--syntax-builtin-name\":e.typeAnnotation,\"--syntax-class\":e.typeAnnotation,\"--syntax-params\":e.typeAnnotation,\"--syntax-section\":e.typeAnnotation,\"--syntax-title\":e.typeAnnotation,\"--syntax-type\":e.typeAnnotation,\"--syntax-attribute\":e.keyword,\"--syntax-identifier\":e.text,\"--syntax-subst\":e.text,\"--color-syntax-param-internal-name\":this.internalParamNameColor}:null},internalParamNameColor(){const{background:e,text:t}=this.codeThemeState.codeColors;try{const n=c(e),a=n<o/2?h:d,i=.25;return a(t,i)}catch{return t}}}},f=p,g=n(\"2877\"),m=Object(g[\"a\"])(f,a,i,!1,null,null,null);t[\"a\"]=m.exports},\"85fe\":function(e,t,n){\"use strict\";(function(e){function a(e){return a=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},a(e)}function i(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}function s(e,t){for(var n=0;n<t.length;n++){var a=t[n];a.enumerable=a.enumerable||!1,a.configurable=!0,\"value\"in a&&(a.writable=!0),Object.defineProperty(e,a.key,a)}}function r(e,t,n){return t&&s(e.prototype,t),n&&s(e,n),e}function o(e){return l(e)||c(e)||u()}function l(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t<e.length;t++)n[t]=e[t];return n}}function c(e){if(Symbol.iterator in Object(e)||\"[object Arguments]\"===Object.prototype.toString.call(e))return Array.from(e)}function u(){throw new TypeError(\"Invalid attempt to spread non-iterable instance\")}function d(e){var t;return t=\"function\"===typeof e?{callback:e}:e,t}function h(e,t){var n,a,i,s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=function(r){for(var l=arguments.length,c=new Array(l>1?l-1:0),u=1;u<l;u++)c[u-1]=arguments[u];if(i=c,!n||r!==a){var d=s.leading;\"function\"===typeof d&&(d=d(r,a)),n&&r===a||!d||e.apply(void 0,[r].concat(o(i))),a=r,clearTimeout(n),n=setTimeout((function(){e.apply(void 0,[r].concat(o(i))),n=0}),t)}};return r._clear=function(){clearTimeout(n),n=null},r}function p(e,t){if(e===t)return!0;if(\"object\"===a(e)){for(var n in e)if(!p(e[n],t[n]))return!1;return!0}return!1}n.d(t,\"a\",(function(){return v}));var f=function(){function e(t,n,a){i(this,e),this.el=t,this.observer=null,this.frozen=!1,this.createObserver(n,a)}return r(e,[{key:\"createObserver\",value:function(e,t){var n=this;if(this.observer&&this.destroyObserver(),!this.frozen){if(this.options=d(e),this.callback=function(e,t){n.options.callback(e,t),e&&n.options.once&&(n.frozen=!0,n.destroyObserver())},this.callback&&this.options.throttle){var a=this.options.throttleOptions||{},i=a.leading;this.callback=h(this.callback,this.options.throttle,{leading:function(e){return\"both\"===i||\"visible\"===i&&e||\"hidden\"===i&&!e}})}this.oldResult=void 0,this.observer=new IntersectionObserver((function(e){var t=e[0];if(e.length>1){var a=e.find((function(e){return e.isIntersecting}));a&&(t=a)}if(n.callback){var i=t.isIntersecting&&t.intersectionRatio>=n.threshold;if(i===n.oldResult)return;n.oldResult=i,n.callback(i,t)}}),this.options.intersection),t.context.$nextTick((function(){n.observer&&n.observer.observe(n.el)}))}}},{key:\"destroyObserver\",value:function(){this.observer&&(this.observer.disconnect(),this.observer=null),this.callback&&this.callback._clear&&(this.callback._clear(),this.callback=null)}},{key:\"threshold\",get:function(){return this.options.intersection&&this.options.intersection.threshold||0}}]),e}();function g(e,t,n){var a=t.value;if(a)if(\"undefined\"===typeof IntersectionObserver)console.warn(\"[vue-observe-visibility] IntersectionObserver API is not available in your browser. Please install this polyfill: https://github.com/w3c/IntersectionObserver/tree/master/polyfill\");else{var i=new f(e,a,n);e._vue_visibilityState=i}}function m(e,t,n){var a=t.value,i=t.oldValue;if(!p(a,i)){var s=e._vue_visibilityState;a?s?s.createObserver(a,n):g(e,{value:a},n):y(e)}}function y(e){var t=e._vue_visibilityState;t&&(t.destroyObserver(),delete e._vue_visibilityState)}var v={bind:g,update:m,unbind:y};function b(e){e.directive(\"observe-visibility\",v)}var T={version:\"0.4.6\",install:b},_=null;\"undefined\"!==typeof window?_=window.Vue:\"undefined\"!==typeof e&&(_=e.Vue),_&&_.use(T)}).call(this,n(\"c8ba\"))},\"89ec\":function(e,t,n){},\"8b3c\":function(e,t,n){},\"8b7a\":function(e,t,n){\"use strict\";n(\"89ec\")},\"8d2d\":function(e,t,n){\"use strict\";var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"tutorial-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M0.933 6.067h3.733v1.867h-3.733v-1.867z\"}}),n(\"path\",{attrs:{d:\"M0.933 1.867h3.733v1.867h-3.733v-1.867z\"}}),n(\"path\",{attrs:{d:\"M13.067 1.867v10.267h-7.467v-10.267zM12.133 2.8h-5.6v8.4h5.6z\"}}),n(\"path\",{attrs:{d:\"M0.933 10.267h3.733v1.867h-3.733v-1.867z\"}})])},i=[],s=n(\"be08\"),r={name:\"TutorialIcon\",components:{SVGIcon:s[\"a\"]}},o=r,l=n(\"2877\"),c=Object(l[\"a\"])(o,a,i,!1,null,null,null);t[\"a\"]=c.exports},\"8d93\":function(e,t,n){\"use strict\";n(\"b059\")},9062:function(e,t,n){},\"918a\":function(e,t,n){\"use strict\";n(\"a2b5\")},\"927b\":function(e,t,n){},9792:function(e,t,n){},\"97a5\":function(e,t,n){\"use strict\";n(\"ec95\")},\"97c4\":function(e,t,n){},\"98e2\":function(e,t,n){},\"9a8a\":function(e,t,n){},\"9ac5\":function(e,t,n){\"use strict\";n(\"927b\")},\"9d1f\":function(e,t,n){\"use strict\";n(\"3e7c\")},\"9da8\":function(e,t,n){\"use strict\";n(\"0725\")},\"9dff\":function(e,t,n){},a20a:function(e,t,n){\"use strict\";n(\"a42c\")},a2b5:function(e,t,n){},a378:function(e,t,n){},a40c:function(e,t,n){\"use strict\";n(\"c33d\")},a42c:function(e,t,n){},a463:function(e,t,n){},a6c6:function(e,t,n){},a705:function(e,t,n){\"use strict\";n(\"6e90\")},a8a5:function(e,t,n){\"use strict\";n(\"4d12\")},a91f:function(e,t,n){\"use strict\";n(\"6c70\")},a9f1:function(e,t,n){\"use strict\";var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"article-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M8.033 1l3.967 4.015v7.985h-10v-12zM7.615 2h-4.615v10h8v-6.574z\"}}),n(\"path\",{attrs:{d:\"M7 1h1v4h-1z\"}}),n(\"path\",{attrs:{d:\"M7 5h5v1h-5z\"}})])},i=[],s=n(\"be08\"),r={name:\"ArticleIcon\",components:{SVGIcon:s[\"a\"]}},o=r,l=n(\"2877\"),c=Object(l[\"a\"])(o,a,i,!1,null,null,null);t[\"a\"]=c.exports},b059:function(e,t,n){},b0a0:function(e,t,n){},b13d:function(e,t,n){\"use strict\";n(\"4adf\")},b831:function(e,t,n){\"use strict\";n(\"533e\")},ba48:function(e,t,n){\"use strict\";n(\"e482\")},bcfb:function(e,t,n){\"use strict\";n(\"e4ea\")},be2a:function(e,t,n){\"use strict\";n(\"8464\")},c18a:function(e,t,n){\"use strict\";n(\"97c4\")},c33d:function(e,t,n){},c36f:function(e,t,n){\"use strict\";n(\"f8bd\")},c459:function(e,t,n){\"use strict\";n(\"a6c6\")},c4c1:function(e,t,n){},c875:function(e,t,n){\"use strict\";n(\"eecc\")},c8fe:function(e,t,n){\"use strict\";n(\"a463\")},c953:function(e,t,n){},dcf6:function(e,t,n){\"use strict\";n(\"2f04\")},e335:function(e,t,n){\"use strict\";n(\"9dff\")},e482:function(e,t,n){},e4ea:function(e,t,n){},e508:function(e,t,n){\"use strict\";(function(e){n.d(t,\"a\",(function(){return U})),n.d(t,\"b\",(function(){return D}));var a=n(\"252c\"),i=n(\"85fe\"),s=n(\"ed83\"),r=n.n(s),o=n(\"2b0e\"),l={itemsLimit:1e3};function c(e){return c=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},c(e)}function u(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function d(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function h(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?d(Object(n),!0).forEach((function(t){u(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):d(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function p(e,t){if(e){if(\"string\"===typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return\"Object\"===n&&e.constructor&&(n=e.constructor.name),\"Map\"===n||\"Set\"===n?Array.from(n):\"Arguments\"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(e,t):void 0}}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,a=new Array(t);n<t;n++)a[n]=e[n];return a}function g(e){if(\"undefined\"===typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(e=p(e))){var t=0,n=function(){};return{s:n,n:function(){return t>=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:n}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var a,i,s=!0,r=!1;return{s:function(){a=e[Symbol.iterator]()},n:function(){var e=a.next();return s=e.done,e},e:function(e){r=!0,i=e},f:function(){try{s||null==a.return||a.return()}finally{if(r)throw i}}}}var m={items:{type:Array,required:!0},keyField:{type:String,default:\"id\"},direction:{type:String,default:\"vertical\",validator:function(e){return[\"vertical\",\"horizontal\"].includes(e)}}};function y(){return this.items.length&&\"object\"!==c(this.items[0])}var v=!1;if(\"undefined\"!==typeof window){v=!1;try{var b=Object.defineProperty({},\"passive\",{get:function(){v=!0}});window.addEventListener(\"test\",null,b)}catch(J){}}var T=0,_={name:\"RecycleScroller\",components:{ResizeObserver:a[\"a\"]},directives:{ObserveVisibility:i[\"a\"]},props:h({},m,{itemSize:{type:Number,default:null},minItemSize:{type:[Number,String],default:null},sizeField:{type:String,default:\"size\"},typeField:{type:String,default:\"type\"},buffer:{type:Number,default:200},pageMode:{type:Boolean,default:!1},prerender:{type:Number,default:0},emitUpdate:{type:Boolean,default:!1}}),data:function(){return{pool:[],totalSize:0,ready:!1,hoverKey:null}},computed:{sizes:function(){if(null===this.itemSize){for(var e,t={\"-1\":{accumulator:0}},n=this.items,a=this.sizeField,i=this.minItemSize,s=1e4,r=0,o=0,l=n.length;o<l;o++)e=n[o][a]||i,e<s&&(s=e),r+=e,t[o]={accumulator:r,size:e};return this.$_computedMinItemSize=s,t}return[]},simpleArray:y},watch:{items:function(){this.updateVisibleItems(!0)},pageMode:function(){this.applyPageMode(),this.updateVisibleItems(!1)},sizes:{handler:function(){this.updateVisibleItems(!1)},deep:!0}},created:function(){this.$_startIndex=0,this.$_endIndex=0,this.$_views=new Map,this.$_unusedViews=new Map,this.$_scrollDirty=!1,this.$_lastUpdateScrollPosition=0,this.prerender&&(this.$_prerender=!0,this.updateVisibleItems(!1))},mounted:function(){var e=this;this.applyPageMode(),this.$nextTick((function(){e.$_prerender=!1,e.updateVisibleItems(!0),e.ready=!0}))},beforeDestroy:function(){this.removeListeners()},methods:{addView:function(e,t,n,a,i){var s={item:n,position:0},r={id:T++,index:t,used:!0,key:a,type:i};return Object.defineProperty(s,\"nr\",{configurable:!1,value:r}),e.push(s),s},unuseView:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=this.$_unusedViews,a=e.nr.type,i=n.get(a);i||(i=[],n.set(a,i)),i.push(e),t||(e.nr.used=!1,e.position=-9999,this.$_views.delete(e.nr.key))},handleResize:function(){this.$emit(\"resize\"),this.ready&&this.updateVisibleItems(!1)},handleScroll:function(e){var t=this;this.$_scrollDirty||(this.$_scrollDirty=!0,requestAnimationFrame((function(){t.$_scrollDirty=!1;var e=t.updateVisibleItems(!1,!0),n=e.continuous;n||(clearTimeout(t.$_refreshTimout),t.$_refreshTimout=setTimeout(t.handleScroll,100))})))},handleVisibilityChange:function(e,t){var n=this;this.ready&&(e||0!==t.boundingClientRect.width||0!==t.boundingClientRect.height?(this.$emit(\"visible\"),requestAnimationFrame((function(){n.updateVisibleItems(!1)}))):this.$emit(\"hidden\"))},updateVisibleItems:function(e){var t,n,a,i,s=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=this.itemSize,o=this.$_computedMinItemSize,c=this.typeField,u=this.simpleArray?null:this.keyField,d=this.items,h=d.length,p=this.sizes,f=this.$_views,g=this.$_unusedViews,m=this.pool;if(h)if(this.$_prerender)t=0,n=this.prerender,a=null;else{var y=this.getScroll();if(s){var v=y.start-this.$_lastUpdateScrollPosition;if(v<0&&(v=-v),null===r&&v<o||v<r)return{continuous:!0}}this.$_lastUpdateScrollPosition=y.start;var b=this.buffer;if(y.start-=b,y.end+=b,null===r){var T,_,C=0,S=h-1,k=~~(h/2);do{_=k,T=p[k].accumulator,T<y.start?C=k:k<h-1&&p[k+1].accumulator>y.start&&(S=k),k=~~((C+S)/2)}while(k!==_);for(k<0&&(k=0),t=k,a=p[h-1].accumulator,n=k;n<h&&p[n].accumulator<y.end;n++);-1===n?n=d.length-1:(n++,n>h&&(n=h))}else t=~~(y.start/r),n=Math.ceil(y.end/r),t<0&&(t=0),n>h&&(n=h),a=h*r}else t=n=a=0;n-t>l.itemsLimit&&this.itemsLimitError(),this.totalSize=a;var w=t<=this.$_endIndex&&n>=this.$_startIndex;if(this.$_continuous!==w){if(w){f.clear(),g.clear();for(var x=0,I=m.length;x<I;x++)i=m[x],this.unuseView(i)}this.$_continuous=w}else if(w)for(var O=0,$=m.length;O<$;O++)i=m[O],i.nr.used&&(e&&(i.nr.index=d.findIndex((function(e){return u?e[u]===i.item[u]:e===i.item}))),(-1===i.nr.index||i.nr.index<t||i.nr.index>=n)&&this.unuseView(i));for(var D,P,A,j,L=w?null:new Map,E=t;E<n;E++){D=d[E];var B=u?D[u]:D;if(null==B)throw new Error(\"Key is \".concat(B,\" on item (keyField is '\").concat(u,\"')\"));i=f.get(B),r||p[E].size?(i?(i.nr.used=!0,i.item=D):(P=D[c],A=g.get(P),w?A&&A.length?(i=A.pop(),i.item=D,i.nr.used=!0,i.nr.index=E,i.nr.key=B,i.nr.type=P):i=this.addView(m,E,D,B,P):(j=L.get(P)||0,(!A||j>=A.length)&&(i=this.addView(m,E,D,B,P),this.unuseView(i,!0),A=g.get(P)),i=A[j],i.item=D,i.nr.used=!0,i.nr.index=E,i.nr.key=B,i.nr.type=P,L.set(P,j+1),j++),f.set(B,i)),i.position=null===r?p[E-1].accumulator:E*r):i&&this.unuseView(i)}return this.$_startIndex=t,this.$_endIndex=n,this.emitUpdate&&this.$emit(\"update\",t,n),clearTimeout(this.$_sortTimer),this.$_sortTimer=setTimeout(this.sortViews,300),{continuous:w}},getListenerTarget:function(){var e=r()(this.$el);return!window.document||e!==window.document.documentElement&&e!==window.document.body||(e=window),e},getScroll:function(){var e,t=this.$el,n=this.direction,a=\"vertical\"===n;if(this.pageMode){var i=t.getBoundingClientRect(),s=a?i.height:i.width,r=-(a?i.top:i.left),o=a?window.innerHeight:window.innerWidth;r<0&&(o+=r,r=0),r+o>s&&(o=s-r),e={start:r,end:r+o}}else e=a?{start:t.scrollTop,end:t.scrollTop+t.clientHeight}:{start:t.scrollLeft,end:t.scrollLeft+t.clientWidth};return e},applyPageMode:function(){this.pageMode?this.addListeners():this.removeListeners()},addListeners:function(){this.listenerTarget=this.getListenerTarget(),this.listenerTarget.addEventListener(\"scroll\",this.handleScroll,!!v&&{passive:!0}),this.listenerTarget.addEventListener(\"resize\",this.handleResize)},removeListeners:function(){this.listenerTarget&&(this.listenerTarget.removeEventListener(\"scroll\",this.handleScroll),this.listenerTarget.removeEventListener(\"resize\",this.handleResize),this.listenerTarget=null)},scrollToItem:function(e){var t;t=null===this.itemSize?e>0?this.sizes[e-1].accumulator:0:e*this.itemSize,this.scrollToPosition(t)},scrollToPosition:function(e){\"vertical\"===this.direction?this.$el.scrollTop=e:this.$el.scrollLeft=e},itemsLimitError:function(){var e=this;throw setTimeout((function(){console.log(\"It seems the scroller element isn't scrolling, so it tries to render all the items at once.\",\"Scroller:\",e.$el),console.log(\"Make sure the scroller has a fixed height (or width) and 'overflow-y' (or 'overflow-x') set to 'auto' so it can scroll correctly and only render the items visible in the scroll viewport.\")})),new Error(\"Rendered items limit reached\")},sortViews:function(){this.pool.sort((function(e,t){return e.nr.index-t.nr.index}))}}};function C(e,t,n,a,i,s,r,o,l,c){\"boolean\"!==typeof r&&(l=o,o=r,r=!1);const u=\"function\"===typeof n?n.options:n;let d;if(e&&e.render&&(u.render=e.render,u.staticRenderFns=e.staticRenderFns,u._compiled=!0,i&&(u.functional=!0)),a&&(u._scopeId=a),s?(d=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||\"undefined\"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),t&&t.call(this,l(e)),e&&e._registeredComponents&&e._registeredComponents.add(s)},u._ssrRegister=d):t&&(d=r?function(e){t.call(this,c(e,this.$root.$options.shadowRoot))}:function(e){t.call(this,o(e))}),d)if(u.functional){const e=u.render;u.render=function(t,n){return d.call(n),e(t,n)}}else{const e=u.beforeCreate;u.beforeCreate=e?[].concat(e,d):[d]}return n}const S=_;var k=function(){var e,t,n=this,a=n.$createElement,i=n._self._c||a;return i(\"div\",{directives:[{name:\"observe-visibility\",rawName:\"v-observe-visibility\",value:n.handleVisibilityChange,expression:\"handleVisibilityChange\"}],staticClass:\"vue-recycle-scroller\",class:(e={ready:n.ready,\"page-mode\":n.pageMode},e[\"direction-\"+n.direction]=!0,e),on:{\"&scroll\":function(e){return n.handleScroll(e)}}},[n.$slots.before?i(\"div\",{staticClass:\"vue-recycle-scroller__slot\"},[n._t(\"before\")],2):n._e(),n._v(\" \"),i(\"div\",{ref:\"wrapper\",staticClass:\"vue-recycle-scroller__item-wrapper\",style:(t={},t[\"vertical\"===n.direction?\"minHeight\":\"minWidth\"]=n.totalSize+\"px\",t)},n._l(n.pool,(function(e){return i(\"div\",{key:e.nr.id,staticClass:\"vue-recycle-scroller__item-view\",class:{hover:n.hoverKey===e.nr.key},style:n.ready?{transform:\"translate\"+(\"vertical\"===n.direction?\"Y\":\"X\")+\"(\"+e.position+\"px)\"}:null,on:{mouseenter:function(t){n.hoverKey=e.nr.key},mouseleave:function(e){n.hoverKey=null}}},[n._t(\"default\",null,{item:e.item,index:e.nr.index,active:e.nr.used})],2)})),0),n._v(\" \"),n.$slots.after?i(\"div\",{staticClass:\"vue-recycle-scroller__slot\"},[n._t(\"after\")],2):n._e(),n._v(\" \"),i(\"ResizeObserver\",{on:{notify:n.handleResize}})],1)},w=[];k._withStripped=!0;const x=void 0,I=void 0,O=void 0,$=!1,D=C({render:k,staticRenderFns:w},x,S,I,$,O,!1,void 0,void 0,void 0);var P={name:\"DynamicScroller\",components:{RecycleScroller:D},inheritAttrs:!1,provide:function(){return\"undefined\"!==typeof ResizeObserver&&(this.$_resizeObserver=new ResizeObserver((function(e){var t,n=g(e);try{for(n.s();!(t=n.n()).done;){var a=t.value;if(a.target){var i=new CustomEvent(\"resize\",{detail:{contentRect:a.contentRect}});a.target.dispatchEvent(i)}}}catch(s){n.e(s)}finally{n.f()}}))),{vscrollData:this.vscrollData,vscrollParent:this,vscrollResizeObserver:this.$_resizeObserver}},props:h({},m,{minItemSize:{type:[Number,String],required:!0}}),data:function(){return{vscrollData:{active:!0,sizes:{},validSizes:{},keyField:this.keyField,simpleArray:!1}}},computed:{simpleArray:y,itemsWithSize:function(){for(var e=[],t=this.items,n=this.keyField,a=this.simpleArray,i=this.vscrollData.sizes,s=0;s<t.length;s++){var r=t[s],o=a?s:r[n],l=i[o];\"undefined\"!==typeof l||this.$_undefinedMap[o]||(l=0),e.push({item:r,id:o,size:l})}return e},listeners:function(){var e={};for(var t in this.$listeners)\"resize\"!==t&&\"visible\"!==t&&(e[t]=this.$listeners[t]);return e}},watch:{items:function(){this.forceUpdate(!1)},simpleArray:{handler:function(e){this.vscrollData.simpleArray=e},immediate:!0},direction:function(e){this.forceUpdate(!0)}},created:function(){this.$_updates=[],this.$_undefinedSizes=0,this.$_undefinedMap={}},activated:function(){this.vscrollData.active=!0},deactivated:function(){this.vscrollData.active=!1},methods:{onScrollerResize:function(){var e=this.$refs.scroller;e&&this.forceUpdate(),this.$emit(\"resize\")},onScrollerVisible:function(){this.$emit(\"vscroll:update\",{force:!1}),this.$emit(\"visible\")},forceUpdate:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];(e||this.simpleArray)&&(this.vscrollData.validSizes={}),this.$emit(\"vscroll:update\",{force:!0})},scrollToItem:function(e){var t=this.$refs.scroller;t&&t.scrollToItem(e)},getItemSize:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0,n=this.simpleArray?null!=t?t:this.items.indexOf(e):e[this.keyField];return this.vscrollData.sizes[n]||0},scrollToBottom:function(){var e=this;if(!this.$_scrollingToBottom){this.$_scrollingToBottom=!0;var t=this.$el;this.$nextTick((function(){t.scrollTop=t.scrollHeight+5e3;var n=function n(){t.scrollTop=t.scrollHeight+5e3,requestAnimationFrame((function(){t.scrollTop=t.scrollHeight+5e3,0===e.$_undefinedSizes?e.$_scrollingToBottom=!1:requestAnimationFrame(n)}))};requestAnimationFrame(n)}))}}}};const A=P;var j=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"RecycleScroller\",e._g(e._b({ref:\"scroller\",attrs:{items:e.itemsWithSize,\"min-item-size\":e.minItemSize,direction:e.direction,\"key-field\":\"id\"},on:{resize:e.onScrollerResize,visible:e.onScrollerVisible},scopedSlots:e._u([{key:\"default\",fn:function(t){var n=t.item,a=t.index,i=t.active;return[e._t(\"default\",null,null,{item:n.item,index:a,active:i,itemWithSize:n})]}}],null,!0)},\"RecycleScroller\",e.$attrs,!1),e.listeners),[e._v(\" \"),n(\"template\",{slot:\"before\"},[e._t(\"before\")],2),e._v(\" \"),n(\"template\",{slot:\"after\"},[e._t(\"after\")],2)],2)},L=[];j._withStripped=!0;const E=void 0,B=void 0,R=void 0,N=!1,z=C({render:j,staticRenderFns:L},E,A,B,N,R,!1,void 0,void 0,void 0);var M={name:\"DynamicScrollerItem\",inject:[\"vscrollData\",\"vscrollParent\",\"vscrollResizeObserver\"],props:{item:{required:!0},watchData:{type:Boolean,default:!1},active:{type:Boolean,required:!0},index:{type:Number,default:void 0},sizeDependencies:{type:[Array,Object],default:null},emitResize:{type:Boolean,default:!1},tag:{type:String,default:\"div\"}},computed:{id:function(){return this.vscrollData.simpleArray?this.index:this.item[this.vscrollData.keyField]},size:function(){return this.vscrollData.validSizes[this.id]&&this.vscrollData.sizes[this.id]||0},finalActive:function(){return this.active&&this.vscrollData.active}},watch:{watchData:\"updateWatchData\",id:function(){this.size||this.onDataUpdate()},finalActive:function(e){this.size||(e?this.vscrollParent.$_undefinedMap[this.id]||(this.vscrollParent.$_undefinedSizes++,this.vscrollParent.$_undefinedMap[this.id]=!0):this.vscrollParent.$_undefinedMap[this.id]&&(this.vscrollParent.$_undefinedSizes--,this.vscrollParent.$_undefinedMap[this.id]=!1)),this.vscrollResizeObserver?e?this.observeSize():this.unobserveSize():e&&this.$_pendingVScrollUpdate===this.id&&this.updateSize()}},created:function(){var e=this;if(!this.$isServer&&(this.$_forceNextVScrollUpdate=null,this.updateWatchData(),!this.vscrollResizeObserver)){var t=function(t){e.$watch((function(){return e.sizeDependencies[t]}),e.onDataUpdate)};for(var n in this.sizeDependencies)t(n);this.vscrollParent.$on(\"vscroll:update\",this.onVscrollUpdate),this.vscrollParent.$on(\"vscroll:update-size\",this.onVscrollUpdateSize)}},mounted:function(){this.vscrollData.active&&(this.updateSize(),this.observeSize())},beforeDestroy:function(){this.vscrollParent.$off(\"vscroll:update\",this.onVscrollUpdate),this.vscrollParent.$off(\"vscroll:update-size\",this.onVscrollUpdateSize),this.unobserveSize()},methods:{updateSize:function(){this.finalActive?this.$_pendingSizeUpdate!==this.id&&(this.$_pendingSizeUpdate=this.id,this.$_forceNextVScrollUpdate=null,this.$_pendingVScrollUpdate=null,this.computeSize(this.id)):this.$_forceNextVScrollUpdate=this.id},updateWatchData:function(){var e=this;this.watchData?this.$_watchData=this.$watch(\"data\",(function(){e.onDataUpdate()}),{deep:!0}):this.$_watchData&&(this.$_watchData(),this.$_watchData=null)},onVscrollUpdate:function(e){var t=e.force;!this.finalActive&&t&&(this.$_pendingVScrollUpdate=this.id),this.$_forceNextVScrollUpdate!==this.id&&!t&&this.size||this.updateSize()},onDataUpdate:function(){this.updateSize()},computeSize:function(e){var t=this;this.$nextTick((function(){if(t.id===e){var n=t.$el.offsetWidth,a=t.$el.offsetHeight;t.applySize(n,a)}t.$_pendingSizeUpdate=null}))},applySize:function(e,t){var n=Math.round(\"vertical\"===this.vscrollParent.direction?t:e);n&&this.size!==n&&(this.vscrollParent.$_undefinedMap[this.id]&&(this.vscrollParent.$_undefinedSizes--,this.vscrollParent.$_undefinedMap[this.id]=void 0),this.$set(this.vscrollData.sizes,this.id,n),this.$set(this.vscrollData.validSizes,this.id,!0),this.emitResize&&this.$emit(\"resize\",this.id))},observeSize:function(){this.vscrollResizeObserver&&(this.vscrollResizeObserver.observe(this.$el.parentNode),this.$el.parentNode.addEventListener(\"resize\",this.onResize))},unobserveSize:function(){this.vscrollResizeObserver&&(this.vscrollResizeObserver.unobserve(this.$el.parentNode),this.$el.parentNode.removeEventListener(\"resize\",this.onResize))},onResize:function(e){var t=e.detail.contentRect,n=t.width,a=t.height;this.applySize(n,a)}},render:function(e){return e(this.tag,this.$slots.default)}};const K=M,q=void 0,F=void 0,V=void 0,H=void 0,W=C({},q,K,F,H,V,!1,void 0,void 0,void 0);function U(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.idProp,n=void 0===t?function(e){return e.item.id}:t,a={},i=new o[\"default\"]({data:function(){return{store:a}}});return{data:function(){return{idState:null}},created:function(){var e=this;this.$_id=null,this.$_getId=\"function\"===typeof n?function(){return n.call(e,e)}:function(){return e[n]},this.$watch(this.$_getId,{handler:function(e){var t=this;this.$nextTick((function(){t.$_id=e}))},immediate:!0}),this.$_updateIdState()},beforeUpdate:function(){this.$_updateIdState()},methods:{$_idStateInit:function(e){var t=this.$options.idState;if(\"function\"===typeof t){var n=t.call(this,this);return i.$set(a,e,n),this.$_id=e,n}throw new Error(\"[mixin IdState] Missing `idState` function on component definition.\")},$_updateIdState:function(){var e=this.$_getId();null==e&&console.warn(\"No id found for IdState with idProp: '\".concat(n,\"'.\")),e!==this.$_id&&(a[e]||this.$_idStateInit(e),this.idState=a[e])}}}}function G(e,t){e.component(\"\".concat(t,\"recycle-scroller\"),D),e.component(\"\".concat(t,\"RecycleScroller\"),D),e.component(\"\".concat(t,\"dynamic-scroller\"),z),e.component(\"\".concat(t,\"DynamicScroller\"),z),e.component(\"\".concat(t,\"dynamic-scroller-item\"),W),e.component(\"\".concat(t,\"DynamicScrollerItem\"),W)}var X={version:\"1.0.10\",install:function(e,t){var n=Object.assign({},{installComponents:!0,componentsPrefix:\"\"},t);for(var a in n)\"undefined\"!==typeof n[a]&&(l[a]=n[a]);n.installComponents&&G(e,n.componentsPrefix)}},Y=null;\"undefined\"!==typeof window?Y=window.Vue:\"undefined\"!==typeof e&&(Y=e.Vue),Y&&Y.use(X)}).call(this,n(\"c8ba\"))},e6b8:function(e,t,n){\"use strict\";n(\"9062\")},e81c:function(e,t,n){},ec60:function(e,t,n){},ec95:function(e,t,n){},ed83:function(e,t,n){var a,i,s;(function(n,r){i=[],a=r,s=\"function\"===typeof a?a.apply(t,i):a,void 0===s||(e.exports=s)})(0,(function(){var e=/(auto|scroll)/,t=function(e,n){return null===e.parentNode?n:t(e.parentNode,n.concat([e]))},n=function(e,t){return getComputedStyle(e,null).getPropertyValue(t)},a=function(e){return n(e,\"overflow\")+n(e,\"overflow-y\")+n(e,\"overflow-x\")},i=function(t){return e.test(a(t))},s=function(e){if(e instanceof HTMLElement||e instanceof SVGElement){for(var n=t(e.parentNode,[]),a=0;a<n.length;a+=1)if(i(n[a]))return n[a];return document.scrollingElement||document.documentElement}};return s}))},ede5:function(e,t,n){\"use strict\";n(\"f679\")},eecc:function(e,t,n){},f0dd:function(e,t,n){},f0ff:function(e,t,n){},f158:function(e,t,n){\"use strict\";n(\"7625\")},f679:function(e,t,n){},f7c0:function(e,t,n){\"use strict\";n(\"22f6\")},f8ac:function(e,t,n){\"use strict\";n.r(t);var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"CodeTheme\",{staticClass:\"doc-topic-view\"},[e.topicData?[e.isTargetIDE?e._e():n(\"Nav\",{attrs:{title:e.topicProps.title,diffAvailability:e.topicProps.diffAvailability,interfaceLanguage:e.topicProps.interfaceLanguage,objcPath:e.objcPath,swiftPath:e.swiftPath,parentTopicIdentifiers:e.parentTopicIdentifiers,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,currentTopicTags:e.topicProps.tags,references:e.topicProps.references,isWideFormat:e.enableNavigator},on:{\"toggle-sidenav\":function(t){e.isSideNavOpen=!e.isSideNavOpen}}}),n(e.enableNavigator?\"AdjustableSidebarWidth\":\"div\",e._g(e._b({tag:\"component\",scopedSlots:e._u([{key:\"aside\",fn:function(t){var a=t.scrollLockID,i=t.breakpoint;return[n(\"div\",{staticClass:\"doc-topic-aside\"},[n(\"NavigatorDataProvider\",{attrs:{\"interface-language\":e.topicProps.interfaceLanguage,technology:e.technology,\"api-changes-version\":e.store.state.selectedAPIChangesVersion},scopedSlots:e._u([{key:\"default\",fn:function(t){return[n(\"transition\",{attrs:{name:\"delay-hiding\"}},[n(\"Navigator\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.isSideNavOpen||i===e.BreakpointName.large,expression:\"isSideNavOpen || breakpoint === BreakpointName.large\"}],attrs:{\"parent-topic-identifiers\":e.parentTopicIdentifiers,technology:t.technology||e.technology,\"is-fetching\":t.isFetching,\"error-fetching\":t.errorFetching,\"api-changes\":t.apiChanges,references:e.topicProps.references,scrollLockID:a,breakpoint:i},on:{close:function(t){e.isSideNavOpen=!1}}})],1)]}}],null,!0)})],1)]}}],null,!1,4047707569)},\"component\",e.sidebarProps,!1),e.sidebarListeners),[n(\"Topic\",e._b({key:e.topicKey,attrs:{objcPath:e.objcPath,swiftPath:e.swiftPath,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,languagePaths:e.languagePaths}},\"Topic\",e.topicProps,!1))],1)]:e._e()],2)},i=[];const s=\"/\";function r(e){return e.replace(/~[0,1]/g,e=>({\"~0\":\"~\",\"~1\":\"/\"}[e]||e))}function*o(e){const t=1;if(e.length<t||e.charAt(0)!==s)return;let n=\"\",a=t;while(a<e.length){const t=e.charAt(a);t===s?(yield r(n),n=\"\"):n+=t,a+=1}yield r(n)}const l=10,c=\"-\",u=\"object\";class d extends Error{constructor(e){super(\"invalid pointer \"+e),this.pointer=e}}function h(e,{length:t}){if(e===c)return t||0;const n=parseInt(e,l);if(!Number.isInteger(n)||n>t)throw new Error(\"invalid array index \"+e);return n}function*p(e,t,n={strict:!1}){let a=e;for(const i of o(t)){if(n.strict&&!Object.prototype.hasOwnProperty.call(a,i))throw new d(t);a=a[i],yield{node:a,token:i}}}function f(e,t){let n=e;for(const{node:a}of p(e,t,{strict:!0}))n=a;return n}function g(e,t,n){let a=null,i=e,s=null;for(const{node:o,token:l}of p(e,t))a=i,i=o,s=l;if(!a)throw new d(t);if(Array.isArray(a))try{const e=h(s,a);a.splice(e,0,n)}catch(r){throw new d(t)}else Object.assign(a,{[s]:n});return e}function m(e,t){let n=null,a=e,i=null;for(const{node:r,token:o}of p(e,t))n=a,a=r,i=o;if(!n)throw new d(t);if(Array.isArray(n))try{const e=h(i,n);n.splice(e,1)}catch(s){throw new d(t)}else{if(!a)throw new d(t);delete n[i]}return e}function y(e,t,n){return m(e,t),g(e,t,n),e}function v(e,t,n){const a=f(e,t);return m(e,t),g(e,n,a),e}function b(e,t,n){return g(e,n,f(e,t)),e}function T(e,t,n){function a(e,t){const n=typeof e,i=typeof t;if(n!==i)return!1;switch(n){case u:{const n=Object.keys(e),i=Object.keys(t);return n.length===i.length&&n.every((n,s)=>n===i[s]&&a(e[n],t[n]))}default:return e===t}}const i=f(e,t);if(!a(n,i))throw new Error(\"test failed\");return e}const _={add:(e,{path:t,value:n})=>g(e,t,n),copy:(e,{from:t,path:n})=>b(e,t,n),move:(e,{from:t,path:n})=>v(e,t,n),remove:(e,{path:t})=>m(e,t),replace:(e,{path:t,value:n})=>y(e,t,n),test:(e,{path:t,value:n})=>T(e,t,n)};function C(e,{op:t,...n}){const a=_[t];if(!a)throw new Error(\"unknown operation\");return a(e,n)}function S(e,t){return t.reduce(C,e)}var k=n(\"66cd\"),w=n(\"25a9\"),x=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"doc-topic\"},[n(\"main\",{staticClass:\"main\",attrs:{id:\"main\",role:\"main\",tabindex:\"0\"}},[n(\"DocumentationHero\",{attrs:{role:e.role,enhanceBackground:e.enhanceBackground,shortHero:e.shortHero,shouldShowLanguageSwitcher:e.shouldShowLanguageSwitcher},scopedSlots:e._u([{key:\"above-content\",fn:function(){return[e._t(\"above-hero-content\")]},proxy:!0}],null,!0)},[e._t(\"above-title\"),e.shouldShowLanguageSwitcher?n(\"LanguageSwitcher\",{attrs:{interfaceLanguage:e.interfaceLanguage,objcPath:e.objcPath,swiftPath:e.swiftPath}}):e._e(),n(\"Title\",{attrs:{eyebrow:e.roleHeading}},[n(e.titleBreakComponent,{tag:\"component\"},[e._v(e._s(e.title))]),e.isSymbolDeprecated||e.isSymbolBeta?n(\"small\",{class:e.tagName,attrs:{slot:\"after\",\"data-tag-name\":e.tagName},slot:\"after\"}):e._e()],1),e.abstract?n(\"Abstract\",{attrs:{content:e.abstract}}):e._e(),e.sampleCodeDownload?n(\"div\",[n(\"DownloadButton\",{staticClass:\"sample-download\",attrs:{action:e.sampleCodeDownload.action}})],1):e._e(),e.hasAvailability?n(\"Availability\",{attrs:{platforms:e.platforms,technologies:e.technologies}}):e._e()],2),e.showContainer?n(\"div\",{staticClass:\"container\"},[n(\"div\",{staticClass:\"description\",class:{\"after-enhanced-hero\":e.enhanceBackground}},[e.isRequirement?n(\"RequirementMetadata\",{attrs:{defaultImplementationsCount:e.defaultImplementationsCount}}):e._e(),e.deprecationSummary&&e.deprecationSummary.length?n(\"Aside\",{attrs:{kind:\"deprecated\"}},[n(\"ContentNode\",{attrs:{content:e.deprecationSummary}})],1):e._e(),e.downloadNotAvailableSummary&&e.downloadNotAvailableSummary.length?n(\"Aside\",{attrs:{kind:\"note\"}},[n(\"ContentNode\",{attrs:{content:e.downloadNotAvailableSummary}})],1):e._e()],1),e.primaryContentSections&&e.primaryContentSections.length?n(\"PrimaryContent\",{class:{\"with-border\":!e.enhanceBackground},attrs:{conformance:e.conformance,sections:e.primaryContentSections}}):e._e()],1):e._e(),e.topicSections?n(\"Topics\",{attrs:{sections:e.topicSections,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta}}):e._e(),e.defaultImplementationsSections?n(\"DefaultImplementations\",{attrs:{sections:e.defaultImplementationsSections,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta}}):e._e(),e.relationshipsSections?n(\"Relationships\",{attrs:{sections:e.relationshipsSections}}):e._e(),e.seeAlsoSections?n(\"SeeAlso\",{attrs:{sections:e.seeAlsoSections}}):e._e(),!e.isTargetIDE&&e.hasBetaContent?n(\"BetaLegalText\"):e._e()],1),n(\"div\",{staticClass:\"visuallyhidden\",attrs:{\"aria-live\":\"polite\"}},[e._v(\" Current page is \"+e._s(e.pageTitle)+\" \")])])},I=[],O=n(\"8649\"),$=n(\"bf08\"),D=n(\"e3ab\"),P=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"betainfo\"},[n(\"div\",{staticClass:\"betainfo-container\"},[n(\"GridRow\",[n(\"GridColumn\",{attrs:{span:{large:12}}},[n(\"p\",{staticClass:\"betainfo-label\"},[e._v(\"Beta Software\")]),n(\"div\",{staticClass:\"betainfo-content\"},[e._t(\"content\",(function(){return[n(\"p\",[e._v(\"This documentation refers to beta software and may be changed.\")])]}))],2),e._t(\"after\")],2)],1)],1)])},A=[],j=n(\"0f00\"),L=n(\"620a\"),E={name:\"BetaLegalText\",components:{GridColumn:L[\"a\"],GridRow:j[\"a\"]}},B=E,R=(n(\"fb6d\"),n(\"2877\")),N=Object(R[\"a\"])(B,P,A,!1,null,\"fe7602da\",null),z=N.exports,M=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"Section\",{staticClass:\"language\",attrs:{role:\"complementary\",\"aria-label\":\"Language\"}},[n(\"Title\",[e._v(\"Language: \")]),n(\"div\",{staticClass:\"language-list\"},[n(\"LanguageSwitcherLink\",{staticClass:\"language-option swift\",class:{active:e.swift.active},attrs:{url:e.swift.active?null:e.swift.url},on:{click:function(t){return e.chooseLanguage(e.swift)}}},[e._v(\" \"+e._s(e.swift.name)+\" \")]),n(\"LanguageSwitcherLink\",{staticClass:\"language-option objc\",class:{active:e.objc.active},attrs:{url:e.objc.active?null:e.objc.url},on:{click:function(t){return e.chooseLanguage(e.objc)}}},[e._v(\" \"+e._s(e.objc.name)+\" \")])],1)],1)},K=[],q=n(\"d26a\"),F=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.url?n(\"a\",{attrs:{href:e.url},on:{click:function(t){return t.preventDefault(),e.$emit(\"click\")}}},[e._t(\"default\")],2):n(\"span\",[e._t(\"default\")],2)},V=[],H={name:\"LanguageSwitcherLink\",props:{url:[String,Object]}},W=H,U=Object(R[\"a\"])(W,F,V,!1,null,null,null),G=U.exports,X=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"summary-section\"},[e._t(\"default\")],2)},Y=[],J={name:\"Section\"},Q=J,Z=(n(\"1347\"),Object(R[\"a\"])(Q,X,Y,!1,null,\"3aa6f694\",null)),ee=Z.exports,te=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"p\",{staticClass:\"title\"},[e._t(\"default\")],2)},ne=[],ae={name:\"Title\"},ie=ae,se=(n(\"ede5\"),Object(R[\"a\"])(ie,te,ne,!1,null,\"6796f6ea\",null)),re=se.exports,oe={name:\"LanguageSwitcher\",components:{LanguageSwitcherLink:G,Section:ee,Title:re},inject:{isTargetIDE:{default:()=>!1},store:{default(){return{setPreferredLanguage(){}}}}},props:{interfaceLanguage:{type:String,required:!0},objcPath:{type:String,required:!0},swiftPath:{type:String,required:!0}},computed:{objc:({interfaceLanguage:e,normalizePath:t,objcPath:n,$route:{query:a}})=>({...O[\"a\"].objectiveC,active:O[\"a\"].objectiveC.key.api===e,url:Object(q[\"b\"])(t(n),{...a,language:O[\"a\"].objectiveC.key.url})}),swift:({interfaceLanguage:e,normalizePath:t,swiftPath:n,$route:{query:a}})=>({...O[\"a\"].swift,active:O[\"a\"].swift.key.api===e,url:Object(q[\"b\"])(t(n),{...a,language:void 0})})},methods:{chooseLanguage(e){this.isTargetIDE||this.store.setPreferredLanguage(e.key.url),this.$router.push(e.url)},normalizePath(e){return e.startsWith(\"/\")?e:\"/\"+e}}},le=oe,ce=(n(\"4539\"),Object(R[\"a\"])(le,M,K,!1,null,\"0de98d61\",null)),ue=ce.exports,de=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{class:[\"documentation-hero\",{\"documentation-hero--disabled\":!e.enhanceBackground,\"theme-dark\":e.enhanceBackground}],style:e.styles},[n(\"div\",{staticClass:\"icon\"},[e.enhanceBackground?n(\"NavigatorLeafIcon\",{key:\"first\",staticClass:\"background-icon first-icon\",attrs:{type:e.type,\"with-colors\":\"\"}}):e._e()],1),n(\"div\",{staticClass:\"documentation-hero__above-content\"},[e._t(\"above-content\")],2),n(\"div\",{staticClass:\"documentation-hero__content\",class:{\"short-hero\":e.shortHero,\"extra-bottom-padding\":e.shouldShowLanguageSwitcher}},[e._t(\"default\")],2)])},he=[],pe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"NavigatorLeafIcon\"},[n(e.icon,e._b({tag:\"component\",staticClass:\"icon-inline\",style:e.styles},\"component\",e.iconProps,!1))],1)},fe=[],ge=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M0 0.948h2.8v2.8h-2.8z\"}}),n(\"path\",{attrs:{d:\"M11.2 10.252h2.8v2.8h-2.8z\"}}),n(\"path\",{attrs:{d:\"M6.533 1.852h0.933v10.267h-0.933z\"}}),n(\"path\",{attrs:{d:\"M2.8 1.852h4.667v0.933h-4.667z\"}}),n(\"path\",{attrs:{d:\"M6.533 11.186h4.667v0.933h-4.667z\"}})])},me=[],ye=n(\"be08\"),ve={name:\"PathIcon\",components:{SVGIcon:ye[\"a\"]}},be=ve,Te=Object(R[\"a\"])(be,ge,me,!1,null,null,null),_e=Te.exports,Ce=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"technology-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M3.39,9l3.16,1.84.47.28.47-.28L10.61,9l.45.26,1.08.63L7,12.91l-5.16-3,1.08-.64L3.39,9M7,0,0,4.1,2.47,5.55,0,7,2.47,8.44,0,9.9,7,14l7-4.1L11.53,8.45,14,7,11.53,5.56,14,4.1ZM7,7.12,5.87,6.45l-1.54-.9L3.39,5,1.85,4.1,7,1.08l5.17,3L10.6,5l-.93.55-1.54.91ZM7,10,3.39,7.9,1.85,7,3.4,6.09,4.94,7,7,8.2,9.06,7,10.6,6.1,12.15,7l-1.55.9Z\"}})])},Se=[],ke={name:\"TechnologyIcon\",components:{SVGIcon:ye[\"a\"]}},we=ke,xe=Object(R[\"a\"])(we,Ce,Se,!1,null,null,null),Ie=xe.exports,Oe=n(\"a9f1\"),$e=n(\"8d2d\"),De=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{attrs:{viewBox:\"0 0 14 14\",height:\"14\"}},[n(\"path\",{attrs:{d:\"M13 1v12h-12v-12zM12.077 1.923h-10.154v10.154h10.154z\"}}),n(\"path\",{attrs:{d:\"M5.191 9.529c0.044 0.002 0.089 0.004 0.133 0.004 0.108 0 0.196-0.025 0.262-0.074s0.122-0.113 0.166-0.188c0.044-0.077 0.078-0.159 0.103-0.247s0.049-0.173 0.074-0.251l0.598-2.186h-0.709l0.207-0.702h0.702l0.288-1.086c0.083-0.384 0.256-0.667 0.517-0.849s0.591-0.273 0.99-0.273c0.108 0 0.212 0.007 0.314 0.022s0.203 0.027 0.306 0.037l-0.207 0.761c-0.054-0.006-0.106-0.011-0.155-0.018s-0.102-0.011-0.155-0.011c-0.108 0-0.196 0.016-0.262 0.048s-0.122 0.075-0.166 0.129-0.080 0.115-0.107 0.185c-0.028 0.068-0.055 0.14-0.085 0.214l-0.222 0.842h0.768l-0.192 0.702h-0.783l-0.628 2.319c-0.059 0.222-0.129 0.419-0.21 0.594s-0.182 0.322-0.303 0.443-0.269 0.214-0.443 0.281-0.385 0.1-0.631 0.1c-0.084 0-0.168-0.004-0.251-0.011s-0.168-0.014-0.251-0.018l0.207-0.768c0.040 0 0.081 0.001 0.126 0.004z\"}})])},Pe=[],Ae={name:\"TopicFuncIcon\",components:{SVGIcon:ye[\"a\"]}},je=Ae,Le=Object(R[\"a\"])(je,De,Pe,!1,null,null,null),Ee=Le.exports,Be=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"collection-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"m1 1v12h12v-12zm11 11h-10v-10h10z\"}}),n(\"path\",{attrs:{d:\"m3 4h8v1h-8zm0 2.5h8v1h-8zm0 2.5h8v1h-8z\"}}),n(\"path\",{attrs:{d:\"m3 4h8v1h-8z\"}}),n(\"path\",{attrs:{d:\"m3 6.5h8v1h-8z\"}}),n(\"path\",{attrs:{d:\"m3 9h8v1h-8z\"}})])},Re=[],Ne={name:\"CollectionIcon\",components:{SVGIcon:ye[\"a\"]}},ze=Ne,Me=Object(R[\"a\"])(ze,Be,Re,!1,null,null,null),Ke=Me.exports,qe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{attrs:{viewBox:\"0 0 14 14\",height:\"14\"}},[n(\"path\",{attrs:{d:\"M13 13h-12v-12h12zM1.923 12.077h10.154v-10.154h-10.154z\"}}),n(\"path\",{attrs:{d:\"M5.098 4.968v-1.477h-0.738v1.477h-1.477v0.738h1.477v1.477h0.738v-1.477h1.477v-0.738z\"}}),n(\"path\",{attrs:{d:\"M8.030 4.807l-2.031 5.538h0.831l2.031-5.538z\"}}),n(\"path\",{attrs:{d:\"M8.894 8.805v0.923h2.215v-0.923z\"}})])},Fe=[],Ve={name:\"TopicFuncOpIcon\",components:{SVGIcon:ye[\"a\"]}},He=Ve,We=Object(R[\"a\"])(He,qe,Fe,!1,null,null,null),Ue=We.exports,Ge=n(\"3b96\"),Xe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{attrs:{viewBox:\"0 0 14 14\",height:\"14\"}},[n(\"path\",{attrs:{d:\"M13 13h-12v-12h12zM1.923 12.077h10.154v-10.154h-10.154z\"}}),n(\"path\",{attrs:{d:\"M4.133 3.633v6.738h1.938v-0.831h-0.923v-5.077h0.923v-0.831z\"}}),n(\"path\",{attrs:{d:\"M9.856 10.371v-6.738h-1.938v0.831h0.923v5.077h-0.923v0.831z\"}})])},Ye=[],Je={name:\"TopicSubscriptIcon\",components:{SVGIcon:ye[\"a\"]}},Qe=Je,Ze=Object(R[\"a\"])(Qe,Xe,Ye,!1,null,null,null),et=Ze.exports,tt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"two-letter-icon\",attrs:{width:\"16px\",height:\"16px\",viewBox:\"0 0 16 16\"}},[n(\"g\",{attrs:{stroke:\"none\",\"stroke-width\":\"1\",fill:\"none\",\"fill-rule\":\"evenodd\"}},[n(\"g\",{attrs:{transform:\"translate(1.000000, 1.000000)\"}},[n(\"rect\",{attrs:{stroke:\"currentColor\",x:\"0.5\",y:\"0.5\",width:\"13\",height:\"13\"}}),n(\"text\",{attrs:{\"font-size\":\"8\",\"font-weight\":\"bold\",fill:\"currentColor\"}},[n(\"tspan\",{attrs:{x:\"9.08984375\",y:\"11\"}},[e._v(e._s(e.second))])]),n(\"text\",{attrs:{\"font-size\":\"11\",\"font-weight\":\"bold\",fill:\"currentColor\"}},[n(\"tspan\",{attrs:{x:\"2\",y:\"11\"}},[e._v(e._s(e.first))])])])])])},nt=[],at={name:\"TwoLetterSymbolIcon\",components:{SVGIcon:ye[\"a\"]},props:{first:{type:String,required:!0},second:{type:String,required:!0}}},it=at,st=Object(R[\"a\"])(it,tt,nt,!1,null,null,null),rt=st.exports,ot=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"single-letter-icon\",attrs:{width:\"16px\",height:\"16px\",viewBox:\"0 0 16 16\"}},[n(\"g\",{attrs:{stroke:\"none\",\"stroke-width\":\"1\",fill:\"none\",\"fill-rule\":\"evenodd\"}},[n(\"rect\",{attrs:{stroke:\"currentColor\",x:\"1\",y:\"1\",width:\"14\",height:\"14\"}}),n(\"text\",{attrs:{\"font-size\":\"11\",\"font-weight\":\"bold\",fill:\"currentColor\",x:\"49%\",y:\"12\",\"text-anchor\":\"middle\"}},[n(\"tspan\",[e._v(e._s(e.symbol))])])])])},lt=[],ct={name:\"SingleLetterSymbolIcon\",components:{SVGIcon:ye[\"a\"]},props:{symbol:{type:String,required:!0}}},ut=ct,dt=Object(R[\"a\"])(ut,ot,lt,!1,null,null,null),ht=dt.exports;const pt={article:\"article\",associatedtype:\"associatedtype\",buildSetting:\"buildSetting\",case:\"case\",collection:\"collection\",class:\"class\",container:\"container\",dictionarySymbol:\"dictionarySymbol\",enum:\"enum\",extension:\"extension\",func:\"func\",groupMarker:\"groupMarker\",httpRequest:\"httpRequest\",init:\"init\",languageGroup:\"languageGroup\",learn:\"learn\",macro:\"macro\",method:\"method\",module:\"module\",op:\"op\",overview:\"overview\",project:\"project\",property:\"property\",propertyListKey:\"propertyListKey\",propertyListKeyReference:\"propertyListKeyReference\",protocol:\"protocol\",resources:\"resources\",root:\"root\",sampleCode:\"sampleCode\",section:\"section\",struct:\"struct\",subscript:\"subscript\",symbol:\"symbol\",tutorial:\"tutorial\",typealias:\"typealias\",union:\"union\",var:\"var\"},ft={[pt.init]:pt.method,[pt.case]:pt.enum,[pt.propertyListKeyReference]:pt.propertyListKey,[pt.project]:pt.tutorial},gt={blue:\"blue\",teal:\"teal\",orange:\"orange\",purple:\"purple\",green:\"green\",sky:\"sky\",pink:\"pink\"},mt={[pt.article]:gt.teal,[pt.init]:gt.blue,[pt.case]:gt.orange,[pt.class]:gt.purple,[pt.collection]:gt.pink,[k[\"a\"].collectionGroup]:gt.teal,[pt.dictionarySymbol]:gt.purple,[pt.enum]:gt.orange,[pt.extension]:gt.orange,[pt.func]:gt.green,[pt.op]:gt.green,[pt.httpRequest]:gt.green,[pt.module]:gt.sky,[pt.method]:gt.blue,[pt.macro]:gt.pink,[pt.protocol]:gt.purple,[pt.property]:gt.teal,[pt.propertyListKey]:gt.green,[pt.propertyListKeyReference]:gt.green,[pt.sampleCode]:gt.purple,[pt.struct]:gt.purple,[pt.subscript]:gt.blue,[pt.typealias]:gt.orange,[pt.union]:gt.purple,[pt.var]:gt.purple},yt={[pt.article]:Oe[\"a\"],[pt.associatedtype]:Ke,[pt.buildSetting]:Ke,[pt.class]:ht,[pt.collection]:Ke,[pt.dictionarySymbol]:ht,[pt.container]:Ke,[pt.enum]:ht,[pt.extension]:rt,[pt.func]:Ee,[pt.op]:Ue,[pt.httpRequest]:ht,[pt.languageGroup]:Ke,[pt.learn]:_e,[pt.method]:ht,[pt.macro]:ht,[pt.module]:Ie,[pt.overview]:_e,[pt.protocol]:rt,[pt.property]:ht,[pt.propertyListKey]:ht,[pt.resources]:_e,[pt.sampleCode]:Ge[\"a\"],[pt.struct]:ht,[pt.subscript]:et,[pt.symbol]:Ke,[pt.tutorial]:$e[\"a\"],[pt.typealias]:ht,[pt.union]:ht,[pt.var]:ht},vt={[pt.class]:{symbol:\"C\"},[pt.dictionarySymbol]:{symbol:\"O\"},[pt.enum]:{symbol:\"E\"},[pt.extension]:{first:\"E\",second:\"x\"},[pt.httpRequest]:{symbol:\"E\"},[pt.method]:{symbol:\"M\"},[pt.macro]:{symbol:\"#\"},[pt.protocol]:{first:\"P\",second:\"r\"},[pt.property]:{symbol:\"P\"},[pt.propertyListKey]:{symbol:\"K\"},[pt.struct]:{symbol:\"S\"},[pt.typealias]:{symbol:\"T\"},[pt.union]:{symbol:\"U\"},[pt.var]:{symbol:\"V\"}};var bt={name:\"NavigatorLeafIcon\",components:{SingleLetterSymbolIcon:ht},constants:{TopicTypeIcons:yt,TopicTypeProps:vt},props:{type:{type:String,required:!0},withColors:{type:Boolean,default:!1}},computed:{normalisedType:({type:e})=>ft[e]||e,icon:({normalisedType:e})=>yt[e]||Ke,iconProps:({normalisedType:e})=>vt[e]||{},color:({normalisedType:e})=>mt[e],styles:({color:e,withColors:t})=>t&&e?{color:`var(--color-type-icon-${e})`}:{}}},Tt=bt,_t=(n(\"b13d\"),Object(R[\"a\"])(Tt,pe,fe,!1,null,\"031bfabc\",null)),Ct=_t.exports,St={name:\"DocumentationHero\",components:{NavigatorLeafIcon:Ct},props:{role:{type:String,required:!0},enhanceBackground:{type:Boolean,required:!0},shortHero:{type:Boolean,required:!0},shouldShowLanguageSwitcher:{type:Boolean,required:!0}},computed:{color:({type:e})=>mt[ft[e]||e]||gt.teal,styles:({color:e})=>({\"--accent-color\":`var(--color-type-icon-${e}, var(--color-figure-gray-secondary))`}),type:({role:e})=>{switch(e){case k[\"a\"].collection:return pt.module;case k[\"a\"].collectionGroup:return pt.collection;default:return e}}}},kt=St,wt=(n(\"a8a5\"),Object(R[\"a\"])(kt,de,he,!1,null,\"14076498\",null)),xt=wt.exports,It=n(\"7b1f\"),Ot=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"ContentNode\",e._b({staticClass:\"abstract\"},\"ContentNode\",e.$props,!1))},$t=[],Dt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"BaseContentNode\",e._b({},\"BaseContentNode\",e.$props,!1))},Pt=[],At=n(\"5677\"),jt={name:\"ContentNode\",components:{BaseContentNode:At[\"a\"]},props:At[\"a\"].props,methods:At[\"a\"].methods,BlockType:At[\"a\"].BlockType,InlineType:At[\"a\"].InlineType},Lt=jt,Et=(n(\"c18a\"),Object(R[\"a\"])(Lt,Dt,Pt,!1,null,\"002affcc\",null)),Bt=Et.exports,Rt={name:\"Abstract\",components:{ContentNode:Bt},props:Bt.props},Nt=Rt,zt=(n(\"374e\"),Object(R[\"a\"])(Nt,Ot,$t,!1,null,\"702ec04e\",null)),Mt=zt.exports,Kt=n(\"c081\"),qt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"TopicsTable\",{attrs:{anchor:\"default-implementations\",title:\"Default Implementations\",isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections,wrapTitle:!0}})},Ft=[],Vt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"ContentTable\",{attrs:{anchor:e.anchor,title:e.title}},e._l(e.sectionsWithTopics,(function(t){return n(\"ContentTableSection\",{key:t.title,attrs:{title:t.title}},[e.wrapTitle?n(\"template\",{slot:\"title\"},[n(\"WordBreak\",{staticClass:\"title\",attrs:{tag:\"h3\"}},[e._v(\" \"+e._s(t.title)+\" \")])],1):e._e(),t.abstract?n(\"template\",{slot:\"abstract\"},[n(\"ContentNode\",{attrs:{content:t.abstract}})],1):e._e(),t.discussion?n(\"template\",{slot:\"discussion\"},[n(\"ContentNode\",{attrs:{content:t.discussion.content}})],1):e._e(),e._l(t.topics,(function(t){return n(\"TopicsLinkBlock\",{key:t.identifier,staticClass:\"topic\",attrs:{topic:t,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta}})}))],2)})),1)},Ht=[],Wt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"OnThisPageSection\",{staticClass:\"contenttable alt-light\",attrs:{anchor:e.anchor,title:e.title}},[n(\"div\",{staticClass:\"container\"},[n(\"h2\",{staticClass:\"title\"},[e._v(e._s(e.title))]),e._t(\"default\")],2)])},Ut=[],Gt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"section\",{attrs:{id:e.anchor}},[e._t(\"default\")],2)},Xt=[],Yt={name:\"OnThisPageSection\",inject:{store:{default(){return{addOnThisPageSection(){}}}}},props:{anchor:{type:String,required:!0},title:{type:String,required:!0}},created(){this.store.addOnThisPageSection({anchor:this.anchor,title:this.title})}},Jt=Yt,Qt=Object(R[\"a\"])(Jt,Gt,Xt,!1,null,null,null),Zt=Qt.exports,en={name:\"ContentTable\",components:{OnThisPageSection:Zt},props:{anchor:{type:String,required:!0},title:{type:String,required:!0}}},tn=en,nn=(n(\"ba48\"),Object(R[\"a\"])(tn,Wt,Ut,!1,null,\"5a07ba83\",null)),an=nn.exports,sn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"contenttable-section\"},[n(\"div\",{staticClass:\"section-title\"},[e._t(\"title\",(function(){return[n(\"h3\",{staticClass:\"title\"},[e._v(e._s(e.title))])]}))],2),n(\"div\",{staticClass:\"section-content\"},[e._t(\"abstract\"),e._t(\"discussion\"),e._t(\"default\")],2)])},rn=[],on={name:\"ContentTableSection\",props:{title:{type:String,required:!0}}},ln=on,cn=(n(\"5d48\"),Object(R[\"a\"])(ln,sn,rn,!1,null,\"627ab5f4\",null)),un=cn.exports,dn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"link-block\",class:e.linkBlockClasses},[n(e.linkComponent,e._b({ref:\"apiChangesDiff\",tag:\"component\",staticClass:\"link\",class:e.linkClasses},\"component\",e.linkProps,!1),[e.topic.role&&!e.change?n(\"TopicLinkBlockIcon\",{attrs:{role:e.topic.role}}):e._e(),e.topic.fragments?n(\"DecoratedTopicTitle\",{attrs:{tokens:e.topic.fragments}}):n(\"WordBreak\",{attrs:{tag:e.titleTag}},[e._v(e._s(e.topic.title))]),e.change?n(\"span\",{staticClass:\"visuallyhidden\"},[e._v(\"- \"+e._s(e.changeName))]):e._e()],1),e.hasAbstractElements?n(\"div\",{staticClass:\"abstract\"},[e.topic.abstract?n(\"ContentNode\",{attrs:{content:e.topic.abstract}}):e._e(),e.topic.ideTitle?n(\"div\",{staticClass:\"topic-keyinfo\"},[e.topic.titleStyle===e.titleStyles.title?[n(\"strong\",[e._v(\"Key:\")]),e._v(\" \"+e._s(e.topic.name)+\" \")]:e.topic.titleStyle===e.titleStyles.symbol?[n(\"strong\",[e._v(\"Name:\")]),e._v(\" \"+e._s(e.topic.ideTitle)+\" \")]:e._e()],2):e._e(),e.topic.required||e.topic.defaultImplementations?n(\"RequirementMetadata\",{staticClass:\"topic-required\",attrs:{defaultImplementationsCount:e.topic.defaultImplementations}}):e._e(),e.topic.conformance?n(\"ConditionalConstraints\",{attrs:{constraints:e.topic.conformance.constraints,prefix:e.topic.conformance.availabilityPrefix}}):e._e()],1):e._e(),e.showDeprecatedBadge?n(\"Badge\",{attrs:{variant:\"deprecated\"}}):e.showBetaBadge?n(\"Badge\",{attrs:{variant:\"beta\"}}):e._e(),e._l(e.tags,(function(t){return n(\"Badge\",{key:t.type+\"-\"+t.text,attrs:{variant:t.type}},[e._v(\" \"+e._s(t.text)+\" \")])}))],2)},hn=[],pn=function(){var e,t=this,n=t.$createElement,a=t._self._c||n;return a(\"span\",{staticClass:\"badge\",class:(e={},e[\"badge-\"+t.variant]=t.variant,e),attrs:{role:\"presentation\"}},[t._t(\"default\",(function(){return[t._v(t._s(t.text))]}))],2)},fn=[];const gn={beta:\"Beta\",deprecated:\"Deprecated\"};var mn={name:\"Badge\",props:{variant:{type:String,default:()=>\"\"}},computed:{text:({variant:e})=>gn[e]}},yn=mn,vn=(n(\"8d93\"),Object(R[\"a\"])(yn,pn,fn,!1,null,\"5a8ba4e0\",null)),bn=vn.exports,Tn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.icon?n(\"div\",{staticClass:\"topic-icon-wrapper\"},[n(e.icon,{tag:\"component\",staticClass:\"topic-icon\"})],1):e._e()},_n=[],Cn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"api-reference-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"title\",[e._v(\"API Reference\")]),n(\"path\",{attrs:{d:\"m1 1v12h12v-12zm11 11h-10v-10h10z\"}}),n(\"path\",{attrs:{d:\"m3 4h8v1h-8zm0 2.5h8v1h-8zm0 2.5h8v1h-8z\"}}),n(\"path\",{attrs:{d:\"m3 4h8v1h-8z\"}}),n(\"path\",{attrs:{d:\"m3 6.5h8v1h-8z\"}}),n(\"path\",{attrs:{d:\"m3 9h8v1h-8z\"}})])},Sn=[],kn={name:\"APIReferenceIcon\",components:{SVGIcon:ye[\"a\"]}},wn=kn,xn=Object(R[\"a\"])(wn,Cn,Sn,!1,null,null,null),In=xn.exports,On=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{attrs:{viewBox:\"0 0 14 14\"}},[n(\"title\",[e._v(\"Web Service Endpoint\")]),n(\"path\",{attrs:{d:\"M4.052 8.737h-1.242l-1.878 5.263h1.15l0.364-1.081h1.939l0.339 1.081h1.193zM2.746 12.012l0.678-2.071 0.653 2.071z\"}}),n(\"path\",{attrs:{d:\"M11.969 8.737h1.093v5.263h-1.093v-5.263z\"}}),n(\"path\",{attrs:{d:\"M9.198 8.737h-2.295v5.263h1.095v-1.892h1.12c0.040 0.003 0.087 0.004 0.134 0.004 0.455 0 0.875-0.146 1.217-0.394l-0.006 0.004c0.296-0.293 0.48-0.699 0.48-1.148 0-0.060-0.003-0.118-0.010-0.176l0.001 0.007c0.003-0.039 0.005-0.085 0.005-0.131 0-0.442-0.183-0.842-0.476-1.128l-0-0c-0.317-0.256-0.724-0.41-1.168-0.41-0.034 0-0.069 0.001-0.102 0.003l0.005-0zM9.628 11.014c-0.15 0.118-0.341 0.188-0.548 0.188-0.020 0-0.040-0.001-0.060-0.002l0.003 0h-1.026v-1.549h1.026c0.017-0.001 0.037-0.002 0.058-0.002 0.206 0 0.396 0.066 0.551 0.178l-0.003-0.002c0.135 0.13 0.219 0.313 0.219 0.515 0 0.025-0.001 0.050-0.004 0.074l0-0.003c0.002 0.020 0.003 0.044 0.003 0.068 0 0.208-0.083 0.396-0.219 0.534l0-0z\"}}),n(\"path\",{attrs:{d:\"M13.529 4.981c0-1.375-1.114-2.489-2.489-2.49h-0l-0.134 0.005c-0.526-1.466-1.903-2.496-3.522-2.496-0.892 0-1.711 0.313-2.353 0.835l0.007-0.005c-0.312-0.243-0.709-0.389-1.14-0.389-1.030 0-1.865 0.834-1.866 1.864v0c0 0.001 0 0.003 0 0.004 0 0.123 0.012 0.242 0.036 0.358l-0.002-0.012c-0.94 0.37-1.593 1.27-1.593 2.323 0 1.372 1.11 2.485 2.482 2.49h8.243c1.306-0.084 2.333-1.164 2.333-2.484 0-0.001 0-0.002 0-0.003v0zM11.139 6.535h-8.319c-0.799-0.072-1.421-0.739-1.421-1.551 0-0.659 0.41-1.223 0.988-1.45l0.011-0.004 0.734-0.28-0.148-0.776-0.012-0.082v-0.088c0-0 0-0.001 0-0.001 0-0.515 0.418-0.933 0.933-0.933 0.216 0 0.416 0.074 0.574 0.197l-0.002-0.002 0.584 0.453 0.575-0.467 0.169-0.127c0.442-0.306 0.991-0.489 1.581-0.489 1.211 0 2.243 0.769 2.633 1.846l0.006 0.019 0.226 0.642 0.814-0.023 0.131 0.006c0.805 0.067 1.432 0.736 1.432 1.552 0 0.836-0.659 1.518-1.486 1.556l-0.003 0z\"}})])},$n=[],Dn={name:\"EndpointIcon\",components:{SVGIcon:ye[\"a\"]}},Pn=Dn,An=Object(R[\"a\"])(Pn,On,$n,!1,null,null,null),jn=An.exports;const Ln={[k[\"a\"].article]:Oe[\"a\"],[k[\"a\"].collectionGroup]:In,[k[\"a\"].learn]:_e,[k[\"a\"].overview]:_e,[k[\"a\"].project]:$e[\"a\"],[k[\"a\"].tutorial]:$e[\"a\"],[k[\"a\"].resources]:_e,[k[\"a\"].sampleCode]:Ge[\"a\"],[k[\"a\"].restRequestSymbol]:jn};var En,Bn,Rn,Nn,zn,Mn,Kn,qn,Fn={props:{role:{type:String,required:!0}},computed:{icon:({role:e})=>Ln[e]}},Vn=Fn,Hn=(n(\"1a47\"),Object(R[\"a\"])(Vn,Tn,_n,!1,null,\"4d1e7968\",null)),Wn=Hn.exports,Un=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"code\",{staticClass:\"decorated-title\"},e._l(e.tokens,(function(t,a){return n(e.componentFor(t),{key:a,tag:\"component\",class:[e.classFor(t),e.emptyTokenClass(t)]},[e._v(e._s(t.text))])})),1)},Gn=[],Xn={name:\"ChangedToken\",render(e){const{kind:t,tokens:n}=this;return e(\"span\",{class:[\"token-\"+t,\"token-changed\"]},n.map(t=>e(va,{props:t})))},props:{kind:{type:String,required:!0},tokens:{type:Array,required:!0}}},Yn=Xn,Jn=Object(R[\"a\"])(Yn,En,Bn,!1,null,null,null),Qn=Jn.exports,Zn={name:\"RawText\",render(e){const{_v:t=(t=>e(\"span\",t)),text:n}=this;return t(n)},props:{text:{type:String,required:!0}}},ea=Zn,ta=Object(R[\"a\"])(ea,Rn,Nn,!1,null,null,null),na=ta.exports,aa={name:\"SyntaxToken\",render(e){return e(\"span\",{class:\"token-\"+this.kind},this.text)},props:{kind:{type:String,required:!0},text:{type:String,required:!0}}},ia=aa,sa=Object(R[\"a\"])(ia,zn,Mn,!1,null,null,null),ra=sa.exports,oa=n(\"86d8\"),la={name:\"TypeIdentifierLink\",inject:{references:{default(){return{}}}},render(e){const t=\"type-identifier-link\",n=this.references[this.identifier];return n&&n.url?e(oa[\"a\"],{class:t,props:{url:n.url,kind:n.kind,role:n.role}},this.$slots.default):e(\"span\",{class:t},this.$slots.default)},props:{identifier:{type:String,required:!0,default:()=>\"\"}}},ca=la,ua=Object(R[\"a\"])(ca,Kn,qn,!1,null,null,null),da=ua.exports;const ha={attribute:\"attribute\",externalParam:\"externalParam\",genericParameter:\"genericParameter\",identifier:\"identifier\",internalParam:\"internalParam\",keyword:\"keyword\",label:\"label\",number:\"number\",string:\"string\",text:\"text\",typeIdentifier:\"typeIdentifier\",added:\"added\",removed:\"removed\"};var pa,fa,ga={name:\"DeclarationToken\",render(e){const{kind:t,text:n,tokens:a}=this;switch(t){case ha.text:{const t={text:n};return e(na,{props:t})}case ha.typeIdentifier:{const t={identifier:this.identifier};return e(da,{props:t},[e(It[\"a\"],n)])}case ha.added:case ha.removed:return e(Qn,{props:{tokens:a,kind:t}});default:{const a={kind:t,text:n};return e(ra,{props:a})}}},constants:{TokenKind:ha},props:{kind:{type:String,required:!0},identifier:{type:String,required:!1},text:{type:String,required:!1},tokens:{type:Array,required:!1,default:()=>[]}}},ma=ga,ya=(n(\"c36f\"),Object(R[\"a\"])(ma,pa,fa,!1,null,\"5caf1b5b\",null)),va=ya.exports;const{TokenKind:ba}=va.constants,Ta={decorator:\"decorator\",identifier:\"identifier\",label:\"label\"};var _a={name:\"DecoratedTopicTitle\",components:{WordBreak:It[\"a\"]},props:{tokens:{type:Array,required:!0,default:()=>[]}},constants:{TokenKind:ba},methods:{emptyTokenClass:({text:e})=>({\"empty-token\":\" \"===e}),classFor({kind:e}){switch(e){case ba.externalParam:case ba.identifier:return Ta.identifier;case ba.label:return Ta.label;default:return Ta.decorator}},componentFor(e){return/^\\s+$/.test(e.text)?\"span\":It[\"a\"]}}},Ca=_a,Sa=(n(\"dcf6\"),Object(R[\"a\"])(Ca,Un,Gn,!1,null,\"06ec7395\",null)),ka=Sa.exports,wa=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"ContentNode\",{staticClass:\"conditional-constraints\",attrs:{content:e.content}})},xa=[],Ia={name:\"ConditionalConstraints\",components:{ContentNode:Bt},props:{constraints:Bt.props.content,prefix:Bt.props.content},computed:{content:({constraints:e,prefix:t,space:n})=>t.concat(n).concat(e),space:()=>({type:Bt.InlineType.text,text:\" \"})}},Oa=Ia,$a=(n(\"918a\"),Object(R[\"a\"])(Oa,wa,xa,!1,null,\"1548fd90\",null)),Da=$a.exports,Pa=function(e,t){var n=t._c;return n(\"p\",{staticClass:\"requirement-metadata\",class:t.data.staticClass},[n(\"strong\",[t._v(\"Required.\")]),t.props.defaultImplementationsCount?[t._v(\" Default implementation\"+t._s(t.props.defaultImplementationsCount>1?\"s\":\"\")+\" provided. \")]:t._e()],2)},Aa=[],ja={name:\"RequirementMetadata\",props:{defaultImplementationsCount:{type:Number,default:0}}},La=ja,Ea=Object(R[\"a\"])(La,Pa,Aa,!0,null,null,null),Ba=Ea.exports;const Ra={added:\"added\",modified:\"modified\",deprecated:\"deprecated\"},Na=[Ra.modified,Ra.added,Ra.deprecated],za={[Ra.modified]:\"Modified\",[Ra.added]:\"Added\",[Ra.deprecated]:\"Deprecated\"},Ma={Modified:Ra.modified,Added:Ra.added,Deprecated:Ra.deprecated},Ka=\"has-multiple-lines\";function qa(e){if(!e)return!1;const t=window.getComputedStyle(e.$el||e),n=(e.$el||e).offsetHeight,a=t.lineHeight?parseFloat(t.lineHeight):1,i=t.paddingTop?parseFloat(t.paddingTop):0,s=t.paddingBottom?parseFloat(t.paddingBottom):0,r=t.borderTopWidth?parseFloat(t.borderTopWidth):0,o=t.borderBottomWidth?parseFloat(t.borderBottomWidth):0,l=n-(i+s+r+o),c=l/a;return c>=2}const Fa=\"latest_\",Va={xcode:{value:\"xcode\",label:\"Xcode\"},other:{value:\"other\",label:\"Other\"}},Ha={constants:{multipleLinesClass:Ka},data(){return{multipleLinesClass:Ka}},computed:{hasMultipleLinesAfterAPIChanges:({change:e,changeType:t,$refs:n})=>!(!e&&!t)&&qa(n.apiChangesDiff)}},Wa={methods:{toVersionRange({platform:e,versions:t}){return`${e} ${t[0]} – ${e} ${t[1]}`},toOptionValue:e=>`${Fa}${e}`,toScope:e=>e.slice(Fa.length,e.length),getOptionsForDiffAvailability(e={}){return this.getOptionsForDiffAvailabilities([e])},getOptionsForDiffAvailabilities(e=[]){const t=e.reduce((e,t={})=>Object.keys(t).reduce((e,n)=>({...e,[n]:(e[n]||[]).concat(t[n])}),e),{}),n=Object.keys(t),a=n.reduce((e,n)=>{const a=t[n];return{...e,[n]:a.find(e=>e.platform===Va.xcode.label)||a[0]}},{}),i=e=>({label:this.toVersionRange(a[e]),value:this.toOptionValue(e),platform:a[e].platform}),{sdk:s,beta:r,minor:o,major:l,...c}=a,u=[].concat(s?i(\"sdk\"):[]).concat(r?i(\"beta\"):[]).concat(o?i(\"minor\"):[]).concat(l?i(\"major\"):[]).concat(Object.keys(c).map(i));return this.splitOptionsPerPlatform(u)},changesClassesFor(e,t){const n=this.changeFor(e,t);return this.getChangesClasses(n)},getChangesClasses:e=>({[\"changed changed-\"+e]:!!e}),changeFor(e,t){const{change:n}=(t||{})[e]||{};return n},splitOptionsPerPlatform(e){return e.reduce((e,t)=>{const n=t.platform===Va.xcode.label?Va.xcode.value:Va.other.value;return e[n].push(t),e},{[Va.xcode.value]:[],[Va.other.value]:[]})},getChangeName(e){return za[e]}},computed:{availableOptions({diffAvailability:e={},toOptionValue:t}){return new Set(Object.keys(e).map(t))}}},Ua={article:\"article\",symbol:\"symbol\"},Ga={title:\"title\",symbol:\"symbol\"},Xa={link:\"link\"};var Ya={name:\"TopicsLinkBlock\",components:{Badge:bn,WordBreak:It[\"a\"],ContentNode:Bt,TopicLinkBlockIcon:Wn,DecoratedTopicTitle:ka,RequirementMetadata:Ba,ConditionalConstraints:Da},inject:[\"store\"],mixins:[Wa,Ha],constants:{ReferenceType:Xa,TopicKind:Ua,TitleStyles:Ga},props:{isSymbolBeta:Boolean,isSymbolDeprecated:Boolean,topic:{type:Object,required:!0,validator:e=>(!(\"abstract\"in e)||Array.isArray(e.abstract))&&\"string\"===typeof e.identifier&&(e.type===Xa.link&&!e.kind||\"string\"===typeof e.kind)&&(e.type===Xa.link&&!e.role||\"string\"===typeof e.role)&&\"string\"===typeof e.title&&\"string\"===typeof e.url&&(!(\"defaultImplementations\"in e)||\"number\"===typeof e.defaultImplementations)&&(!(\"required\"in e)||\"boolean\"===typeof e.required)&&(!(\"conformance\"in e)||\"object\"===typeof e.conformance)}},data(){return{state:this.store.state}},computed:{linkComponent:({topic:e})=>e.type===Xa.link?\"a\":\"router-link\",linkProps({topic:e}){const t=Object(q[\"b\"])(e.url,this.$route.query);return e.type===Xa.link?{href:t}:{to:t}},linkBlockClasses:({changesClasses:e,hasAbstractElements:t,hasMultipleLinesAfterAPIChanges:n,multipleLinesClass:a})=>({\"has-inline-element\":!t,[a]:n,...!t&&e}),linkClasses:({changesClasses:e,deprecated:t,hasAbstractElements:n})=>({deprecated:t,\"has-adjacent-elements\":n,...n&&e}),changesClasses:({getChangesClasses:e,change:t})=>e(t),titleTag({topic:e}){if(e.titleStyle===Ga.title)return e.ideTitle?\"span\":\"code\";if(e.role&&(e.role===k[\"a\"].collection||e.role===k[\"a\"].dictionarySymbol))return\"span\";switch(e.kind){case Ua.symbol:return\"code\";default:return\"span\"}},titleStyles:()=>Ga,deprecated:({showDeprecatedBadge:e,topic:t})=>e||t.deprecated,showBetaBadge:({topic:e,isSymbolBeta:t})=>Boolean(!t&&e.beta),showDeprecatedBadge:({topic:e,isSymbolDeprecated:t})=>Boolean(!t&&e.deprecated),change({topic:{identifier:e},state:{apiChanges:t}}){return this.changeFor(e,t)},changeName:({change:e,getChangeName:t})=>t(e),hasAbstractElements:({topic:{abstract:e,conformance:t,required:n,defaultImplementations:a}}={})=>e&&e.length>0||t||n||a,tags:({topic:e})=>(e.tags||[]).slice(0,1)}},Ja=Ya,Qa=(n(\"f158\"),Object(R[\"a\"])(Ja,dn,hn,!1,null,\"3152d122\",null)),Za=Qa.exports,ei={name:\"TopicsTable\",inject:{references:{default(){return{}}}},components:{WordBreak:It[\"a\"],ContentTable:an,TopicsLinkBlock:Za,ContentNode:Bt,ContentTableSection:un},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:{type:Array,required:!0},title:{type:String,required:!1,default(){return\"Topics\"}},anchor:{type:String,required:!1,default(){return\"topics\"}},wrapTitle:{type:Boolean,default:!1}},computed:{sectionsWithTopics(){return this.sections.map(e=>({...e,topics:e.identifiers.reduce((e,t)=>this.references[t]?e.concat(this.references[t]):e,[])}))}}},ti=ei,ni=(n(\"6e80\"),Object(R[\"a\"])(ti,Vt,Ht,!1,null,\"eb97add6\",null)),ai=ni.exports,ii={name:\"DefaultImplementations\",components:{TopicsTable:ai},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:ai.props.sections}},si=ii,ri=Object(R[\"a\"])(si,qt,Ft,!1,null,null,null),oi=ri.exports,li=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"primary-content\"},e._l(e.sections,(function(t,a){return n(e.componentFor(t),e._b({key:a,tag:\"component\"},\"component\",e.propsFor(t),!1))})),1)},ci=[],ui=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"OnThisPageSection\",{attrs:{anchor:\"possibleValues\",title:\"PossibleValues\"}},[n(\"h2\",[e._v(\"Possible Values\")]),n(\"dl\",{staticClass:\"datalist\"},[e._l(e.values,(function(t){return[n(\"dt\",{key:t.name+\":name\",staticClass:\"param-name\"},[n(\"WordBreak\",{attrs:{tag:\"code\"}},[e._v(e._s(t.name))])],1),t.content?n(\"dd\",{key:t.name+\":content\",staticClass:\"value-content\"},[n(\"ContentNode\",{attrs:{content:t.content}})],1):e._e()]}))],2)])},di=[],hi={name:\"PossibleValues\",components:{ContentNode:At[\"a\"],OnThisPageSection:Zt,WordBreak:It[\"a\"]},props:{values:{type:Array,required:!0}}},pi=hi,fi=(n(\"719b\"),Object(R[\"a\"])(pi,ui,di,!1,null,null,null)),gi=fi.exports,mi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"OnThisPageSection\",{attrs:{anchor:e.anchor,title:e.title}},[n(\"h2\",[e._v(e._s(e.title))]),n(\"DeclarationSource\",{attrs:{tokens:e.tokens}})],1)},yi=[],vi=n(\"002d\"),bi=function(){var e,t=this,n=t.$createElement,a=t._self._c||n;return a(\"pre\",{ref:\"declarationGroup\",staticClass:\"source\",class:(e={},e[t.multipleLinesClass]=t.hasMultipleLines,e)},[a(\"code\",{ref:\"code\"},t._l(t.formattedTokens,(function(e,n){return a(\"Token\",t._b({key:n},\"Token\",t.propsFor(e),!1))})),1)])},Ti=[];function _i(e){const t=e.getElementsByClassName(\"token-identifier\");if(t.length<2)return;const n=e.textContent.indexOf(\":\")+1;for(let a=1;a<t.length;a++){const e=t[a].innerHTML.trim(),i=t[a].textContent.trim(),s=i.length,r=Math.max(0,n-s);t[a].innerHTML=`\\n${\" \".repeat(r)}${e}`}\"\\n\"!==e.innerHTML.charAt(e.innerHTML.length-1)&&(e.innerHTML=e.innerHTML+\"\\n\")}function Ci(e,t){const n=e.innerHTML;try{switch(t){case O[\"a\"].objectiveC.key.api:_i(e);break}}catch(a){e.innerHTML=n}}var Si=n(\"6842\");const{TokenKind:ki}=va.constants,wi=4;var xi={name:\"DeclarationSource\",data(){return{hasMultipleLines:!1,multipleLinesClass:Ka}},components:{Token:va},props:{tokens:{type:Array,required:!0},language:{type:String,required:!1}},computed:{indentationWidth:()=>Object(Si[\"c\"])([\"theme\",\"code\",\"indentationWidth\"],wi),formattedTokens:({language:e,formattedSwiftTokens:t,tokens:n})=>e===O[\"a\"].swift.key.api?t:n,formattedSwiftTokens:({indentationWidth:e,tokens:t})=>{const n=\" \".repeat(e);let a=!1;const i=[];let s=0,r=1,o=null,l=null,c=null,u=null,d=0;while(s<t.length){const e=t[s],h={...e},p=r<t.length?t[r]:void 0,f=(e.text||\"\").length;for(let t=0;t<f;t++)\"(\"===e.text.charAt(t)&&(d+=1,null==l&&(l=t,o=s)),\")\"===e.text.charAt(t)&&(d-=1,null!==o&&0===d&&(u=t,c=s));e.text&&e.text.endsWith(\", \")&&p&&p.kind===ki.externalParam&&(h.text=`${e.text.trimEnd()}\\n${n}`,a=!0),i.push(h),s+=1,r+=1}if(a&&null!==o){const e=i[o].text;i[o].text=`${e}\\n${n}`}if(a&&null!==c){const e=i[c].text,t=e.slice(0,u),n=e.slice(u),a=`${t}\\n${n}`;i[c].text=a}return i}},methods:{propsFor(e){return{kind:e.kind,identifier:e.identifier,text:e.text,tokens:e.tokens}}},async mounted(){qa(this.$refs.declarationGroup)&&(this.hasMultipleLines=!0),this.language===O[\"a\"].objectiveC.key.api&&(await this.$nextTick(),Ci(this.$refs.code,this.language))}},Ii=xi,Oi=(n(\"a20a\"),Object(R[\"a\"])(Ii,bi,Ti,!1,null,\"e2e09a16\",null)),$i=Oi.exports,Di={name:\"RestEndpoint\",components:{DeclarationSource:$i,OnThisPageSection:Zt},props:{title:{type:String,required:!0},tokens:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(vi[\"a\"])(e)}},Pi=Di,Ai=Object(R[\"a\"])(Pi,mi,yi,!1,null,null,null),ji=Ai.exports,Li=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"OnThisPageSection\",{staticClass:\"declaration\",attrs:{anchor:\"declaration\",title:\"Declaration\"}},[n(\"h2\",[e._v(\"Declaration\")]),e.hasModifiedChanges?[n(\"DeclarationDiff\",{class:[e.changeClasses,e.multipleLinesClass],attrs:{changes:e.declarationChanges,changeType:e.changeType}})]:e._l(e.declarations,(function(t,a){return n(\"DeclarationGroup\",{key:a,class:e.changeClasses,attrs:{declaration:t,shouldCaption:e.hasPlatformVariants,changeType:e.changeType}})})),e.conformance?n(\"ConditionalConstraints\",{attrs:{constraints:e.conformance.constraints,prefix:e.conformance.availabilityPrefix}}):e._e()],2)},Ei=[],Bi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{ref:\"apiChangesDiff\",staticClass:\"declaration-group\",class:e.classes},[e.shouldCaption?n(\"p\",{staticClass:\"platforms\"},[n(\"strong\",[e._v(e._s(e.caption))])]):e._e(),n(\"Source\",{attrs:{tokens:e.declaration.tokens,language:e.interfaceLanguage}})],1)},Ri=[],Ni={name:\"DeclarationGroup\",components:{Source:$i},mixins:[Ha],inject:{languages:{default:()=>new Set},interfaceLanguage:{default:()=>O[\"a\"].swift.key.api},symbolKind:{default:()=>{}}},props:{declaration:{type:Object,required:!0},shouldCaption:{type:Boolean,default:!1},changeType:{type:String,required:!1}},computed:{classes:({changeType:e,multipleLinesClass:t,hasMultipleLinesAfterAPIChanges:n})=>({[\"declaration-group--changed declaration-group--\"+e]:e,[t]:n}),caption(){return this.declaration.platforms.join(\", \")},isSwift:({interfaceLanguage:e})=>e===O[\"a\"].swift.key.api}},zi=Ni,Mi=(n(\"a40c\"),Object(R[\"a\"])(zi,Bi,Ri,!1,null,\"c5ecdd3e\",null)),Ki=Mi.exports,qi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"declaration-diff\"},[n(\"div\",{staticClass:\"declaration-diff-current\"},[n(\"div\",{staticClass:\"declaration-diff-version\"},[e._v(\"Current\")]),e._l(e.currentDeclarations,(function(t,a){return n(\"DeclarationGroup\",{key:a,attrs:{declaration:t,\"should-caption\":e.currentDeclarations.length>1,changeType:e.changeType}})}))],2),n(\"div\",{staticClass:\"declaration-diff-previous\"},[n(\"div\",{staticClass:\"declaration-diff-version\"},[e._v(\"Previous\")]),e._l(e.previousDeclarations,(function(t,a){return n(\"DeclarationGroup\",{key:a,attrs:{declaration:t,\"should-caption\":e.previousDeclarations.length>1,changeType:e.changeType}})}))],2)])},Fi=[],Vi={name:\"DeclarationDiff\",components:{DeclarationGroup:Ki},props:{changes:{type:Object,required:!0},changeType:{type:String,required:!0}},computed:{previousDeclarations:({changes:e})=>e.declaration.previous||[],currentDeclarations:({changes:e})=>e.declaration.new||[]}},Hi=Vi,Wi=(n(\"7a2c\"),Object(R[\"a\"])(Hi,qi,Fi,!1,null,\"b3e21c4a\",null)),Ui=Wi.exports,Gi={name:\"Declaration\",components:{DeclarationDiff:Ui,DeclarationGroup:Ki,ConditionalConstraints:Da,OnThisPageSection:Zt},constants:{ChangeTypes:Ra,multipleLinesClass:Ka},inject:[\"identifier\",\"store\"],data:({store:{state:e}})=>({state:e,multipleLinesClass:Ka}),props:{conformance:{type:Object,required:!1},declarations:{type:Array,required:!0}},computed:{hasPlatformVariants(){return this.declarations.length>1},hasModifiedChanges({declarationChanges:e}){if(!e||!e.declaration)return!1;const t=e.declaration;return!(!(t.new||[]).length||!(t.previous||[]).length)},declarationChanges:({state:{apiChanges:e},identifier:t})=>e&&e[t],changeType:({declarationChanges:e,hasModifiedChanges:t})=>{if(!e)return;const n=e.declaration;return n?t?Ra.modified:e.change:e.change===Ra.added?Ra.added:void 0},changeClasses:({changeType:e})=>({[\"changed changed-\"+e]:e})}},Xi=Gi,Yi=(n(\"4340\"),Object(R[\"a\"])(Xi,Li,Ei,!1,null,\"e39c4ee4\",null)),Ji=Yi.exports,Qi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"OnThisPageSection\",{staticClass:\"details\",attrs:{anchor:\"details\",title:\"Details\"}},[n(\"h2\",[e._v(\"Details\")]),n(\"dl\",[e.isSymbol?[n(\"dt\",{key:e.details.name+\":name\",staticClass:\"detail-type\"},[e._v(\" Name \")]),n(\"dd\",{key:e.details.ideTitle+\":content\",staticClass:\"detail-content\"},[e._v(\" \"+e._s(e.details.ideTitle)+\" \")])]:e._e(),e.isTitle?[n(\"dt\",{key:e.details.name+\":key\",staticClass:\"detail-type\"},[e._v(\" Key \")]),n(\"dd\",{key:e.details.ideTitle+\":content\",staticClass:\"detail-content\"},[e._v(\" \"+e._s(e.details.name)+\" \")])]:e._e(),n(\"dt\",{key:e.details.name+\":type\",staticClass:\"detail-type\"},[e._v(\" Type \")]),n(\"dd\",{staticClass:\"detail-content\"},[n(\"PropertyListKeyType\",{attrs:{types:e.details.value}})],1)],2)])},Zi=[],es=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"type\"},[e._v(e._s(e.typeOutput))])},ts=[],ns={name:\"PropertyListKeyType\",props:{types:{type:Array,required:!0}},computed:{englishTypes(){return this.types.map(({arrayMode:e,baseType:t=\"*\"})=>e?\"array of \"+this.pluralizeKeyType(t):t)},typeOutput(){return this.englishTypes.length>2?[this.englishTypes.slice(0,this.englishTypes.length-1).join(\", \"),this.englishTypes[this.englishTypes.length-1]].join(\", or \"):this.englishTypes.join(\" or \")}},methods:{pluralizeKeyType(e){switch(e){case\"dictionary\":return\"dictionaries\";case\"array\":case\"number\":case\"string\":return e+\"s\";default:return e}}}},as=ns,is=(n(\"f7c0\"),Object(R[\"a\"])(as,es,ts,!1,null,\"791bac44\",null)),ss=is.exports,rs={name:\"PropertyListKeyDetails\",components:{PropertyListKeyType:ss,OnThisPageSection:Zt},props:{details:{type:Object,required:!0}},computed:{isTitle(){return\"title\"===this.details.titleStyle&&this.details.ideTitle},isSymbol(){return\"symbol\"===this.details.titleStyle&&this.details.ideTitle}}},os=rs,ls=(n(\"a705\"),Object(R[\"a\"])(os,Qi,Zi,!1,null,\"61ef551b\",null)),cs=ls.exports,us=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"ContentNode\",e._b({},\"ContentNode\",e.$props,!1))},ds=[],hs={name:\"GenericContent\",inject:{store:{default(){return{addOnThisPageSection(){}}}}},components:{ContentNode:Bt},props:Bt.props,methods:{...Bt.methods,addOnThisPageSections(){const{isTopLevelHeading:e,store:t}=this;this.forEach(n=>{e(n)&&t.addOnThisPageSection({anchor:n.anchor,title:n.text})})},isTopLevelHeading(e){const{level:t,type:n}=e;return n===Bt.BlockType.heading&&2===t}},created(){this.addOnThisPageSections()}},ps=hs,fs=Object(R[\"a\"])(ps,us,ds,!1,null,null,null),gs=fs.exports,ms=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"OnThisPageSection\",{staticClass:\"parameters\",attrs:{anchor:\"parameters\",title:\"Parameters\"}},[n(\"h2\",[e._v(\"Parameters\")]),n(\"dl\",[e._l(e.parameters,(function(t){return[n(\"dt\",{key:t.name+\":name\",staticClass:\"param-name\"},[n(\"code\",[e._v(e._s(t.name))])]),n(\"dd\",{key:t.name+\":content\",staticClass:\"param-content\"},[n(\"ContentNode\",{attrs:{content:t.content}})],1)]}))],2)])},ys=[],vs={name:\"Parameters\",components:{ContentNode:Bt,OnThisPageSection:Zt},props:{parameters:{type:Array,required:!0}}},bs=vs,Ts=(n(\"09db\"),Object(R[\"a\"])(bs,ms,ys,!1,null,\"7bb7c035\",null)),_s=Ts.exports,Cs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"OnThisPageSection\",{attrs:{anchor:e.anchor,title:e.title}},[n(\"h2\",[e._v(e._s(e.title))]),n(\"ParametersTable\",{staticClass:\"property-table\",attrs:{parameters:e.properties,changes:e.propertyChanges},scopedSlots:e._u([{key:\"symbol\",fn:function(t){var a=t.name,i=t.type,s=t.content,r=t.changes,o=t.deprecated;return[n(\"div\",{staticClass:\"property-name\",class:{deprecated:o}},[n(\"WordBreak\",{attrs:{tag:\"code\"}},[e._v(e._s(a))])],1),e.shouldShiftType({name:a,content:s})?e._e():n(\"PossiblyChangedType\",{attrs:{type:i,changes:r.type}})]}},{key:\"description\",fn:function(t){var a=t.name,i=t.type,s=t.attributes,r=t.content,o=t.required,l=t.changes,c=t.deprecated,u=t.readOnly;return[e.shouldShiftType({name:a,content:r})?n(\"PossiblyChangedType\",{attrs:{type:i,changes:l.type}}):e._e(),c?[n(\"Badge\",{staticClass:\"property-deprecated\",attrs:{variant:\"deprecated\"}}),e._v(\"  \")]:e._e(),n(\"PossiblyChangedTextAttribute\",{attrs:{changes:l.required,value:o}},[e._v(\"(Required) \")]),n(\"PossiblyChangedTextAttribute\",{attrs:{changes:l.readOnly,value:u}},[e._v(\"(Read only) \")]),r?n(\"ContentNode\",{attrs:{content:r}}):e._e(),n(\"ParameterAttributes\",{attrs:{attributes:s,changes:l.attributes}})]}}])})],1)},Ss=[],ks={inject:[\"identifier\",\"store\"],data:({store:{state:e}})=>({state:e}),computed:{apiChanges:({state:{apiChanges:e},identifier:t})=>e&&e[t]}},ws=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"parameters-table\"},e._l(e.parameters,(function(t){return n(\"Row\",{key:t[e.keyBy],staticClass:\"param\",class:e.changedClasses(t[e.keyBy])},[n(\"Column\",{staticClass:\"param-symbol\",attrs:{span:{large:3,small:12}}},[e._t(\"symbol\",null,null,e.getProps(t,e.changes[t[e.keyBy]]))],2),n(\"Column\",{staticClass:\"param-content\",attrs:{span:{large:9,small:12}}},[e._t(\"description\",null,null,e.getProps(t,e.changes[t[e.keyBy]]))],2)],1)})),1)},xs=[],Is={name:\"ParametersTable\",components:{Row:j[\"a\"],Column:L[\"a\"]},props:{parameters:{type:Array,required:!0},changes:{type:Object,default:()=>({})},keyBy:{type:String,default:\"name\"}},methods:{getProps(e,t={}){return{...e,changes:t}},changedClasses(e){const{changes:t}=this,{change:n}=t[e]||{};return{[\"changed changed-\"+n]:n}}}},Os=Is,$s=(n(\"9da8\"),Object(R[\"a\"])(Os,ws,xs,!1,null,\"2d54624a\",null)),Ds=$s.exports,Ps=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"parameter-attributes\"},[e.shouldRender(e.AttributeKind.default)?n(\"ParameterMetaAttribute\",e._b({scopedSlots:e._u([{key:\"default\",fn:function(t){var a=t.attribute;return[e._v(\" \"+e._s(a.title||\"Default\")+\": \"),n(\"code\",[e._v(e._s(a.value))])]}}],null,!1,4247435012)},\"ParameterMetaAttribute\",{kind:e.AttributeKind.default,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.minimum)?n(\"ParameterMetaAttribute\",e._b({scopedSlots:e._u([{key:\"default\",fn:function(t){var a=t.attribute;return[e._v(\" \"+e._s(a.title||\"Minimum\")+\": \"),n(\"code\",[e._v(e._s(a.value))])]}}],null,!1,455861177)},\"ParameterMetaAttribute\",{kind:e.AttributeKind.minimum,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.minimumExclusive)?n(\"ParameterMetaAttribute\",e._b({scopedSlots:e._u([{key:\"default\",fn:function(t){var a=t.attribute;return[e._v(\" \"+e._s(a.title||\"Minimum\")+\": \"),n(\"code\",[e._v(\"> \"+e._s(a.value))])]}}],null,!1,3844501612)},\"ParameterMetaAttribute\",{kind:e.AttributeKind.minimumExclusive,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.maximum)?n(\"ParameterMetaAttribute\",e._b({scopedSlots:e._u([{key:\"default\",fn:function(t){var a=t.attribute;return[e._v(\" \"+e._s(a.title||\"Maximum\")+\": \"),n(\"code\",[e._v(e._s(a.value))])]}}],null,!1,19641767)},\"ParameterMetaAttribute\",{kind:e.AttributeKind.maximum,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.maximumExclusive)?n(\"ParameterMetaAttribute\",e._b({scopedSlots:e._u([{key:\"default\",fn:function(t){var a=t.attribute;return[e._v(\" \"+e._s(a.title||\"Maximum\")+\": \"),n(\"code\",[e._v(\"< \"+e._s(a.value))])]}}],null,!1,4289558576)},\"ParameterMetaAttribute\",{kind:e.AttributeKind.maximumExclusive,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.allowedTypes)?n(\"ParameterMetaAttribute\",e._b({scopedSlots:e._u([{key:\"default\",fn:function(t){var a=t.attribute;return[e._v(\" \"+e._s(e.fallbackToValues(a).length>1?\"Possible types\":\"Type\")+\": \"),n(\"code\",[e._l(e.fallbackToValues(a),(function(t,i){return[e._l(t,(function(t,s){return[n(\"DeclarationToken\",e._b({key:i+\"-\"+s},\"DeclarationToken\",t,!1)),i+1<e.fallbackToValues(a).length?[e._v(\", \")]:e._e()]}))]}))],2)]}}],null,!1,1050471405)},\"ParameterMetaAttribute\",{kind:e.AttributeKind.allowedTypes,attributes:e.attributesObject,changes:e.changes},!1)):e._e(),e.shouldRender(e.AttributeKind.allowedValues)?n(\"ParameterMetaAttribute\",e._b({scopedSlots:e._u([{key:\"default\",fn:function(t){var a=t.attribute;return[e._v(\" \"+e._s(e.fallbackToValues(a).length>1?\"Possible values\":\"Value\")+\": \"),n(\"code\",[e._v(e._s(e.fallbackToValues(a).join(\", \")))])]}}],null,!1,1507632019)},\"ParameterMetaAttribute\",{kind:e.AttributeKind.allowedValues,attributes:e.attributesObject,changes:e.changes},!1)):e._e()],1)},As=[],js=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"RenderChanged\",{attrs:{value:e.attributes[e.kind],changes:e.changes[e.kind]},scopedSlots:e._u([{key:\"default\",fn:function(t){var a=t.value;return n(\"div\",{staticClass:\"property-metadata\"},[e._t(\"default\",null,{attribute:a})],2)}}],null,!0)})},Ls=[];const Es={added:\"change-added\",removed:\"change-removed\"};var Bs,Rs,Ns={name:\"RenderChanged\",constants:{ChangedClasses:Es},props:{changes:{type:Object,default:()=>({new:null,previous:null})},value:{type:[Object,Array,String,Boolean],default:null},wrapChanges:{type:Boolean,default:!0},renderSingleChange:{type:Boolean,default:!1}},render(e){const{value:t,changes:n={},wrapChanges:a,renderSingleChange:i}=this,{new:s,previous:r}=n,o=(t,n)=>{const i=this.$scopedSlots.default({value:t});return n&&a?e(\"div\",{class:n},[i]):i?i[0]:null};if(s||r){const t=o(s,Es.added),n=o(r,Es.removed);return i?s&&!r?t:n:e(\"div\",{class:\"property-changegroup\"},[s?t:\"\",r?n:\"\"])}return o(t)}},zs=Ns,Ms=Object(R[\"a\"])(zs,Bs,Rs,!1,null,null,null),Ks=Ms.exports,qs={name:\"ParameterMetaAttribute\",components:{RenderChanged:Ks},props:{kind:{type:String,required:!0},attributes:{type:Object,required:!0},changes:{type:Object,default:()=>({})}}},Fs=qs,Vs=(n(\"2822\"),Object(R[\"a\"])(Fs,js,Ls,!1,null,\"8590589e\",null)),Hs=Vs.exports;const Ws={allowedTypes:\"allowedTypes\",allowedValues:\"allowedValues\",default:\"default\",maximum:\"maximum\",maximumExclusive:\"maximumExclusive\",minimum:\"minimum\",minimumExclusive:\"minimumExclusive\"};var Us={name:\"ParameterAttributes\",components:{ParameterMetaAttribute:Hs,DeclarationToken:va},constants:{AttributeKind:Ws},props:{attributes:{type:Array,default:()=>[]},changes:{type:Object,default:()=>({})}},computed:{AttributeKind:()=>Ws,attributesObject:({attributes:e})=>e.reduce((e,t)=>({...e,[t.kind]:t}),{})},methods:{shouldRender(e){return Object.prototype.hasOwnProperty.call(this.attributesObject,e)},fallbackToValues:e=>{const t=e||[];return Array.isArray(t)?t:t.values}}},Gs=Us,Xs=Object(R[\"a\"])(Gs,Ps,As,!1,null,null,null),Ys=Xs.exports,Js=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"RenderChanged\",{attrs:{renderSingleChange:\"\",value:e.value,changes:e.changes},scopedSlots:e._u([{key:\"default\",fn:function(t){var a=t.value;return a?n(\"span\",{staticClass:\"property-text\"},[e._t(\"default\")],2):e._e()}}],null,!0)})},Qs=[],Zs={name:\"PossiblyChangedTextAttribute\",components:{RenderChanged:Ks},props:{changes:{type:Object,required:!1},value:{type:Boolean,default:!1}}},er=Zs,tr=(n(\"5c57\"),Object(R[\"a\"])(er,Js,Qs,!1,null,null,null)),nr=tr.exports,ar=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"RenderChanged\",{attrs:{value:e.type,wrapChanges:!1,changes:e.changes},scopedSlots:e._u([{key:\"default\",fn:function(t){var a=t.value;return n(\"DeclarationTokenGroup\",{staticClass:\"property-metadata property-type\",attrs:{type:e.getValues(a)}})}}])})},ir=[],sr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.type&&e.type.length?n(\"div\",[n(\"code\",e._l(e.type,(function(t,a){return n(\"DeclarationToken\",e._b({key:a},\"DeclarationToken\",t,!1))})),1)]):e._e()},rr=[],or={name:\"DeclarationTokenGroup\",components:{DeclarationToken:va},props:{type:{type:Array,default:()=>[],required:!1}}},lr=or,cr=Object(R[\"a\"])(lr,sr,rr,!1,null,null,null),ur=cr.exports,dr={name:\"PossiblyChangedType\",components:{DeclarationTokenGroup:ur,RenderChanged:Ks},props:{type:{type:Array,required:!0},changes:{type:Object,required:!1}},methods:{getValues(e){return Array.isArray(e)?e:e.values}}},hr=dr,pr=(n(\"2f87\"),Object(R[\"a\"])(hr,ar,ir,!1,null,\"0a648a1e\",null)),fr=pr.exports,gr={name:\"PropertyTable\",mixins:[ks],components:{Badge:bn,WordBreak:It[\"a\"],PossiblyChangedTextAttribute:nr,PossiblyChangedType:fr,ParameterAttributes:Ys,ContentNode:Bt,OnThisPageSection:Zt,ParametersTable:Ds},props:{title:{type:String,required:!0},properties:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(vi[\"a\"])(e),propertyChanges:({apiChanges:e})=>(e||{}).properties},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},mr=gr,yr=(n(\"c875\"),Object(R[\"a\"])(mr,Cs,Ss,!1,null,\"1b54be82\",null)),vr=yr.exports,br=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"OnThisPageSection\",{attrs:{anchor:e.anchor,title:e.title}},[n(\"h2\",[e._v(e._s(e.title))]),n(\"ParametersTable\",{attrs:{parameters:[e.bodyParam],changes:e.bodyChanges,keyBy:\"key\"},scopedSlots:e._u([{key:\"symbol\",fn:function(t){var a=t.type,i=t.content,s=t.changes,r=t.name;return[e.shouldShiftType({name:r,content:i})?e._e():n(\"PossiblyChangedType\",{attrs:{type:a,changes:s.type}})]}},{key:\"description\",fn:function(t){var a=t.name,i=t.content,s=t.mimeType,r=t.type,o=t.changes;return[e.shouldShiftType({name:a,content:i})?n(\"PossiblyChangedType\",{attrs:{type:r,changes:o.type}}):e._e(),i?n(\"ContentNode\",{attrs:{content:i}}):e._e(),s?n(\"PossiblyChangedMimetype\",{attrs:{mimetype:s,changes:o.mimetype,change:o.change}}):e._e()]}}])}),e.parts.length?[n(\"h3\",[e._v(\"Parts\")]),n(\"ParametersTable\",{staticClass:\"parts\",attrs:{parameters:e.parts,changes:e.partsChanges},scopedSlots:e._u([{key:\"symbol\",fn:function(t){var a=t.name,i=t.type,s=t.content,r=t.changes;return[n(\"div\",{staticClass:\"part-name\"},[n(\"WordBreak\",{attrs:{tag:\"code\"}},[e._v(e._s(a))])],1),s?n(\"PossiblyChangedType\",{attrs:{type:i,changes:r.type}}):e._e()]}},{key:\"description\",fn:function(t){var a=t.content,i=t.mimeType,s=t.required,r=t.type,o=t.attributes,l=t.changes,c=t.readOnly;return[n(\"div\",[a?e._e():n(\"PossiblyChangedType\",{attrs:{type:r,changes:l.type}}),n(\"PossiblyChangedTextAttribute\",{attrs:{changes:l.required,value:s}},[e._v(\"(Required) \")]),n(\"PossiblyChangedTextAttribute\",{attrs:{changes:l.readOnly,value:c}},[e._v(\"(Read only) \")]),a?n(\"ContentNode\",{attrs:{content:a}}):e._e(),i?n(\"PossiblyChangedMimetype\",{attrs:{mimetype:i,changes:l.mimetype,change:l.change}}):e._e(),n(\"ParameterAttributes\",{attrs:{attributes:o,changes:l.attributes}})],1)]}}],null,!1,1779956822)})]:e._e()],2)},Tr=[],_r=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"RenderChanged\",{attrs:{changes:e.changeValues,value:e.mimetype},scopedSlots:e._u([{key:\"default\",fn:function(t){var a=t.value;return n(\"div\",{staticClass:\"response-mimetype\"},[e._v(\"Content-Type: \"+e._s(a))])}}])})},Cr=[],Sr={name:\"PossiblyChangedMimetype\",components:{RenderChanged:Ks},props:{mimetype:{type:String,required:!0},changes:{type:[Object,String],required:!1},change:{type:String,required:!1}},computed:{changeValues({change:e,changes:t}){return e===Ra.modified&&\"string\"!==typeof t?t:void 0}}},kr=Sr,wr=(n(\"a91f\"),Object(R[\"a\"])(kr,_r,Cr,!1,null,\"2faa6020\",null)),xr=wr.exports;const Ir=\"restRequestBody\";var Or={name:\"RestBody\",mixins:[ks],components:{PossiblyChangedMimetype:xr,PossiblyChangedTextAttribute:nr,PossiblyChangedType:fr,WordBreak:It[\"a\"],ParameterAttributes:Ys,ContentNode:Bt,OnThisPageSection:Zt,ParametersTable:Ds},constants:{ChangesKey:Ir},props:{bodyContentType:{type:Array,required:!0},content:{type:Array},mimeType:{type:String,required:!0},parts:{type:Array,default:()=>[]},title:{type:String,required:!0}},computed:{anchor:({title:e})=>Object(vi[\"a\"])(e),bodyParam:({bodyContentType:e,content:t,mimeType:n})=>({key:Ir,content:t,mimeType:n,type:e}),bodyChanges:({apiChanges:e})=>e||{},partsChanges:({bodyChanges:e})=>(e[Ir]||{}).parts},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},$r=Or,Dr=(n(\"7500\"),Object(R[\"a\"])($r,br,Tr,!1,null,\"1b311f59\",null)),Pr=Dr.exports,Ar=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"OnThisPageSection\",{attrs:{anchor:e.anchor,title:e.title}},[n(\"h2\",[e._v(e._s(e.title))]),n(\"ParametersTable\",{attrs:{parameters:e.parameters,changes:e.parameterChanges},scopedSlots:e._u([{key:\"symbol\",fn:function(t){var a=t.name,i=t.type,s=t.content,r=t.changes,o=t.deprecated;return[n(\"div\",{staticClass:\"param-name\",class:{deprecated:o}},[n(\"WordBreak\",{attrs:{tag:\"code\"}},[e._v(e._s(a))])],1),e.shouldShiftType({content:s,name:a})?e._e():n(\"PossiblyChangedType\",{attrs:{type:i,changes:r.type}})]}},{key:\"description\",fn:function(t){var a=t.name,i=t.type,s=t.content,r=t.required,o=t.attributes,l=t.changes,c=t.deprecated,u=t.readOnly;return[n(\"div\",[e.shouldShiftType({content:s,name:a})?n(\"PossiblyChangedType\",{attrs:{type:i,changes:l.type}}):e._e(),c?[n(\"Badge\",{staticClass:\"param-deprecated\",attrs:{variant:\"deprecated\"}}),e._v(\"  \")]:e._e(),n(\"PossiblyChangedTextAttribute\",{attrs:{changes:l.required,value:r}},[e._v(\"(Required) \")]),n(\"PossiblyChangedTextAttribute\",{attrs:{changes:l.readOnly,value:u}},[e._v(\"(Read only) \")]),s?n(\"ContentNode\",{attrs:{content:s}}):e._e(),n(\"ParameterAttributes\",{attrs:{attributes:o,changes:l}})],2)]}}])})],1)},jr=[],Lr={name:\"RestParameters\",mixins:[ks],components:{Badge:bn,PossiblyChangedType:fr,PossiblyChangedTextAttribute:nr,ParameterAttributes:Ys,WordBreak:It[\"a\"],ContentNode:Bt,OnThisPageSection:Zt,ParametersTable:Ds},props:{title:{type:String,required:!0},parameters:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(vi[\"a\"])(e),parameterChanges:({apiChanges:e})=>(e||{}).restParameters},methods:{shouldShiftType:({content:e=[],name:t})=>!e.length&&t}},Er=Lr,Br=(n(\"18b3\"),Object(R[\"a\"])(Er,Ar,jr,!1,null,\"5accae2c\",null)),Rr=Br.exports,Nr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"OnThisPageSection\",{attrs:{anchor:e.anchor,title:e.title}},[n(\"h2\",[e._v(e._s(e.title))]),n(\"ParametersTable\",{attrs:{parameters:e.responses,changes:e.propertyChanges,\"key-by\":\"status\"},scopedSlots:e._u([{key:\"symbol\",fn:function(t){var a=t.status,i=t.type,s=t.reason,r=t.content,o=t.changes;return[n(\"div\",{staticClass:\"response-name\"},[n(\"code\",[e._v(\" \"+e._s(a)+\" \"),n(\"span\",{staticClass:\"reason\"},[e._v(e._s(s))])])]),e.shouldShiftType({content:r,reason:s,status:a})?e._e():n(\"PossiblyChangedType\",{attrs:{type:i,changes:o.type}})]}},{key:\"description\",fn:function(t){var a=t.content,i=t.mimetype,s=t.reason,r=t.type,o=t.status,l=t.changes;return[e.shouldShiftType({content:a,reason:s,status:o})?n(\"PossiblyChangedType\",{attrs:{type:r,changes:l.type}}):e._e(),n(\"div\",{staticClass:\"response-reason\"},[n(\"code\",[e._v(e._s(s))])]),a?n(\"ContentNode\",{attrs:{content:a}}):e._e(),i?n(\"PossiblyChangedMimetype\",{attrs:{mimetype:i,changes:l.mimetype,change:l.change}}):e._e()]}}])})],1)},zr=[],Mr={name:\"RestResponses\",mixins:[ks],components:{PossiblyChangedMimetype:xr,PossiblyChangedType:fr,ContentNode:Bt,OnThisPageSection:Zt,ParametersTable:Ds},props:{title:{type:String,required:!0},responses:{type:Array,required:!0}},computed:{anchor:({title:e})=>Object(vi[\"a\"])(e),propertyChanges:({apiChanges:e})=>(e||{}).restResponses},methods:{shouldShiftType:({content:e=[],reason:t,status:n})=>!(e.length||t)&&n}},Kr=Mr,qr=(n(\"e335\"),Object(R[\"a\"])(Kr,Nr,zr,!1,null,\"57796e8c\",null)),Fr=qr.exports;const Vr={content:\"content\",declarations:\"declarations\",details:\"details\",parameters:\"parameters\",possibleValues:\"possibleValues\",properties:\"properties\",restBody:\"restBody\",restCookies:\"restCookies\",restEndpoint:\"restEndpoint\",restHeaders:\"restHeaders\",restParameters:\"restParameters\",restResponses:\"restResponses\"};var Hr={name:\"PrimaryContent\",components:{Declaration:Ji,GenericContent:gs,Parameters:_s,PropertyListKeyDetails:cs,PropertyTable:vr,RestBody:Pr,RestEndpoint:ji,RestParameters:Rr,RestResponses:Fr,PossibleValues:gi},constants:{SectionKind:Vr},props:{conformance:{type:Object,required:!1},sections:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(Vr,e))}},computed:{span(){return{large:9,medium:9,small:12}}},methods:{componentFor(e){return{[Vr.content]:gs,[Vr.declarations]:Ji,[Vr.details]:cs,[Vr.parameters]:_s,[Vr.properties]:vr,[Vr.restBody]:Pr,[Vr.restParameters]:Rr,[Vr.restHeaders]:Rr,[Vr.restCookies]:Rr,[Vr.restEndpoint]:ji,[Vr.restResponses]:Fr,[Vr.possibleValues]:gi}[e.kind]},propsFor(e){const{conformance:t}=this,{bodyContentType:n,content:a,declarations:i,details:s,items:r,kind:o,mimeType:l,parameters:c,title:u,tokens:d,values:h}=e;return{[Vr.content]:{content:a},[Vr.declarations]:{conformance:t,declarations:i},[Vr.details]:{details:s},[Vr.parameters]:{parameters:c},[Vr.possibleValues]:{values:h},[Vr.properties]:{properties:r,title:u},[Vr.restBody]:{bodyContentType:n,content:a,mimeType:l,parts:c,title:u},[Vr.restCookies]:{parameters:r,title:u},[Vr.restEndpoint]:{tokens:d,title:u},[Vr.restHeaders]:{parameters:r,title:u},[Vr.restParameters]:{parameters:r,title:u},[Vr.restResponses]:{responses:r,title:u}}[o]}}},Wr=Hr,Ur=(n(\"0b15\"),Object(R[\"a\"])(Wr,li,ci,!1,null,\"0e405a2d\",null)),Gr=Ur.exports,Xr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"ContentTable\",{attrs:{anchor:\"relationships\",title:\"Relationships\"}},e._l(e.sectionsWithSymbols,(function(e){return n(\"Section\",{key:e.type,attrs:{title:e.title}},[n(\"List\",{attrs:{symbols:e.symbols,type:e.type}})],1)})),1)},Yr=[],Jr=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"ul\",{ref:\"apiChangesDiff\",staticClass:\"relationships-list\",class:e.classes},e._l(e.symbols,(function(t){return n(\"li\",{key:t.identifier,staticClass:\"relationships-item\"},[t.url?n(\"router-link\",{staticClass:\"link\",attrs:{to:e.buildUrl(t.url,e.$route.query)}},[n(\"WordBreak\",{attrs:{tag:\"code\"}},[e._v(e._s(t.title))])],1):n(\"WordBreak\",{attrs:{tag:\"code\"}},[e._v(e._s(t.title))]),t.conformance?n(\"ConditionalConstraints\",{attrs:{constraints:t.conformance.constraints,prefix:t.conformance.conformancePrefix}}):e._e()],1)})),0)},Qr=[];const Zr=3,eo={conformsTo:\"conformance\",inheritsFrom:\"inheritance\",inheritedBy:\"inheritedBy\"};var to={name:\"RelationshipsList\",components:{ConditionalConstraints:Da,WordBreak:It[\"a\"]},inject:[\"store\",\"identifier\"],mixins:[Wa,Ha],props:{symbols:{type:Array,required:!0},type:{type:String,required:!0}},data(){return{state:this.store.state}},computed:{classes({changeType:e,multipleLinesClass:t,hasMultipleLinesAfterAPIChanges:n}){return[{inline:this.shouldDisplayInline,column:!this.shouldDisplayInline,[\"changed changed-\"+e]:!!e,[t]:n}]},hasAvailabilityConstraints(){return this.symbols.some(e=>!!(e.conformance||{}).constraints)},changes({identifier:e,state:{apiChanges:t}}){return(t||{})[e]||{}},changeType({changes:e,type:t}){const n=eo[t];if(e.change!==Ra.modified)return e.change;const a=e[n];if(!a)return;const i=(e,t)=>e.map((e,n)=>[e,t[n]]),s=i(a.previous,a.new).some(([e,t])=>e.content?0===e.content.length&&t.content.length>0:!!t.content);return s?Ra.added:Ra.modified},shouldDisplayInline(){const{hasAvailabilityConstraints:e,symbols:t}=this;return t.length<=Zr&&!e}},methods:{buildUrl:q[\"b\"]}},no=to,ao=(n(\"4281\"),Object(R[\"a\"])(no,Jr,Qr,!1,null,\"6497632e\",null)),io=ao.exports,so={name:\"Relationships\",inject:{references:{default(){return{}}}},components:{ContentTable:an,List:io,Section:un},props:{sections:{type:Array,required:!0}},computed:{sectionsWithSymbols(){return this.sections.map(e=>({...e,symbols:e.identifiers.reduce((e,t)=>this.references[t]?e.concat(this.references[t]):e,[])}))}}},ro=so,oo=Object(R[\"a\"])(ro,Xr,Yr,!1,null,null,null),lo=oo.exports,co=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"Section\",{staticClass:\"availability\",attrs:{role:\"complementary\",\"aria-label\":\"Availability\"}},[e._l(e.technologies,(function(t){return n(\"Badge\",{key:t,staticClass:\"technology\"},[n(\"TechnologyIcon\",{staticClass:\"tech-icon\"}),e._v(\" \"+e._s(t)+\" \")],1)})),e._l(e.platforms,(function(t){return n(\"Badge\",{key:t.name,staticClass:\"platform\",class:e.changesClassesFor(t.name)},[n(\"AvailabilityRange\",{attrs:{deprecatedAt:t.deprecatedAt,introducedAt:t.introducedAt,platformName:t.name}}),t.deprecatedAt?n(\"span\",{staticClass:\"deprecated\"},[e._v(\"Deprecated\")]):t.beta?n(\"span\",{staticClass:\"beta\"},[e._v(\"Beta\")]):e._e()],1)}))],2)},uo=[],ho=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"span\",{attrs:{role:\"text\",\"aria-label\":e.ariaLabel,title:e.description}},[e._v(\" \"+e._s(e.text)+\" \")])},po=[],fo={name:\"AvailabilityRange\",props:{deprecatedAt:{type:String,required:!1},introducedAt:{type:String,required:!0},platformName:{type:String,required:!0}},computed:{ariaLabel(){const{deprecatedAt:e,description:t,text:n}=this;return[n].concat(e?\"Deprecated\":[]).concat(t).join(\", \")},description(){const{deprecatedAt:e,introducedAt:t,platformName:n}=this;return e?`Introduced in ${n} ${t} and deprecated in ${n} ${e}`:`Available on ${n} ${t} and later`},text(){const{deprecatedAt:e,introducedAt:t,platformName:n}=this;return e?`${n} ${t}–${e}`:`${n} ${t}+`}}},go=fo,mo=Object(R[\"a\"])(go,ho,po,!1,null,null,null),yo=mo.exports,vo={name:\"Availability\",mixins:[Wa],inject:[\"identifier\",\"store\"],components:{Badge:bn,AvailabilityRange:yo,Section:ee,TechnologyIcon:Ie},props:{platforms:{type:Array,required:!0},technologies:{type:Array,required:!1}},data(){return{state:this.store.state}},methods:{changeFor(e){const{identifier:t,state:{apiChanges:n}}=this,{availability:a={}}=(n||{})[t]||{},i=a[e];if(i)return i.deprecated?Ra.deprecated:i.introduced&&!i.introduced.previous?Ra.added:Ra.modified}}},bo=vo,To=(n(\"c459\"),Object(R[\"a\"])(bo,co,uo,!1,null,\"4df209be\",null)),_o=To.exports,Co=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"TopicsTable\",{attrs:{anchor:\"see-also\",title:\"See Also\",isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections}})},So=[],ko={name:\"SeeAlso\",components:{TopicsTable:ai},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:ai.props.sections}},wo=ko,xo=Object(R[\"a\"])(wo,Co,So,!1,null,null,null),Io=xo.exports,Oo=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"topictitle\"},[e.eyebrow?n(\"span\",{staticClass:\"eyebrow\"},[e._v(e._s(e.eyebrow))]):e._e(),n(\"h1\",{staticClass:\"title\"},[e._t(\"default\"),e._t(\"after\")],2)])},$o=[],Do={name:\"Title\",props:{eyebrow:{type:String,required:!1}}},Po=Do,Ao=(n(\"6b62\"),Object(R[\"a\"])(Po,Oo,$o,!1,null,\"2e777455\",null)),jo=Ao.exports,Lo=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"TopicsTable\",{attrs:{anchor:\"topics\",title:\"Topics\",isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,sections:e.sections}})},Eo=[],Bo={name:\"Topics\",components:{TopicsTable:ai},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,sections:ai.props.sections}},Ro=Bo,No=Object(R[\"a\"])(Ro,Lo,Eo,!1,null,null,null),zo=No.exports,Mo={name:\"DocumentationTopic\",mixins:[$[\"a\"]],inject:{isTargetIDE:{default(){return!1}},store:{default(){return{reset(){},state:{onThisPageSections:[]}}}}},components:{DocumentationHero:xt,Abstract:Mt,Aside:D[\"a\"],BetaLegalText:z,ContentNode:Bt,DefaultImplementations:oi,DownloadButton:Kt[\"a\"],LanguageSwitcher:ue,PrimaryContent:Gr,Relationships:lo,RequirementMetadata:Ba,Availability:_o,SeeAlso:Io,Title:jo,Topics:zo,WordBreak:It[\"a\"]},props:{abstract:{type:Array,required:!1},conformance:{type:Object,required:!1},defaultImplementationsSections:{type:Array,required:!1},downloadNotAvailableSummary:{type:Array,required:!1},deprecationSummary:{type:Array,required:!1},diffAvailability:{type:Object,required:!1},modules:{type:Array,required:!1},hierarchy:{type:Object,default:()=>({})},interfaceLanguage:{type:String,required:!0},identifier:{type:String,required:!0},isRequirement:{type:Boolean,default:()=>!1},platforms:{type:Array,required:!1},primaryContentSections:{type:Array,required:!1},references:{type:Object,required:!0},relationshipsSections:{type:Array,required:!1},roleHeading:{type:String,required:!1},title:{type:String,required:!0},topicSections:{type:Array,required:!1},sampleCodeDownload:{type:Object,required:!1},seeAlsoSections:{type:Array,required:!1},languagePaths:{type:Object,default:()=>({})},tags:{type:Array,required:!0},objcPath:{type:String,required:!1},swiftPath:{type:String,required:!1},isSymbolDeprecated:{type:Boolean,required:!1},isSymbolBeta:{type:Boolean,required:!1},symbolKind:{type:String,default:\"\"},role:{type:String,default:\"\"}},provide(){return{references:this.references,identifier:this.identifier,languages:new Set(Object.keys(this.languagePaths)),interfaceLanguage:this.interfaceLanguage,symbolKind:this.symbolKind}},data(){return{topicState:this.store.state}},computed:{defaultImplementationsCount(){return(this.defaultImplementationsSections||[]).reduce((e,t)=>e+t.identifiers.length,0)},onThisPageSections(){return this.topicState.onThisPageSections},hasAvailability:({platforms:e,technologies:t})=>(e||[]).length||(t||[]).length,hasBetaContent:({platforms:e})=>e&&e.length&&e.some(e=>e.beta),pageTitle:({title:e})=>e,pageDescription:({abstract:e,extractFirstParagraphText:t})=>e?t(e):null,shouldShowLanguageSwitcher:({objcPath:e,swiftPath:t,isTargetIDE:n})=>!!(e&&t&&n),enhanceBackground:({symbolKind:e})=>!e||\"module\"===e,shortHero:({roleHeading:e,abstract:t,sampleCodeDownload:n,hasAvailability:a,shouldShowLanguageSwitcher:i})=>!!e+!!t+!!n+!!a+i<=1,technologies({modules:e=[]}){const t=e.reduce((e,t)=>(e.push(t.name),e.concat(t.relatedModules||[])),[]);return t.length>1?t:[]},titleBreakComponent:({enhanceBackground:e})=>e?\"span\":It[\"a\"],showContainer:({isRequirement:e,deprecationSummary:t,downloadNotAvailableSummary:n,primaryContentSections:a})=>e||t&&t.length||n&&n.length||a&&a.length,tagName:({isSymbolDeprecated:e})=>e?\"Deprecated\":\"Beta\"},methods:{normalizePath(e){return e.startsWith(\"/\")?e:\"/\"+e}},created(){if(this.topicState.preferredLanguage===O[\"a\"].objectiveC.key.url&&this.interfaceLanguage!==O[\"a\"].objectiveC.key.api&&this.objcPath&&this.$route.query.language!==O[\"a\"].objectiveC.key.url){const{query:e}=this.$route;this.$nextTick().then(()=>{this.$router.replace({path:this.normalizePath(this.objcPath),query:{...e,language:O[\"a\"].objectiveC.key.url}})})}this.store.reset()}},Ko=Mo,qo=(n(\"be2a\"),Object(R[\"a\"])(Ko,x,I,!1,null,\"a877f03c\",null)),Fo=qo.exports,Vo=n(\"2b0e\");const Ho=()=>({[Ra.modified]:0,[Ra.added]:0,[Ra.deprecated]:0});var Wo={state:{apiChanges:null,apiChangesCounts:Ho(),selectedAPIChangesVersion:null},setAPIChanges(e){this.state.apiChanges=e},setSelectedAPIChangesVersion(e){this.state.selectedAPIChangesVersion=e},resetApiChanges(){this.state.apiChanges=null,this.state.apiChangesCounts=Ho()},async updateApiChangesCounts(){await Vo[\"default\"].nextTick(),Object.keys(this.state.apiChangesCounts).forEach(e=>{this.state.apiChangesCounts[e]=this.countChangeType(e)})},countChangeType(e){if(document&&document.querySelectorAll){const t=`.changed-${e}:not(.changed-total)`;return document.querySelectorAll(t).length}return 0}},Uo=n(\"d369\");const{state:Go,...Xo}=Wo;var Yo,Jo,Qo={state:{onThisPageSections:[],preferredLanguage:Uo[\"a\"].preferredLanguage,...Go},reset(){this.state.onThisPageSections=[],this.state.preferredLanguage=Uo[\"a\"].preferredLanguage,this.resetApiChanges()},addOnThisPageSection(e){this.state.onThisPageSections.push(e)},setPreferredLanguage(e){this.state.preferredLanguage=e,Uo[\"a\"].preferredLanguage=this.state.preferredLanguage},...Xo},Zo=n(\"8590\"),el=n(\"66c9\"),tl=n(\"bb52\"),nl=n(\"146e\"),al={name:\"NavigatorDataProvider\",props:{interfaceLanguage:{type:String,default:O[\"a\"].swift.key.url},technology:{type:Object,required:!0},apiChangesVersion:{type:String,default:\"\"}},data(){return{isFetching:!1,errorFetching:!1,isFetchingAPIChanges:!1,navigationIndex:{[O[\"a\"].swift.key.url]:[]},diffs:null}},computed:{technologyPath:({technology:e})=>{const t=/(\\/documentation\\/(?:[^/]+))\\/?/.exec(e.url);return t?t[1]:\"\"},technologyWithChildren({navigationIndex:e,interfaceLanguage:t,technologyPath:n}){let a=e[t]||[];return a.length||(a=e[O[\"a\"].swift.key.url]||[]),a.find(e=>n.toLowerCase()===e.path.toLowerCase())}},created(){this.fetchIndexData()},methods:{async fetchIndexData(){try{this.isFetching=!0;const{interfaceLanguages:e}=await Object(w[\"c\"])();this.navigationIndex=Object.freeze(e)}catch(e){this.errorFetching=!0}finally{this.isFetching=!1}}},render(){return this.$scopedSlots.default({technology:this.technologyWithChildren,isFetching:this.isFetching,errorFetching:this.errorFetching,isFetchingAPIChanges:this.isFetchingAPIChanges,apiChanges:this.diffs})}},il=al,sl=Object(R[\"a\"])(il,Yo,Jo,!1,null,null,null),rl=sl.exports,ol=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"adjustable-sidebar-width\"},[n(\"div\",{ref:\"sidebar\",staticClass:\"sidebar\"},[n(\"div\",{ref:\"aside\",staticClass:\"aside\",class:e.asideClasses,style:e.asideStyles,on:{transitionstart:function(t){e.isTransitioning=!0},transitionend:function(t){e.isTransitioning=!1}}},[e._t(\"aside\",null,{animationClass:\"aside-animated-child\",scrollLockID:e.scrollLockID,breakpoint:e.breakpoint})],2),n(\"div\",{staticClass:\"resize-handle\",on:{mousedown:function(t){return t.preventDefault(),e.startDrag.apply(null,arguments)},touchstart:function(t){return t.preventDefault(),e.startDrag.apply(null,arguments)}}})]),n(\"div\",{staticClass:\"content\"},[e._t(\"default\")],2),n(\"BreakpointEmitter\",{attrs:{scope:e.BreakpointScopes.nav},on:{change:function(t){e.breakpoint=t}}})],1)},ll=[],cl=n(\"5d2d\");function ul(e,t,n,a){let i,s;return function(...r){function o(){clearTimeout(i),i=null}function l(){o(),e.apply(s,r)}if(s=this,!i||!n&&!a){if(!n)return o(),void(i=setTimeout(l,t));i=setTimeout(o,t),e.apply(s,r)}}}var dl=n(\"a97e\"),hl=n(\"63b8\"),pl=n(\"3908\"),fl=n(\"f2af\"),gl=n(\"c8e2\"),ml=n(\"95da\");function yl(e,t){let n,a;return function(...i){const s=this;if(!a)return e.apply(s,i),void(a=Date.now());clearTimeout(n),n=setTimeout(()=>{Date.now()-a>=t&&(e.apply(s,i),a=Date.now())},t-(Date.now()-a))}}var vl=n(\"942d\");const bl=\"sidebar\",Tl=1920,_l=543,Cl={touch:{move:\"touchmove\",end:\"touchend\"},mouse:{move:\"mousemove\",end:\"mouseup\"}},Sl=(e,t=window.innerWidth)=>{const n=Math.min(t,Tl);return Math.floor(Math.min(n*(e/100),n))},kl={medium:30,large:20},wl={medium:50,large:50},xl=\"sidebar-scroll-lock\";var Il={name:\"AdjustableSidebarWidth\",constants:{SCROLL_LOCK_ID:xl},components:{BreakpointEmitter:dl[\"a\"]},props:{openExternally:{type:Boolean,default:!1}},data(){const e=window.innerWidth,t=window.innerHeight,n=hl[\"b\"].large,a=Sl(kl[n]),i=Sl(wl[n]),s=e>=Tl?_l:Math.round((a+i)/2),r=cl[\"c\"].get(bl,s);return{isDragging:!1,width:Math.min(Math.max(r,a),i),isTouch:!1,windowWidth:e,windowHeight:t,breakpoint:n,noTransition:!1,isTransitioning:!1,focusTrapInstance:null,mobileTopOffset:0,topOffset:0}},computed:{minWidthPercent:({breakpoint:e})=>kl[e]||0,maxWidthPercent:({breakpoint:e})=>wl[e]||100,maxWidth:({maxWidthPercent:e,windowWidth:t})=>Sl(e,t),minWidth:({minWidthPercent:e,windowWidth:t})=>Sl(e,t),widthInPx:({width:e})=>e+\"px\",events:({isTouch:e})=>e?Cl.touch:Cl.mouse,asideStyles:({widthInPx:e,mobileTopOffset:t,topOffset:n,windowHeight:a})=>({width:e,\"--top-offset\":n?n+\"px\":null,\"--top-offset-mobile\":t+\"px\",\"--app-height\":a+\"px\"}),asideClasses:({isDragging:e,openExternally:t,noTransition:n,isTransitioning:a,mobileTopOffset:i})=>({dragging:e,\"force-open\":t,\"no-transition\":n,animating:a,\"has-mobile-top-offset\":i}),scrollLockID:()=>xl,BreakpointScopes:()=>hl[\"c\"]},async mounted(){window.addEventListener(\"keydown\",this.onEscapeKeydown),window.addEventListener(\"resize\",this.storeWindowSize,{passive:!0}),window.addEventListener(\"orientationchange\",this.storeWindowSize,{passive:!0}),this.storeTopOffset(),0===this.topOffset&&0===window.scrollY||window.addEventListener(\"scroll\",this.storeTopOffset,{passive:!0}),this.$once(\"hook:beforeDestroy\",()=>{window.removeEventListener(\"keydown\",this.onEscapeKeydown),window.removeEventListener(\"resize\",this.storeWindowSize),window.removeEventListener(\"orientationchange\",this.storeWindowSize),window.removeEventListener(\"scroll\",this.storeTopOffset),this.openExternally&&this.toggleScrollLock(!1),this.focusTrapInstance&&this.focusTrapInstance.destroy()}),await this.$nextTick(),this.focusTrapInstance=new gl[\"a\"](this.$refs.aside)},watch:{$route:\"closeMobileSidebar\",width:{immediate:!0,handler:ul((function(e){this.emitEventChange(e)}),250,!0,!0)},windowWidth:\"getWidthInCheck\",async breakpoint(e){this.getWidthInCheck(),e===hl[\"b\"].large&&this.closeMobileSidebar(),this.noTransition=!0,await Object(pl[\"b\"])(5),this.noTransition=!1},openExternally:\"handleExternalOpen\"},methods:{getWidthInCheck:ul((function(){this.width>this.maxWidth?this.width=this.maxWidth:this.width<this.minWidth&&(this.width=this.minWidth)}),50),onEscapeKeydown({key:e}){\"Escape\"===e&&this.closeMobileSidebar()},storeWindowSize:yl((async function(){await this.$nextTick(),this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight}),100),closeMobileSidebar(){this.openExternally&&this.$emit(\"update:openExternally\",!1)},startDrag({type:e}){this.isTouch=\"touchstart\"===e,this.isDragging||(this.isDragging=!0,document.addEventListener(this.events.move,this.handleDrag,{passive:this.isTouch}),document.addEventListener(this.events.end,this.stopDrag))},handleDrag(e){if(this.isTouch||e.preventDefault(),!this.isDragging)return;const{sidebar:t}=this.$refs,n=this.isTouch?e.touches[0].clientX:e.clientX;let a=n+window.scrollX-t.offsetLeft;a>this.maxWidth&&(a=this.maxWidth),this.width=Math.max(a,this.minWidth)},stopDrag(e){e.preventDefault(),this.isDragging&&(this.isDragging=!1,cl[\"c\"].set(bl,this.width),document.removeEventListener(this.events.move,this.handleDrag),document.removeEventListener(this.events.end,this.stopDrag),this.emitEventChange(this.width))},emitEventChange(e){this.$emit(\"width-change\",e)},getTopOffset(){const e=document.getElementById(vl[\"d\"]);if(!e)return 0;const{y:t}=e.getBoundingClientRect();return Math.max(t,0)},handleExternalOpen(e){e&&(this.mobileTopOffset=this.getTopOffset()),this.toggleScrollLock(e)},async toggleScrollLock(e){const t=document.getElementById(this.scrollLockID);e?(await this.$nextTick(),fl[\"a\"].lockScroll(t),this.focusTrapInstance.start(),ml[\"a\"].hide(this.$refs.aside)):(fl[\"a\"].unlockScroll(t),this.focusTrapInstance.stop(),ml[\"a\"].show(this.$refs.aside))},storeTopOffset:yl((function(){this.topOffset=this.getTopOffset()}),60)}},Ol=Il,$l=(n(\"3099\"),Object(R[\"a\"])(Ol,ol,ll,!1,null,\"453b0e76\",null)),Dl=$l.exports,Pl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"nav\",{staticClass:\"navigator\",attrs:{\"aria-labelledby\":e.INDEX_ROOT_KEY}},[e.isFetching?n(\"NavigatorCardInner\",{staticClass:\"loading-placeholder\"},[n(\"transition\",{attrs:{name:\"delay-visibility\",appear:\"\"}},[n(\"SpinnerIcon\",{staticClass:\"loading-spinner\"})],1)],1):n(\"NavigatorCard\",{attrs:{technology:e.technology.title,\"is-technology-beta\":e.technology.beta,\"technology-path\":e.technology.path||e.technology.url,type:e.type,children:e.flatChildren,\"active-path\":e.activePath,scrollLockID:e.scrollLockID,\"error-fetching\":e.errorFetching,breakpoint:e.breakpoint,\"api-changes\":e.apiChanges},on:{close:function(t){return e.$emit(\"close\")}}}),n(\"div\",{staticClass:\"visuallyhidden\",attrs:{\"aria-live\":\"polite\"}},[e._v(\" Navigator is \"+e._s(e.isFetching?\"loading\":\"ready\")+\" \")])],1)},Al=[],jl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"navigator-card\"},[n(\"div\",{staticClass:\"navigator-card-full-height\"},[n(\"NavigatorCardInner\",[n(\"div\",{staticClass:\"head-wrapper\"},[n(\"button\",{staticClass:\"close-card-mobile\",attrs:{\"aria-label\":\"Close documentation navigator\"},on:{click:function(t){return e.$emit(\"close\")}}},[n(\"SidenavIcon\",{staticClass:\"icon-inline close-icon\"})],1),n(\"Reference\",{staticClass:\"navigator-head\",attrs:{url:e.technologyPath,id:e.INDEX_ROOT_KEY}},[n(\"h2\",{staticClass:\"card-link\"},[e._v(\" \"+e._s(e.technology)+\" \")]),e.isTechnologyBeta?n(\"Badge\",{attrs:{variant:\"beta\"}}):e._e()],1)],1),e._t(\"post-head\"),n(\"div\",{staticClass:\"card-body\",on:{\"!keydown\":[function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"])?null:t.altKey?(t.preventDefault(),e.focusFirst.apply(null,arguments)):null},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"])?null:t.altKey?(t.preventDefault(),e.focusLast.apply(null,arguments)):null},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusPrev.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"])||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:(t.preventDefault(),e.focusNext.apply(null,arguments))}]}},[n(\"RecycleScroller\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.hasNodes,expression:\"hasNodes\"}],ref:\"scroller\",staticClass:\"scroller\",attrs:{id:e.scrollLockID,\"aria-label\":\"Documentation Navigator\",items:e.nodesToRender,\"item-size\":e.itemSize,buffer:1e3,\"emit-update\":\"\",\"key-field\":\"uid\"},on:{update:e.handleScrollerUpdate},nativeOn:{focusin:function(t){return e.handleFocusIn.apply(null,arguments)},focusout:function(t){return e.handleFocusOut.apply(null,arguments)}},scopedSlots:e._u([{key:\"default\",fn:function(t){var a=t.item,i=t.active,s=t.index;return[n(\"NavigatorCardItem\",{attrs:{item:a,isRendered:i,\"filter-pattern\":e.filterPattern,\"is-active\":a.uid===e.activeUID,\"is-bold\":e.activePathMap[a.uid],expanded:e.openNodes[a.uid],\"api-change\":e.apiChangesObject[a.path],isFocused:e.focusedIndex===s,enableFocus:!e.externalFocusChange},on:{toggle:e.toggle,\"toggle-full\":e.toggleFullTree,\"toggle-siblings\":e.toggleSiblings,navigate:e.handleNavigationChange,\"focus-parent\":e.focusNodeParent}})]}}])}),n(\"div\",{staticClass:\"visuallyhidden\",attrs:{\"aria-live\":\"polite\"}},[e._v(\" \"+e._s(e.politeAriaLive)+\" \")]),n(\"div\",{staticClass:\"no-items-wrapper\",attrs:{\"aria-live\":\"assertive\"}},[e._v(\" \"+e._s(e.assertiveAriaLive)+\" \")])],1)],2)],1),e.errorFetching?e._e():n(\"div\",{staticClass:\"filter-wrapper\"},[n(\"div\",{staticClass:\"navigator-filter\"},[n(\"div\",{staticClass:\"input-wrapper\"},[n(\"FilterInput\",{staticClass:\"filter-component\",attrs:{tags:e.availableTags,\"selected-tags\":e.selectedTagsModelValue,placeholder:\"Filter\",\"should-keep-open-on-blur\":!1,\"position-reversed\":e.isLargeBreakpoint,\"clear-filter-on-tag-select\":!1},on:{\"update:selectedTags\":function(t){e.selectedTagsModelValue=t},\"update:selected-tags\":function(t){e.selectedTagsModelValue=t},clear:e.clearFilters},model:{value:e.filter,callback:function(t){e.filter=t},expression:\"filter\"}})],1)])])])},Ll=[],El=n(\"e508\");const Bl=\"<root>\",Rl=32;function Nl(e){const t=Object(vi[\"h\"])(Object(vi[\"d\"])(e));return new RegExp(t,\"ig\")}var zl,Ml,Kl=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"navigator-card-inner\"},[e._t(\"default\")],2)},ql=[],Fl={name:\"NavigatorCardInner\"},Vl=Fl,Hl=(n(\"e6b8\"),Object(R[\"a\"])(Vl,Kl,ql,!1,null,\"7a09780d\",null)),Wl=Hl.exports,Ul=function(){var e,t=this,n=t.$createElement,a=t._self._c||n;return a(\"div\",{staticClass:\"navigator-card-item\",class:{expanded:t.expanded},style:{\"--nesting-index\":t.item.depth},attrs:{id:\"container-\"+t.item.uid,\"aria-hidden\":t.isRendered?null:\"true\"},on:{keydown:[function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"left\",37,e.key,[\"Left\",\"ArrowLeft\"])||\"button\"in e&&0!==e.button?null:(e.preventDefault(),t.handleLeftKeydown.apply(null,arguments))},function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"right\",39,e.key,[\"Right\",\"ArrowRight\"])||\"button\"in e&&2!==e.button||e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:(e.preventDefault(),t.handleRightKeydown.apply(null,arguments))},function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")?null:(e.preventDefault(),t.clickReference.apply(null,arguments))},function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"right\",39,e.key,[\"Right\",\"ArrowRight\"])?null:e.altKey?\"button\"in e&&2!==e.button?null:(e.preventDefault(),t.toggleEntireTree.apply(null,arguments)):null}]}},[a(\"div\",{staticClass:\"head-wrapper\",class:{active:t.isActive,\"is-group\":t.isGroupMarker}},[a(\"span\",{attrs:{hidden:\"\",id:t.usageLabel}},[t._v(\" To navigate the symbols, press Up Arrow, Down Arrow, Left Arrow or Right Arrow \")]),a(\"div\",{staticClass:\"depth-spacer\"},[t.isParent?a(\"button\",{staticClass:\"tree-toggle\",attrs:{tabindex:\"-1\",\"aria-labelledby\":t.item.uid,\"aria-expanded\":t.expanded?\"true\":\"false\",\"aria-describedby\":t.ariaDescribedBy},on:{click:[function(e){return e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:(e.preventDefault(),t.toggleTree.apply(null,arguments))},function(e){return e.altKey?(e.preventDefault(),t.toggleEntireTree.apply(null,arguments)):null},function(e){return e.metaKey?(e.preventDefault(),t.toggleSiblings.apply(null,arguments)):null}]}},[a(\"InlineChevronRightIcon\",{staticClass:\"icon-inline chevron\",class:{rotate:t.expanded,animating:t.idState.isOpening}})],1):t._e()]),t.isGroupMarker||t.apiChange?t.apiChange?a(\"span\",{staticClass:\"navigator-icon\",class:(e={},e[\"changed changed-\"+t.apiChange]=t.apiChange,e)}):t._e():a(\"NavigatorLeafIcon\",{staticClass:\"navigator-icon\",attrs:{type:t.item.type}}),a(\"div\",{staticClass:\"title-container\"},[t.isParent?a(\"span\",{attrs:{hidden:\"\",id:t.parentLabel}},[t._v(\", containing \"+t._s(t.item.childUIDs.length)+\" symbols\")]):t._e(),a(\"span\",{attrs:{id:t.siblingsLabel,hidden:\"\"}},[t._v(\" \"+t._s(t.item.index+1)+\" of \"+t._s(t.item.siblingsCount)+\" symbols inside \")]),a(t.refComponent,{ref:\"reference\",tag:\"component\",staticClass:\"leaf-link\",class:{bolded:t.isBold},attrs:{id:t.item.uid,url:t.isGroupMarker?null:t.item.path||\"\",tabindex:t.isFocused?\"0\":\"-1\",\"aria-describedby\":t.ariaDescribedBy+\" \"+t.usageLabel},nativeOn:{click:[function(e){return e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?null:t.handleClick.apply(null,arguments)},function(e){return e.altKey?(e.preventDefault(),t.toggleEntireTree.apply(null,arguments)):null}]}},[a(\"HighlightMatches\",{attrs:{text:t.item.title,matcher:t.filterPattern}})],1),t.isDeprecated?a(\"Badge\",{attrs:{variant:\"deprecated\"}}):t.isBeta?a(\"Badge\",{attrs:{variant:\"beta\"}}):t._e()],1)],1)])},Gl=[],Xl=n(\"34b0\"),Yl={name:\"HighlightMatch\",props:{text:{type:String,required:!0},matcher:{type:RegExp,default:void 0}},render(e){const{matcher:t,text:n}=this;if(!t)return e(\"p\",{class:\"highlight\"},n);const a=[];let i=0,s=null;const r=new RegExp(t,\"gi\");while(null!==(s=r.exec(n))){const t=s[0].length,r=s.index+t,o=n.slice(i,s.index);o&&a.push(e(\"span\",o));const l=n.slice(s.index,r);l&&a.push(e(\"span\",{class:\"match\"},l)),i=r}const o=n.slice(i,n.length);return o&&a.push(e(\"span\",o)),e(\"p\",{class:\"highlight\"},a)}},Jl=Yl,Ql=(n(\"b831\"),Object(R[\"a\"])(Jl,zl,Ml,!1,null,\"d75876e2\",null)),Zl=Ql.exports,ec={name:\"NavigatorCardItem\",mixins:[Object(El[\"a\"])({idProp:e=>e.item.uid})],components:{HighlightMatches:Zl,NavigatorLeafIcon:Ct,InlineChevronRightIcon:Xl[\"a\"],Reference:oa[\"a\"],Badge:bn},props:{isRendered:{type:Boolean,default:!1},item:{type:Object,required:!0},expanded:{type:Boolean,default:!1},filterPattern:{type:RegExp,default:void 0},isActive:{type:Boolean,default:!1},isBold:{type:Boolean,default:!1},apiChange:{type:String,default:null,validator:e=>Na.includes(e)},isFocused:{type:Boolean,default:()=>!1},enableFocus:{type:Boolean,default:!0}},idState(){return{isOpening:!1}},computed:{isGroupMarker:({item:{type:e}})=>e===pt.groupMarker,isParent:({item:e})=>!!e.childUIDs.length,parentLabel:({item:e})=>\"label-parent-\"+e.uid,siblingsLabel:({item:e})=>\"label-\"+e.uid,usageLabel:({item:e})=>\"usage-\"+e.uid,ariaDescribedBy({item:e,siblingsLabel:t,parentLabel:n,isParent:a}){const i=`${t} ${e.parent}`;return a?`${i} ${n}`:\"\"+i},isBeta:({item:{beta:e}})=>!!e,isDeprecated:({item:{deprecated:e}})=>!!e,refComponent:({isGroupMarker:e})=>e?\"h3\":oa[\"a\"]},methods:{toggleTree(){this.idState.isOpening=!0,this.$emit(\"toggle\",this.item)},toggleEntireTree(){this.idState.isOpening=!0,this.$emit(\"toggle-full\",this.item)},toggleSiblings(){this.idState.isOpening=!0,this.$emit(\"toggle-siblings\",this.item)},handleLeftKeydown(){this.expanded?this.toggleTree():this.$emit(\"focus-parent\",this.item)},handleRightKeydown(){!this.expanded&&this.isParent&&this.toggleTree()},clickReference(){(this.$refs.reference.$el||this.$refs.reference).click()},focusReference(){(this.$refs.reference.$el||this.$refs.reference).focus()},handleClick(){this.isGroupMarker||this.$emit(\"navigate\",this.item.uid)}},watch:{async isFocused(e){await Object(pl[\"b\"])(8),e&&this.isRendered&&this.enableFocus&&this.focusReference()},async expanded(){await Object(pl[\"b\"])(9),this.idState.isOpening=!1}}},tc=ec,nc=(n(\"9d1f\"),Object(R[\"a\"])(tc,Ul,Gl,!1,null,\"6fb0778e\",null)),ac=nc.exports,ic=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"sidenav-icon\",attrs:{viewBox:\"0 0 14 14\",height:\"14\"}},[n(\"path\",{attrs:{d:\"M6.533 1.867h-6.533v10.267h14v-10.267zM0.933 11.2v-8.4h4.667v8.4zM13.067 11.2h-6.533v-8.4h6.533z\"}}),n(\"path\",{attrs:{d:\"M1.867 5.133h2.8v0.933h-2.8z\"}}),n(\"path\",{attrs:{d:\"M1.867 7.933h2.8v0.933h-2.8z\"}})])},sc=[],rc={name:\"SidenavIcon\",components:{SVGIcon:ye[\"a\"]}},oc=rc,lc=Object(R[\"a\"])(oc,ic,sc,!1,null,null,null),cc=lc.exports,uc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"filter\",class:{focus:e.showSuggestedTags},attrs:{role:\"search\",tabindex:\"0\",\"aria-labelledby\":e.searchAriaLabelledBy},on:{\"!blur\":function(t){return e.handleBlur.apply(null,arguments)},\"!focus\":function(t){e.showSuggestedTags=!0}}},[n(\"div\",{class:[\"filter__wrapper\",{\"filter__wrapper--reversed\":e.positionReversed}]},[n(\"div\",{staticClass:\"filter__top-wrapper\"},[n(\"button\",{staticClass:\"filter__filter-button\",class:{blue:e.inputIsNotEmpty},attrs:{\"aria-hidden\":\"true\",tabindex:\"-1\"},on:{click:e.focusInput,mousedown:function(e){e.preventDefault()}}},[e._t(\"icon\",(function(){return[n(\"FilterIcon\")]}))],2),n(\"div\",{class:[\"filter__input-box-wrapper\",{scrolling:e.isScrolling}],on:{scroll:e.handleScroll}},[e.hasSelectedTags?n(\"TagList\",e._g(e._b({ref:\"selectedTags\",staticClass:\"filter__selected-tags\",attrs:{id:e.SelectedTagsId,input:e.input,tags:e.selectedTags,ariaLabel:e.selectedTagsLabel,activeTags:e.activeTags,areTagsRemovable:\"\"},on:{\"focus-prev\":e.handleFocusPrevOnSelectedTags,\"focus-next\":e.focusInputFromTags,\"reset-filters\":e.resetFilters,\"prevent-blur\":function(t){return e.$emit(\"update:preventedBlur\",!0)}}},\"TagList\",e.virtualKeyboardBind,!1),e.selectedTagsMultipleSelectionListeners)):e._e(),n(\"label\",{staticClass:\"filter__input-label\",attrs:{id:\"filter-label\",for:e.FilterInputId,\"data-value\":e.modelValue,\"aria-label\":e.placeholder}},[n(\"input\",e._g(e._b({directives:[{name:\"model\",rawName:\"v-model\",value:e.modelValue,expression:\"modelValue\"}],ref:\"input\",staticClass:\"filter__input\",attrs:{id:e.FilterInputId,placeholder:e.hasSelectedTags?\"\":e.placeholder,\"aria-expanded\":e.displaySuggestedTags?\"true\":\"false\",disabled:e.disabled,type:\"text\"},domProps:{value:e.modelValue},on:{keydown:[function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"])?null:(t.preventDefault(),e.downHandler.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"])?null:(t.preventDefault(),e.upHandler.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"left\",37,t.key,[\"Left\",\"ArrowLeft\"])||\"button\"in t&&0!==t.button?null:e.leftKeyInputHandler.apply(null,arguments)},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"right\",39,t.key,[\"Right\",\"ArrowRight\"])||\"button\"in t&&2!==t.button?null:e.rightKeyInputHandler.apply(null,arguments)},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"delete\",[8,46],t.key,[\"Backspace\",\"Delete\",\"Del\"])?null:e.deleteHandler.apply(null,arguments)},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"a\",void 0,t.key,void 0)?null:t.metaKey?(t.preventDefault(),e.selectInputAndTags.apply(null,arguments)):null},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"a\",void 0,t.key,void 0)?null:t.ctrlKey?(t.preventDefault(),e.selectInputAndTags.apply(null,arguments)):null},function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.inputKeydownHandler.apply(null,arguments)},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")||t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.enterHandler.apply(null,arguments)},function(t){return t.shiftKey?t.ctrlKey||t.altKey||t.metaKey?null:e.inputKeydownHandler.apply(null,arguments):null},function(t){return t.shiftKey&&t.metaKey?t.ctrlKey||t.altKey?null:e.inputKeydownHandler.apply(null,arguments):null},function(t){return t.metaKey?t.ctrlKey||t.shiftKey||t.altKey?null:e.assignEventValues.apply(null,arguments):null},function(t){return t.ctrlKey?t.shiftKey||t.altKey||t.metaKey?null:e.assignEventValues.apply(null,arguments):null}],input:function(t){t.target.composing||(e.modelValue=t.target.value)}}},\"input\",e.AXinputProperties,!1),e.inputMultipleSelectionListeners))])],1),n(\"div\",{staticClass:\"filter__delete-button-wrapper\"},[e.input.length||e.displaySuggestedTags||e.hasSelectedTags?n(\"button\",{staticClass:\"filter__delete-button\",attrs:{\"aria-label\":\"Reset Filter\"},on:{click:function(t){return e.resetFilters(!0)},mousedown:function(e){e.preventDefault()}}},[n(\"ClearRoundedIcon\")],1):e._e()])]),e.displaySuggestedTags?n(\"TagList\",e._b({ref:\"suggestedTags\",staticClass:\"filter__suggested-tags\",attrs:{id:e.SuggestedTagsId,ariaLabel:e.suggestedTagsLabel,input:e.input,tags:e.suggestedTags},on:{\"click-tags\":function(t){return e.selectTag(t.tagName)},\"prevent-blur\":function(t){return e.$emit(\"update:preventedBlur\",!0)},\"focus-next\":function(t){e.positionReversed?e.focusInput():e.$emit(\"focus-next\")},\"focus-prev\":function(t){e.positionReversed?e.$emit(\"focus-prev\"):e.focusInput()}}},\"TagList\",e.virtualKeyboardBind,!1)):e._e()],1)])},dc=[],hc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"clear-rounded-icon\",attrs:{viewBox:\"0 0 16 16\"}},[n(\"title\",[e._v(\"Clear\")]),n(\"path\",{attrs:{d:\"M9.864,3.5l.636.636L7.632,7l2.862,2.861-.636.636L7,7.639,4.142,10.494l-.636-.636L6.36,7,3.5,4.142l.636-.636L7,6.367Z\",\"fill-rule\":\"evenodd\"}})])},pc=[],fc={name:\"ClearRoundedIcon\",components:{SVGIcon:ye[\"a\"]}},gc=fc,mc=Object(R[\"a\"])(gc,hc,pc,!1,null,null,null),yc=mc.exports;function vc(){if(window.getSelection)try{const{activeElement:e}=document;return e&&e.value?e.value.substring(e.selectionStart,e.selectionEnd):window.getSelection().toString()}catch(e){return\"\"}else if(document.selection&&\"Control\"!==document.selection.type)return document.selection.createRange().text;return\"\"}function bc(e){if(\"number\"===typeof e.selectionStart)e.selectionStart=e.selectionEnd=e.value.length;else if(\"undefined\"!==typeof e.createTextRange){e.focus();const t=e.createTextRange();t.collapse(!1),t.select()}}function Tc(e){e.selectionStart=e.selectionEnd=0}function _c(e){return/^[\\w\\W\\s]$/.test(e)}function Cc(e){const t=e.match(/<data (?:.*?)id=\"copy-data\"(?:.*?)>(.*)<\\/data>/);try{return t?JSON.parse(t[1]):null}catch(n){return null}}function Sc(e){return\"string\"!==typeof e&&(e=JSON.stringify(e)),`<data id=\"copy-data\">${e}</data>`}const kc=280,wc=100;var xc={data(){return{keyboardIsVirtual:!1,activeTags:[],initTagIndex:null,focusedTagIndex:null,metaKey:!1,shiftKey:!1,tabbing:!1,debouncedHandleDeleteTag:null}},constants:{DebounceDelay:kc,VirtualKeyboardThreshold:wc},computed:{virtualKeyboardBind:({keyboardIsVirtual:e})=>({keyboardIsVirtual:e}),allSelectedTagsAreActive:({selectedTags:e,activeTags:t})=>e.every(e=>t.includes(e))},methods:{selectRangeActiveTags(e=this.focusedTagIndex,t=this.selectedTags.length){this.activeTags=this.selectedTags.slice(e,t)},selectTag(e){this.updateSelectedTags([e]),this.clearFilterOnTagSelect&&this.setFilterInput(\"\")},unselectActiveTags(){this.activeTags.length&&(this.deleteTags(this.activeTags),this.resetActiveTags())},async deleteHandler(e){this.activeTags.length>0&&this.setSelectedTags(this.selectedTags.filter(e=>!this.activeTags.includes(e))),this.inputIsSelected()&&this.allSelectedTagsAreActive?(e.preventDefault(),await this.resetFilters()):0===this.$refs.input.selectionEnd&&this.hasSelectedTags&&(e.preventDefault(),this.keyboardIsVirtual?this.setSelectedTags(this.selectedTags.slice(0,-1)):this.$refs.selectedTags.focusLast()),this.unselectActiveTags()},leftKeyInputHandler(e){if(this.assignEventValues(e),this.hasSelectedTags){if(this.activeTags.length&&!this.shiftKey)return e.preventDefault(),void this.$refs.selectedTags.focusTag(this.activeTags[0]);if(this.shiftKey&&0===this.$refs.input.selectionStart&&\"forward\"!==this.$refs.input.selectionDirection)return null===this.focusedTagIndex&&(this.focusedTagIndex=this.selectedTags.length),this.focusedTagIndex>0&&(this.focusedTagIndex-=1),this.initTagIndex=this.selectedTags.length,void this.selectTagsPressingShift();(0===this.$refs.input.selectionEnd||this.inputIsSelected())&&this.$refs.selectedTags.focusLast()}},rightKeyInputHandler(e){if(this.assignEventValues(e),this.activeTags.length&&this.shiftKey&&this.focusedTagIndex<this.selectedTags.length){if(this.initTagIndex<this.selectedTags.length)return void this.selectRangeActiveTags(this.initTagIndex,this.focusedTagIndex+1);e.preventDefault(),this.focusedTagIndex+=1,this.selectRangeActiveTags()}},async enterHandler(){this.$refs.input.blur()},inputKeydownHandler(e){const{key:t}=e;this.inputIsSelected()&&_c(t)&&this.allSelectedTagsAreActive&&this.resetFilters(),this.multipleTagsSelectionHandler({event:e,tagName:\"\"})},selectedTagsKeydownHandler({event:e,tagName:t}){\"Enter\"===e.key&&e.preventDefault(),this.multipleTagsSelectionHandler({event:e,tagName:t})},selectInputTextToTags(){const{input:e}=this.$refs;e.selectionStart===e.selectionEnd?e.setSelectionRange(0,e.selectionEnd):e.setSelectionRange(e.selectionStart,e.selectionEnd),this.focusInput()},selectTagsPressingShift(){null!==this.initTagIndex&&this.shiftKey&&!this.metaKey&&(this.initTagIndex<this.focusedTagIndex?this.selectRangeActiveTags(this.initTagIndex,this.focusedTagIndex+1):this.selectRangeActiveTags(this.focusedTagIndex,this.initTagIndex+1))},focusTagHandler({event:e={},tagName:t}){this.focusedTagIndex=this.selectedTags.indexOf(t);const n=e.relatedTarget;if(n&&n.matches(\"input\")&&this.shiftKey&&!this.metaKey&&!this.tabbing&&0!==this.$refs.input.selectionEnd)return this.selectInputTextToTags(),void this.selectRangeActiveTags();this.selectTagsPressingShift()},focusInputFromTags(){this.focusInput(),Tc(this.$refs.input)},selectToDirections(e){this.metaKey&&this.shiftKey&&(\"ArrowRight\"===e?(this.selectRangeActiveTags(this.initTagIndex,this.selectedTags.length),this.input.length?this.$refs.input.select():this.$refs.selectedTags.focusTag(this.selectedTags[this.selectedTags.length-1])):\"ArrowLeft\"===e&&(this.selectRangeActiveTags(0,this.initTagIndex+1),this.input.length||this.$refs.selectedTags.focusTag(this.selectedTags[0])))},metaKeyClickSelection(e,t){this.metaKey&&e instanceof MouseEvent&&(this.activeTags.includes(t)?(this.activeTags.splice(this.activeTags.indexOf(t),1),this.activeTags.length?this.$refs.selectedTags.focusTag(this.activeTags[0]):this.focusInput()):this.activeTags.push(t))},assignEventValues(e={}){const{shiftKey:t=!1,metaKey:n=!1,ctrlKey:a=!1,key:i}=e;this.tabbing=\"Tab\"===i,this.metaKey=n||a,this.shiftKey=t},initTag(e){null!==this.initTagIndex||this.activeTags.includes(e)||(e?(this.initTagIndex=this.selectedTags.indexOf(e),this.activeTags.push(e)):this.initTagIndex=this.selectedTags.length)},multipleTagsSelectionHandler({event:e=new KeyboardEvent(\"keydown\",{}),tagName:t}){const{key:n=\"\"}=e;\"Enter\"!==n&&(this.assignEventValues(e),!this.shiftKey&&!this.metaKey||this.tabbing?\"Backspace\"!==n&&this.resetActiveTags():this.initTag(t),this.selectToDirections(n))},resetActiveTags(){this.activeTags=[],this.initTagIndex=null,this.metaKey=!1,this.tabbing=!1,this.shiftKey=!1,this.focusedTagIndex=null},selectInputAndTags(){this.activeTags=[...this.selectedTags],this.input.length?(this.$refs.input.select(),this.initTagIndex=this.activeTags.length,this.focusedTagIndex=0):this.activeTags.length&&(this.initTagIndex=this.activeTags.length-1,this.$refs.selectedTags.focusTag(this.activeTags[0]))},handleSingleTagClick({event:e,tagName:t}){this.keyboardIsVirtual?(this.debouncedHandleDeleteTag||(this.debouncedHandleDeleteTag=ul(this.handleDeleteTag,kc)),this.debouncedHandleDeleteTag({tagName:t,event:e})):(this.assignEventValues(e),this.metaKeyClickSelection(e,t),this.multipleTagsSelectionHandler({event:e,tagName:t}))},inputIsSelected(){return this.input.length&&vc()===this.input},inputHasPartialTextSelected(){const e=vc();return!this.inputIsSelected()&&e.length&&this.input.includes(e)},updateKeyboardType:ul((function(e){const t=window.innerHeight-e.target.height;t>=wc&&(this.keyboardIsVirtual=!0)}),kc),setFilterInput(e){this.$emit(\"update:input\",e)},setSelectedTags(e){this.$emit(\"update:selectedTags\",e)},updateSelectedTags(e){this.setSelectedTags([...new Set([...this.selectedTags,...e])])},handleCopy(e){e.preventDefault();const t=[],n={tags:[],input:vc()};if(this.activeTags.length){const e=this.activeTags;n.tags=e,t.push(e.join(\" \"))}return t.push(n.input),n.tags.length||n.input.length?(e.clipboardData.setData(\"text/html\",Sc(n)),e.clipboardData.setData(\"text/plain\",t.join(\" \")),n):n},handleCut(e){e.preventDefault();const{input:t,tags:n}=this.handleCopy(e);if(!t&&!n.length)return;const a=this.selectedTags.filter(e=>!n.includes(e)),i=this.input.replace(t,\"\");this.setSelectedTags(a),this.setFilterInput(i)},handlePaste(e){e.preventDefault();const{types:t}=e.clipboardData;let n=[],a=e.clipboardData.getData(\"text/plain\");if(t.includes(\"text/html\")){const t=e.clipboardData.getData(\"text/html\"),i=Cc(t);i&&({tags:n=[],input:a=\"\"}=i)}const i=vc();a=i.length?this.input.replace(i,a):Object(vi[\"f\"])(this.input,a,document.activeElement.selectionStart),this.setFilterInput(a.trim()),this.allSelectedTagsAreActive?this.setSelectedTags(n):this.updateSelectedTags(n),this.resetActiveTags()},async handleDeleteTag({tagName:e,event:t={}}){const{key:n}=t;this.activeTags.length||this.deleteTags([e]),this.unselectActiveTags(),await this.$nextTick(),bc(this.$refs.input),this.hasSelectedTags&&(await this.focusInput(),\"Backspace\"===n&&Tc(this.$refs.input))}},mounted(){window.visualViewport&&(window.visualViewport.addEventListener(\"resize\",this.updateKeyboardType),this.$once(\"hook:beforeDestroy\",()=>{window.visualViewport.removeEventListener(\"resize\",this.updateKeyboardType)}))}};const Ic=1e3;var Oc={constants:{ScrollingDebounceDelay:Ic},data(){return{isScrolling:!1,scrollRemovedAt:0}},created(){this.deleteScroll=ul(this.deleteScroll,Ic)},methods:{deleteScroll(){this.isScrolling=!1,this.scrollRemovedAt=Date.now()},handleScroll(e){const{target:t}=e;if(0!==t.scrollTop)return t.scrollTop=0,void e.preventDefault();const n=150,a=t.offsetWidth,i=a+n;if(t.scrollWidth<i)return;const s=Date.now()-this.scrollRemovedAt;s<Ic/10||(this.isScrolling=!0,t.style.getPropertyValue(\"--scroll-target-height\")||t.style.setProperty(\"--scroll-target-height\",t.offsetHeight+\"px\"),this.deleteScroll())}}},$c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"filter-icon\",attrs:{height:\"14\",width:\"14\",viewBox:\"0 0 14 14\",fill:\"currentColor\"}},[n(\"path\",{attrs:{d:\"m2 6.5h10v1h-10z\"}}),n(\"path\",{attrs:{d:\"m1 3h12v1h-12z\"}}),n(\"path\",{attrs:{d:\"m3 10h8v1h-8z\"}})])},Dc=[],Pc={name:\"FilterIcon\",components:{SVGIcon:ye[\"a\"]}},Ac=Pc,jc=Object(R[\"a\"])(Ac,$c,Dc,!1,null,null,null),Lc=jc.exports,Ec=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"tags\"},[n(\"div\",{ref:\"scroll-wrapper\",staticClass:\"scroll-wrapper\",class:{scrolling:e.isScrolling},on:{scroll:e.handleScroll}},[n(\"ul\",{ref:\"tags\",attrs:{id:e.id+\"-tags\",\"aria-label\":e.ariaLabel,tabindex:\"0\",role:\"listbox\",\"aria-multiselectable\":e.areTagsRemovable?\"true\":\"false\",\"aria-orientation\":\"horizontal\"},on:{\"!keydown\":[function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"left\",37,t.key,[\"Left\",\"ArrowLeft\"])||\"button\"in t&&0!==t.button?null:(t.preventDefault(),e.focusPrev.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"right\",39,t.key,[\"Right\",\"ArrowRight\"])||\"button\"in t&&2!==t.button?null:(t.preventDefault(),e.focusNext.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"])?null:(t.preventDefault(),e.focusPrev.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"])?null:(t.preventDefault(),e.focusNext.apply(null,arguments))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"a\",void 0,t.key,void 0)?null:t.metaKey?(t.preventDefault(),e.$emit(\"select-all\")):null},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"a\",void 0,t.key,void 0)?null:t.ctrlKey?(t.preventDefault(),e.$emit(\"select-all\")):null},function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.handleKeydown.apply(null,arguments)},function(t){return t.shiftKey?t.ctrlKey||t.altKey||t.metaKey?null:e.handleKeydown.apply(null,arguments):null}],keydown:function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"delete\",[8,46],t.key,[\"Backspace\",\"Delete\",\"Del\"])?null:(t.preventDefault(),t.target!==t.currentTarget?null:e.$emit(\"reset-filters\"))}}},e._l(e.tags,(function(t,a){return n(\"Tag\",{key:t.id||a,ref:\"tag\",refInFor:!0,attrs:{name:t.label||t,isFocused:e.focusedIndex===a,isRemovableTag:e.areTagsRemovable,filterText:e.input,isActiveTag:e.activeTags.includes(t),activeTags:e.activeTags,keyboardIsVirtual:e.keyboardIsVirtual},on:{focus:function(t){return e.handleFocus(t,a)},click:function(t){return e.$emit(\"click-tags\",t)},\"delete-tag\":function(t){return e.$emit(\"delete-tag\",t)},\"prevent-blur\":function(t){return e.$emit(\"prevent-blur\")},\"paste-content\":function(t){return e.$emit(\"paste-tags\",t)},keydown:function(t){return e.$emit(\"keydown\",t)}}})})),1)])])},Bc=[],Rc={data(){return{focusedIndex:0,externalFocusChange:!1}},methods:{focusIndex(e){e<0||(this.focusedIndex=e)},focusPrev({metaKey:e,ctrlKey:t,shiftKey:n}){(e||t)&&n||(this.externalFocusChange=!1,this.focusedIndex>0?this.focusIndex(this.focusedIndex-1):this.startingPointHook())},focusNext({metaKey:e,ctrlKey:t,shiftKey:n}){(e||t)&&n||(this.externalFocusChange=!1,this.focusedIndex<this.totalItemsToNavigate-1?this.focusIndex(this.focusedIndex+1):this.endingPointHook())},async focusFirst(){this.externalFocusChange=!1,this.focusIndex(null),await this.$nextTick(),this.focusIndex(0),this.scrollToFocus()},async focusLast(){this.externalFocusChange=!1,this.focusIndex(null),await this.$nextTick(),this.focusIndex(this.totalItemsToNavigate-1),this.scrollToFocus()},startingPointHook(){},endingPointHook(){},scrollToFocus(){}},computed:{totalItemsToNavigate:()=>0}},Nc=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"li\",{staticClass:\"tag\",attrs:{role:\"presentation\"}},[n(\"button\",{ref:\"button\",class:{focus:e.isActiveTag},attrs:{role:\"option\",\"aria-selected\":e.ariaSelected,\"aria-roledescription\":\"tag\"},on:{focus:function(t){return e.$emit(\"focus\",{event:t,tagName:e.name})},click:function(t){return t.preventDefault(),e.$emit(\"click\",{event:t,tagName:e.name})},dblclick:function(t){t.preventDefault(),!e.keyboardIsVirtual&&e.deleteTag()},keydown:[function(t){return t.ctrlKey||t.shiftKey||t.altKey||t.metaKey?null:e.$emit(\"keydown\",{event:t,tagName:e.name})},function(t){return t.shiftKey?t.ctrlKey||t.altKey||t.metaKey?null:e.$emit(\"keydown\",{event:t,tagName:e.name}):null},function(t){return t.shiftKey&&t.metaKey?t.ctrlKey||t.altKey?null:e.$emit(\"keydown\",{event:t,tagName:e.name}):null},function(t){return t.metaKey?t.ctrlKey||t.shiftKey||t.altKey?null:e.$emit(\"keydown\",{event:t,tagName:e.name}):null},function(t){return t.ctrlKey?t.shiftKey||t.altKey||t.metaKey?null:e.$emit(\"keydown\",{event:t,tagName:e.name}):null},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"delete\",[8,46],t.key,[\"Backspace\",\"Delete\",\"Del\"])?null:(t.preventDefault(),e.deleteTag.apply(null,arguments))}],mousedown:function(t){return t.preventDefault(),e.focusButton.apply(null,arguments)},copy:e.handleCopy}},[e.isRemovableTag?e._e():n(\"span\",{staticClass:\"visuallyhidden\"},[e._v(\" Add tag - \")]),e._v(\" \"+e._s(e.name)+\" \"),e.isRemovableTag?n(\"span\",{staticClass:\"visuallyhidden\"},[e._v(\" – Tag. Select to remove from list. \")]):e._e()])])},zc=[],Mc={name:\"Tag\",props:{name:{type:String,required:!0},isFocused:{type:Boolean,default:()=>!1},isRemovableTag:{type:Boolean,default:!1},isActiveTag:{type:Boolean,default:!1},activeTags:{type:Array,required:!1},keyboardIsVirtual:{type:Boolean,default:!1}},watch:{isFocused(e){e&&this.focusButton()}},mounted(){document.addEventListener(\"copy\",this.handleCopy),document.addEventListener(\"cut\",this.handleCut),document.addEventListener(\"paste\",this.handlePaste),this.$once(\"hook:beforeDestroy\",()=>{document.removeEventListener(\"copy\",this.handleCopy),document.removeEventListener(\"cut\",this.handleCut),document.removeEventListener(\"paste\",this.handlePaste)})},methods:{isCurrentlyActiveElement(){return document.activeElement===this.$refs.button},handleCopy(e){if(!this.isCurrentlyActiveElement())return;e.preventDefault();let t=[];t=this.activeTags.length>0?this.activeTags:[this.name],e.clipboardData.setData(\"text/html\",Sc({tags:t})),e.clipboardData.setData(\"text/plain\",t.join(\" \"))},handleCut(e){this.isCurrentlyActiveElement()&&this.isRemovableTag&&(this.handleCopy(e),this.deleteTag(e))},handlePaste(e){this.isCurrentlyActiveElement()&&this.isRemovableTag&&(e.preventDefault(),this.deleteTag(e),this.$emit(\"paste-content\",e))},deleteTag(e){this.$emit(\"delete-tag\",{tagName:this.name,event:e}),this.$emit(\"prevent-blur\")},focusButton(e={}){this.keyboardIsVirtual||this.$refs.button.focus(),0===e.buttons&&this.isFocused&&this.deleteTag(e)}},computed:{ariaSelected:({isActiveTag:e,isRemovableTag:t})=>t?e?\"true\":\"false\":null}},Kc=Mc,qc=(n(\"bcfb\"),Object(R[\"a\"])(Kc,Nc,zc,!1,null,\"3b809bfa\",null)),Fc=qc.exports,Vc={name:\"Tags\",mixins:[Oc,Rc],props:{tags:{type:Array,default:()=>[]},activeTags:{type:Array,default:()=>[]},ariaLabel:{type:String,required:!1},id:{type:String,required:!1},input:{type:String,default:null},areTagsRemovable:{type:Boolean,default:!1},keyboardIsVirtual:{type:Boolean,default:!1}},components:{Tag:Fc},methods:{focusTag(e){this.focusIndex(this.tags.indexOf(e))},startingPointHook(){this.$emit(\"focus-prev\")},handleFocus(e,t){this.focusIndex(t),this.isScrolling=!1,this.$emit(\"focus\",e)},endingPointHook(){this.$emit(\"focus-next\")},resetScroll(){this.$refs[\"scroll-wrapper\"].scrollLeft=0},handleKeydown(e){const{key:t}=e,n=this.tags[this.focusedIndex];_c(t)&&n&&this.$emit(\"delete-tag\",{tagName:n.label||n,event:e})}},computed:{totalItemsToNavigate:({tags:e})=>e.length}},Hc=Vc,Wc=(n(\"8b7a\"),Object(R[\"a\"])(Hc,Ec,Bc,!1,null,\"4b231516\",null)),Uc=Wc.exports;const Gc=5,Xc=\"filter-input\",Yc=\"selected-tags\",Jc=\"suggested-tags\",Qc={autocorrect:\"off\",autocapitalize:\"off\",spellcheck:\"false\",role:\"combobox\",\"aria-haspopup\":\"true\",\"aria-autocomplete\":\"none\",\"aria-owns\":\"suggestedTags\",\"aria-controls\":\"suggestedTags\"};var Zc={name:\"FilterInput\",mixins:[Oc,xc],constants:{FilterInputId:Xc,SelectedTagsId:Yc,SuggestedTagsId:Jc,AXinputProperties:Qc,TagLimit:Gc},components:{TagList:Uc,ClearRoundedIcon:yc,FilterIcon:Lc},props:{positionReversed:{type:Boolean,default:()=>!1},tags:{type:Array,default:()=>[]},selectedTags:{type:Array,default:()=>[]},preventedBlur:{type:Boolean,default:()=>!1},placeholder:{type:String,default:()=>\"Filter\"},disabled:{type:Boolean,default:()=>!1},value:{type:String,default:()=>\"\"},shouldTruncateTags:{type:Boolean,default:!1},focusInputWhenCreated:{type:Boolean,default:!1},clearFilterOnTagSelect:{type:Boolean,default:!0}},data(){return{resetedTagsViaDeleteButton:!1,FilterInputId:Xc,SelectedTagsId:Yc,SuggestedTagsId:Jc,AXinputProperties:Qc,showSuggestedTags:!1}},computed:{tagsText:({suggestedTags:e})=>Object(vi[\"g\"])({en:{one:\"tag\",other:\"tags\"}},e.length),selectedTagsLabel:({tagsText:e})=>\"Selected \"+e,suggestedTagsLabel:({tagsText:e})=>\"Suggested \"+e,hasSuggestedTags:({suggestedTags:e})=>e.length,hasSelectedTags:({selectedTags:e})=>e.length,inputIsNotEmpty:({input:e,hasSelectedTags:t})=>e.length||t,searchAriaLabelledBy:({hasSelectedTags:e})=>e?Xc.concat(\" \",Yc):Xc,modelValue:{get:({value:e})=>e,set(e){this.$emit(\"input\",e)}},input:({value:e})=>e,suggestedTags:({tags:e,selectedTags:t,shouldTruncateTags:n})=>{const a=e.filter(e=>!t.includes(e));return n?a.slice(0,Gc):a},displaySuggestedTags:({showSuggestedTags:e,suggestedTags:t})=>e&&t.length>0,inputMultipleSelectionListeners:({resetActiveTags:e,handleCopy:t,handleCut:n,handlePaste:a})=>({click:e,copy:t,cut:n,paste:a}),selectedTagsMultipleSelectionListeners:({handleSingleTagClick:e,selectInputAndTags:t,handleDeleteTag:n,selectedTagsKeydownHandler:a,focusTagHandler:i,handlePaste:s})=>({\"click-tags\":e,\"select-all\":t,\"delete-tag\":n,keydown:a,focus:i,\"paste-tags\":s})},watch:{async selectedTags(){this.resetedTagsViaDeleteButton?this.resetedTagsViaDeleteButton=!1:this.$el.contains(document.activeElement)&&await this.focusInput(),this.displaySuggestedTags&&this.hasSuggestedTags&&this.$refs.suggestedTags.resetScroll()},suggestedTags:{immediate:!0,handler(e){this.$emit(\"suggested-tags\",e)}},showSuggestedTags(e){this.$emit(\"show-suggested-tags\",e)}},methods:{async focusInput(){await this.$nextTick(),this.$refs.input.focus(),!this.input&&this.resetActiveTags&&this.resetActiveTags()},async resetFilters(e=!1){if(this.setFilterInput(\"\"),this.setSelectedTags([]),!e)return this.$emit(\"update:preventedBlur\",!0),this.resetActiveTags&&this.resetActiveTags(),void await this.focusInput();this.resetedTagsViaDeleteButton=!0,this.showSuggestedTags=!1,this.$refs.input.blur()},focusFirstTag(e=(()=>{})){this.showSuggestedTags||(this.showSuggestedTags=!0),this.hasSuggestedTags&&this.$refs.suggestedTags?this.$refs.suggestedTags.focusFirst():e()},setFilterInput(e){this.$emit(\"input\",e)},setSelectedTags(e){this.$emit(\"update:selectedTags\",e)},deleteTags(e){this.setSelectedTags(this.selectedTags.filter(t=>!e.includes(t)))},async handleBlur(e){const t=e.relatedTarget;t&&t.matches&&t.matches(\"button, input, ul\")&&this.$el.contains(t)||(await this.$nextTick(),this.resetActiveTags(),this.preventedBlur?this.$emit(\"update:preventedBlur\",!1):this.showSuggestedTags=!1)},downHandler(e){const t=()=>this.$emit(\"focus-next\",e);this.positionReversed?t():this.focusFirstTag(t)},upHandler(e){const t=()=>this.$emit(\"focus-prev\",e);this.positionReversed?this.focusFirstTag(t):t()},handleFocusPrevOnSelectedTags(){this.positionReversed?this.focusFirstTag(()=>this.$emit(\"focus-prev\")):this.$emit(\"focus-prev\")}},created(){this.focusInputWhenCreated&&document.activeElement!==this.$refs.input&&this.inputIsNotEmpty&&this.focusInput()}},eu=Zc,tu=(n(\"4eb2\"),Object(R[\"a\"])(eu,uc,dc,!1,null,\"3b91e60a\",null)),nu=tu.exports;const au=e=>e[e.length-1],iu=(e,t)=>JSON.stringify(e)===JSON.stringify(t),su=\"navigator.state\",ru=\"No results found.\",ou=\"No data available.\",lu=\"There was an error fetching the data.\",cu=\"items were found. Tab back to navigate through them.\",uu={sampleCode:\"sampleCode\",tutorials:\"tutorials\",articles:\"articles\"},du={[uu.sampleCode]:\"Sample Code\",[uu.tutorials]:\"Tutorials\",[uu.articles]:\"Articles\"},hu=Object.fromEntries(Object.entries(du).map(([e,t])=>[t,e])),pu={[pt.article]:uu.articles,[pt.learn]:uu.tutorials,[pt.overview]:uu.tutorials,[pt.resources]:uu.tutorials,[pt.sampleCode]:uu.sampleCode,[pt.section]:uu.tutorials,[pt.tutorial]:uu.tutorials,[pt.project]:uu.tutorials},fu=\"Hide Deprecated\";var gu={name:\"NavigatorCard\",constants:{STORAGE_KEY:su,FILTER_TAGS:uu,FILTER_TAGS_TO_LABELS:du,FILTER_LABELS_TO_TAGS:hu,TOPIC_TYPE_TO_TAG:pu,NO_RESULTS:ru,NO_CHILDREN:ou,ERROR_FETCHING:lu,ITEMS_FOUND:cu,HIDE_DEPRECATED_TAG:fu},components:{Badge:bn,FilterInput:nu,SidenavIcon:cc,NavigatorCardInner:Wl,NavigatorCardItem:ac,RecycleScroller:El[\"b\"],Reference:oa[\"a\"]},props:{technology:{type:String,required:!0},children:{type:Array,required:!0},activePath:{type:Array,required:!0},type:{type:String,required:!0},technologyPath:{type:String,default:\"\"},scrollLockID:{type:String,default:\"\"},errorFetching:{type:Boolean,default:!1},breakpoint:{type:String,default:\"\"},apiChanges:{type:Object,default:null},isTechnologyBeta:{type:Boolean,default:!1}},mixins:[Rc],data(){return{filter:\"\",debouncedFilter:\"\",selectedTags:[],openNodes:{},nodesToRender:[],activeUID:null,resetScroll:!1,lastFocusTarget:null,NO_RESULTS:ru,NO_CHILDREN:ou,ERROR_FETCHING:lu,ITEMS_FOUND:cu}},computed:{INDEX_ROOT_KEY:()=>Bl,politeAriaLive:({hasNodes:e,nodesToRender:t})=>e?[t.length,cu].join(\" \"):\"\",assertiveAriaLive:({hasNodes:e,hasFilter:t,errorFetching:n})=>e?\"\":t?ru:n?lu:ou,availableTags:({selectedTags:e,renderableChildNodesMap:t,apiChangesObject:n})=>{const a=e.length?[]:Object.values(du);if(!a.length)return a;const i=new Set(Object.values(n)),s=new Set(a),r=new Set([fu]);i.size&&r.delete(fu);const o={type:[],changes:[],other:[]},l=Object.values(t),c=l.length;let u;for(u=0;u<c;u+=1){if(!s.size&&!i.size&&!r.size)break;const{type:e,path:t,deprecated:a}=l[u],c=du[pu[e]],d=n[t];s.has(c)&&(o.type.push(c),s.delete(c)),d&&i.has(d)&&(o.changes.push(za[d]),i.delete(d)),a&&r.has(fu)&&(o.other.push(fu),r.delete(fu))}return o.type.concat(o.changes,o.other)},selectedTagsModelValue:{get:({selectedTags:e})=>e.map(e=>du[e]||za[e]||e),set(e){this.selectedTags=e.map(e=>hu[e]||Ma[e]||e),this.resetScroll=!0}},filterPattern:({debouncedFilter:e})=>e?new RegExp(Nl(e),\"i\"):null,itemSize:()=>Rl,childrenMap({children:e}){return this.convertChildrenArrayToObject(e)},activePathChildren({activeUID:e,childrenMap:t}){return e&&t[e]?this.getParents(e):[]},activePathMap:({activePathChildren:e})=>Object.fromEntries(e.map(({uid:e})=>[e,!0])),activeIndex:({activeUID:e,nodesToRender:t})=>t.findIndex(t=>t.uid===e),filteredChildren({hasFilter:e,children:t,filterPattern:n,selectedTags:a,apiChangesObject:i,apiChanges:s,deprecatedHidden:r}){if(!e)return[];const o=new Set(a);return t.filter(({title:e,path:t,type:l,deprecated:c})=>{const u=!n||n.test(e);let d=!0;a.length&&(d=o.has(pu[l]),s&&!d&&(d=o.has(i[t])),!c&&o.has(fu)&&(d=!0));const h=!s||i[t],p=!r&&l===pt.groupMarker;return u&&d&&h&&!p})},filteredChildrenUpToRootSet:({filteredChildren:e,getParents:t})=>new Set(e.flatMap(({uid:e})=>t(e))),renderableChildNodesMap({filteredChildrenUpToRootSet:e,childrenMap:t,hasFilter:n}){if(!n)return t;let a=[];return e.forEach(n=>{if(!n.childUIDs.length)return void a.push(n);const i=!n.childUIDs.some(n=>e.has(t[n]));a=a.concat(i?this.getAllChildren(n.uid):n)}),this.convertChildrenArrayToObject(a)},nodeChangeDeps:({filteredChildren:e,activePathChildren:t,debouncedFilter:n,selectedTags:a})=>[e,t,n,a],hasFilter({debouncedFilter:e,selectedTags:t,apiChanges:n}){return Boolean(e.length||t.length||n)},deprecatedHidden:({selectedTags:e,debouncedFilter:t})=>e[0]===fu&&!t.length,apiChangesObject(){return this.apiChanges||{}},isLargeBreakpoint:({breakpoint:e})=>e===hl[\"b\"].large,hasNodes:({nodesToRender:e})=>!!e.length,totalItemsToNavigate:({nodesToRender:e})=>e.length,lastActivePathItem:({activePath:e})=>au(e)},created(){this.restorePersistedState()},watch:{filter:\"debounceInput\",nodeChangeDeps:\"trackOpenNodes\",activePath:\"handleActivePathChange\",apiChanges(e){e||(this.selectedTags=this.selectedTags.filter(e=>!za[e]))}},methods:{clearFilters(){this.filter=\"\",this.debouncedFilter=\"\",this.selectedTags=[],this.resetScroll=!0},scrollToFocus(){this.$refs.scroller.scrollToItem(this.focusedIndex)},debounceInput:ul((function(e){this.debouncedFilter=e,this.resetScroll=!0,this.lastFocusTarget=null}),500),trackOpenNodes([e,t,n,a],[,i=[],s=\"\",r=[]]=[]){if(n!==s&&!s&&this.getFromStorage(\"filter\")||!iu(a,r)&&!r.length&&this.getFromStorage(\"selectedTags\",[]).length)return;const o=!iu(i,t),l=this.deprecatedHidden||o&&this.hasFilter||!this.hasFilter?t:e.flatMap(({uid:e})=>this.getParents(e).slice(0,-1)),c=Object.fromEntries(l.map(({uid:e})=>[e,!0])),u=o?this.openNodes:{};this.openNodes=Object.assign(u,c),this.generateNodesToRender(),this.updateFocusIndexExternally()},toggle(e){const t=this.openNodes[e.uid];let n=[],a=[];if(t){const t=Object(w[\"a\"])(this.openNodes),n=this.getAllChildren(e.uid);n.forEach(({uid:e})=>{delete t[e]}),this.openNodes=t,a=n.slice(1)}else this.$set(this.openNodes,e.uid,!0),n=this.getChildren(e.uid).filter(e=>this.renderableChildNodesMap[e.uid]);this.augmentRenderNodes({uid:e.uid,include:n,exclude:a})},toggleFullTree(e){const t=this.openNodes[e.uid],n=Object(w[\"a\"])(this.openNodes),a=this.getAllChildren(e.uid);let i=[],s=[];a.forEach(({uid:e})=>{t?delete n[e]:n[e]=!0}),t?i=a.slice(1):s=a.slice(1).filter(e=>this.renderableChildNodesMap[e.uid]),this.openNodes=n,this.augmentRenderNodes({uid:e.uid,exclude:i,include:s})},toggleSiblings(e){const t=this.openNodes[e.uid],n=Object(w[\"a\"])(this.openNodes),a=this.getSiblings(e.uid);a.forEach(({uid:e,childUIDs:a})=>{if(a.length)if(t){const t=this.getAllChildren(e);t.forEach(e=>{delete n[e.uid]}),delete n[e],this.augmentRenderNodes({uid:e,exclude:t.slice(1),include:[]})}else{n[e]=!0;const t=this.getChildren(e).filter(e=>this.renderableChildNodesMap[e.uid]);this.augmentRenderNodes({uid:e,exclude:[],include:t})}}),this.openNodes=n,this.persistState()},getAllChildren(e){const t=[],n=[e];let a=null;while(n.length){a=n.shift();const e=this.childrenMap[a];t.push(e),n.unshift(...e.childUIDs)}return t},getParents(e){const t=[],n=[e];let a=null;while(n.length){a=n.pop();const e=this.childrenMap[a];if(!e)return[];t.unshift(e),e.parent&&e.parent!==Bl&&n.push(e.parent)}return t},getSiblings(e){const t=this.childrenMap[e];return t?this.getChildren(t.parent):[]},getChildren(e){if(e===Bl)return this.children.filter(e=>e.parent===Bl);const t=this.childrenMap[e];return t?(t.childUIDs||[]).map(e=>this.childrenMap[e]):[]},generateNodesToRender(){const{children:e,openNodes:t,renderableChildNodesMap:n}=this;this.nodesToRender=e.filter(e=>n[e.uid]&&(e.parent===Bl||t[e.parent])),this.persistState(),this.scrollToElement()},augmentRenderNodes({uid:e,include:t=[],exclude:n=[]}){const a=this.nodesToRender.findIndex(t=>t.uid===e);if(t.length){const e=t.filter(e=>!this.nodesToRender.includes(e));this.nodesToRender.splice(a+1,0,...e)}else if(n.length){const e=new Set(n);this.nodesToRender=this.nodesToRender.filter(t=>!e.has(t))}this.persistState()},getFromStorage(e,t=null){const n=cl[\"b\"].get(su,{}),a=n[this.technologyPath];return a?e?a[e]||t:a:t},persistState(){const e={path:this.lastActivePathItem},{path:t}=this.activeUID&&this.childrenMap[this.activeUID]||e,n={technology:this.technology,path:t,hasApiChanges:!!this.apiChanges,openNodes:Object.keys(this.openNodes).map(Number),nodesToRender:this.nodesToRender.map(({uid:e})=>e),activeUID:this.activeUID,filter:this.filter,selectedTags:this.selectedTags},a={...cl[\"b\"].get(su,{}),[this.technologyPath]:n};cl[\"b\"].set(su,a)},clearPersistedState(){const e={...cl[\"b\"].get(su,{}),[this.technologyPath]:{}};cl[\"b\"].set(su,e)},restorePersistedState(){const e=this.getFromStorage();if(!e||e.path!==this.lastActivePathItem)return this.clearPersistedState(),void this.handleActivePathChange(this.activePath);const{technology:t,nodesToRender:n=[],filter:a=\"\",hasAPIChanges:i=!1,activeUID:s=null,selectedTags:r=[],openNodes:o}=e;if(!n.length&&!a&&!r.length)return this.clearPersistedState(),void this.handleActivePathChange(this.activePath);const l=n.every(e=>this.childrenMap[e]),c=s?(this.childrenMap[s]||{}).path===this.lastActivePathItem:1===this.activePath.length;if(t!==this.technology||!l||i!==Boolean(this.apiChanges)||!c||s&&!a&&!r.length&&!n.includes(s))return this.clearPersistedState(),void this.handleActivePathChange(this.activePath);this.openNodes=Object.fromEntries(o.map(e=>[e,!0])),this.nodesToRender=n.map(e=>this.childrenMap[e]),this.selectedTags=r,this.filter=a,this.debouncedFilter=this.filter,this.activeUID=s,this.scrollToElement()},async scrollToElement(){if(await Object(pl[\"b\"])(1),!this.$refs.scroller)return;if(this.resetScroll)return void this.$refs.scroller.scrollToItem(0);const e=document.getElementById(this.activeUID);if(0===this.getChildPositionInScroller(e))return;const t=this.nodesToRender.findIndex(e=>e.uid===this.activeUID);this.$refs.scroller.scrollToItem(t)},getChildPositionInScroller(e){if(!e)return 0;const{paddingTop:t,paddingBottom:n}=getComputedStyle(this.$refs.scroller.$el),a={top:parseInt(t,10)||0,bottom:parseInt(n,10)||0},{y:i,height:s}=this.$refs.scroller.$el.getBoundingClientRect(),{y:r}=e.getBoundingClientRect(),o=Rl,l=r-i-a.top;return l<0?-1:l+o>=s-a.bottom?1:0},isInsideScroller(e){return this.$refs.scroller.$el.contains(e)},handleFocusIn(e){this.lastFocusTarget=e.target;const t=this.getChildPositionInScroller(e.target);0!==t&&this.$refs.scroller.$el.scrollBy({top:Rl*t,left:0})},handleFocusOut(e){e.relatedTarget&&(this.isInsideScroller(e.relatedTarget)||(this.lastFocusTarget=null))},handleScrollerUpdate:ul((async function(){await Object(pl[\"a\"])(300),this.lastFocusTarget&&this.isInsideScroller(this.lastFocusTarget)&&document.activeElement!==this.lastFocusTarget&&this.lastFocusTarget.focus({preventScroll:!0})}),50),setActiveUID(e){this.activeUID=e,this.resetScroll=!1},handleNavigationChange(e){this.childrenMap[e].path.startsWith(this.technologyPath)&&this.setActiveUID(e)},pathsToFlatChildren(e){const t=e.slice(0).reverse();let n=this.children;const a=[];while(t.length){const e=t.pop(),i=n.find(t=>t.path===e);if(!i)break;a.push(i),t.length&&(n=i.childUIDs.map(e=>this.childrenMap[e]))}return a},handleActivePathChange(e){const t=this.childrenMap[this.activeUID],n=au(e);if(t){if(n===t.path)return;const e=this.getSiblings(this.activeUID),a=this.getChildren(this.activeUID),i=this.getParents(this.activeUID),s=[...a,...e,...i].find(e=>e.path===n);if(s)return void this.setActiveUID(s.uid)}const a=this.pathsToFlatChildren(e);a.length?this.setActiveUID(a[a.length-1].uid):this.activeUID?this.setActiveUID(null):this.trackOpenNodes(this.nodeChangeDeps)},updateFocusIndexExternally(){this.externalFocusChange=!0,this.activeIndex>0?this.focusIndex(this.activeIndex):this.focusIndex(0)},convertChildrenArrayToObject(e){return e.reduce((e,t)=>(e[t.uid]=t,e),{})},focusNodeParent(e){const t=this.childrenMap[e.parent];if(!t)return;const n=this.nodesToRender.findIndex(e=>e.uid===t.uid);-1!==n&&this.focusIndex(n)}}},mu=gu,yu=(n(\"5fad\"),Object(R[\"a\"])(mu,jl,Ll,!1,null,\"d21551d4\",null)),vu=yu.exports,bu=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"spinner-icon\",attrs:{viewBox:\"0 0 39.02 39.02\"}},[n(\"path\",{attrs:{d:\"m15.529 11.96-3.57 3.569-7.99-7.99 3.57-3.57z\"}}),n(\"path\",{attrs:{d:\"M0 22.072v-5.06h11.331v5.06z\"}}),n(\"path\",{attrs:{d:\"m7.54 35.096-3.57-3.569 7.99-7.99 3.57 3.569z\"}}),n(\"path\",{attrs:{d:\"M22.057 39.02H17.01v-11.3h5.047z\"}}),n(\"path\",{attrs:{d:\"m35.096 31.528-3.569 3.568-7.99-7.99 3.569-3.569z\"}}),n(\"path\",{attrs:{d:\"M39.02 17.01v5.046h-11.3V17.01z\"}}),n(\"path\",{attrs:{d:\"m31.528 3.97 3.569 3.57-7.99 7.99-3.57-3.57z\"}}),n(\"path\",{attrs:{d:\"M17.011 0h5.061v11.331h-5.061z\"}})])},Tu=[],_u={name:\"SpinnerIcon\",components:{SVGIcon:ye[\"a\"]}},Cu=_u,Su=(n(\"73d6\"),Object(R[\"a\"])(Cu,bu,Tu,!1,null,\"60936b56\",null)),ku=Su.exports,wu={name:\"Navigator\",components:{NavigatorCard:vu,NavigatorCardInner:Wl,SpinnerIcon:ku},data(){return{INDEX_ROOT_KEY:Bl}},props:{parentTopicIdentifiers:{type:Array,required:!0},technology:{type:Object,required:!0},isFetching:{type:Boolean,default:!1},references:{type:Object,default:()=>{}},scrollLockID:{type:String,default:\"\"},errorFetching:{type:Boolean,default:!1},breakpoint:{type:String,default:hl[\"b\"].large},apiChanges:{type:Object,default:null}},computed:{parentTopicReferences({references:e,parentTopicIdentifiers:t}){return t.reduce((t,n)=>{const a=e[n];return a?t.concat(a):(console.error(`Reference for \"${n}\" is missing`),t)},[])},activePath({parentTopicReferences:e,$route:{path:t}}){if(t=t.replace(/\\/$/,\"\").toLowerCase(),!e.length)return[t];let n=1;return\"technologies\"===e[0].kind&&(n=2),e.slice(n).map(e=>e.url).concat(t)},flatChildren:({flattenNestedData:e,technology:t={}})=>e(t.children||[],null,0,t.beta),type:()=>pt.module},methods:{hashCode(e){return e.split(\"\").reduce((e,t)=>(e<<5)-e+t.charCodeAt(0)|0,0)},flattenNestedData(e,t=null,n=0,a=!1){let i=[];const s=e.length;let r;for(r=0;r<s;r+=1){const{children:o,...l}=e[r],{uid:c=Bl}=t||{};l.uid=this.hashCode(`${c}+${l.path}_${n}_${r}`),l.parent=c,l.index=r,l.siblingsCount=s,l.depth=n,l.childUIDs=[],t&&t.childUIDs.push(l.uid),l.beta&&a&&(l.beta=!1),i.push(l),o&&(i=i.concat(this.flattenNestedData(o,l,n+1,a||l.beta)))}return i}}},xu=wu,Iu=(n(\"9ac5\"),Object(R[\"a\"])(xu,Pl,Al,!1,null,\"0ea7ca2b\",null)),Ou=Iu.exports,$u=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"NavBase\",{staticClass:\"documentation-nav\",attrs:{breakpoint:e.BreakpointName.medium,hasOverlay:!1,hasSolidBackground:\"\",hasNoBorder:e.hasNoBorder,isDark:e.isDark,isWideFormat:e.isWideFormat,hasFullWidthBorder:\"\",\"aria-label\":\"API Reference\"},scopedSlots:e._u([e.isWideFormat?{key:\"pre-title\",fn:function(t){var a=t.closeNav,i=t.isOpen;return[n(\"button\",{staticClass:\"sidenav-toggle\",attrs:{\"aria-label\":\"Open documentation navigator\",tabindex:i?-1:null},on:{click:function(t){return t.preventDefault(),e.handleSidenavToggle(a)}}},[n(\"SidenavIcon\",{staticClass:\"icon-inline sidenav-icon\"})],1)]}}:null,{key:\"tray\",fn:function(t){var a=t.closeNav;return[n(\"Hierarchy\",{attrs:{currentTopicTitle:e.title,isSymbolDeprecated:e.isSymbolDeprecated,isSymbolBeta:e.isSymbolBeta,parentTopicIdentifiers:e.hierarchyItems,currentTopicTags:e.currentTopicTags,references:e.references}}),n(\"NavMenuItems\",{staticClass:\"nav-menu-settings\",attrs:{previousSiblingChildren:e.breadcrumbCount}},[e.interfaceLanguage&&(e.swiftPath||e.objcPath)?n(\"LanguageToggle\",{attrs:{interfaceLanguage:e.interfaceLanguage,objcPath:e.objcPath,swiftPath:e.swiftPath,closeNav:a}}):e._e(),e._t(\"menu-items\")],2),e._t(\"tray-after\",null,null,{breadcrumbCount:e.breadcrumbCount})]}}],null,!0)},[n(\"template\",{slot:\"default\"},[e._t(\"title\",(function(){return[e.rootLink?n(\"router-link\",{staticClass:\"nav-title-link\",attrs:{to:e.rootLink}},[e._v(\" Documentation \")]):n(\"span\",{staticClass:\"nav-title-link inactive\"},[e._v(\"Documentation\")])]}),null,{rootLink:e.rootLink,linkClass:\"nav-title-link\",inactiveClass:\"inactive\"})],2),n(\"template\",{slot:\"after-content\"},[e._t(\"after-content\")],2)],2)},Du=[],Pu=n(\"cbcf\"),Au=n(\"9b30\"),ju=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"NavMenuItems\",{staticClass:\"hierarchy\",class:{\"has-badge\":e.hasBadge},attrs:{\"aria-label\":\"Breadcrumbs\"}},[e.root?n(\"HierarchyItem\",{key:e.root.title,staticClass:\"root-hierarchy\",attrs:{url:e.addQueryParamsToUrl(e.root.url)}},[e._v(\" \"+e._s(e.root.title)+\" \")]):e._e(),e._l(e.collapsibleItems,(function(t){return n(\"HierarchyItem\",{key:t.title,attrs:{isCollapsed:\"\",url:e.addQueryParamsToUrl(t.url)}},[e._v(\" \"+e._s(t.title)+\" \")])})),e.collapsibleItems.length?n(\"HierarchyCollapsedItems\",{attrs:{topics:e.collapsibleItems}}):e._e(),e._l(e.nonCollapsibleItems,(function(t){return n(\"HierarchyItem\",{key:t.title,attrs:{url:e.addQueryParamsToUrl(t.url)}},[e._v(\" \"+e._s(t.title)+\" \")])})),n(\"HierarchyItem\",[e._v(\" \"+e._s(e.currentTopicTitle)+\" \"),n(\"template\",{slot:\"tags\"},[e.isSymbolDeprecated?n(\"Badge\",{attrs:{variant:\"deprecated\"}}):e.isSymbolBeta?n(\"Badge\",{attrs:{variant:\"beta\"}}):e._e(),e._l(e.currentTopicTags,(function(t){return n(\"Badge\",{key:t.type+\"-\"+t.text,attrs:{variant:t.type}},[e._v(\" \"+e._s(t.text)+\" \")])}))],2)],2)],2)},Lu=[],Eu=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"li\",{staticClass:\"hierarchy-collapsed-items\"},[n(\"span\",{staticClass:\"hierarchy-item-icon icon-inline\"},[e._v(\"/\")]),n(\"button\",{ref:\"btn\",staticClass:\"toggle\",class:{focused:!e.collapsed},on:{click:e.toggleCollapsed}},[n(\"span\",{staticClass:\"indicator\"},[n(\"EllipsisIcon\",{staticClass:\"icon-inline toggle-icon\"})],1)]),n(\"ul\",{ref:\"dropdown\",staticClass:\"dropdown\",class:{collapsed:e.collapsed}},e._l(e.topicsWithUrls,(function(t){return n(\"li\",{key:t.title,staticClass:\"dropdown-item\"},[n(\"router-link\",{staticClass:\"nav-menu-link\",attrs:{to:t.url}},[e._v(e._s(t.title))])],1)})),0)])},Bu=[],Ru=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"ellipsis-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"m12.439 7.777v-1.554h-1.554v1.554zm-4.662 0v-1.554h-1.554v1.554zm-4.662 0v-1.554h-1.554v1.554z\"}})])},Nu=[],zu={name:\"EllipsisIcon\",components:{SVGIcon:ye[\"a\"]}},Mu=zu,Ku=Object(R[\"a\"])(Mu,Ru,Nu,!1,null,null,null),qu=Ku.exports,Fu={name:\"HierarchyCollapsedItems\",components:{EllipsisIcon:qu},data:()=>({collapsed:!0}),props:{topics:{type:Array,required:!0}},watch:{collapsed(e,t){t&&!e?document.addEventListener(\"click\",this.handleDocumentClick,!1):!t&&e&&document.removeEventListener(\"click\",this.handleDocumentClick,!1)}},beforeDestroy(){document.removeEventListener(\"click\",this.handleDocumentClick,!1)},computed:{topicsWithUrls:({$route:e,topics:t})=>t.map(t=>({...t,url:Object(q[\"b\"])(t.url,e.query)}))},methods:{handleDocumentClick(e){const{target:t}=e,{collapsed:n,$refs:{btn:a,dropdown:i}}=this,s=!a.contains(t)&&!i.contains(t);!n&&s&&(this.collapsed=!0)},toggleCollapsed(){this.collapsed=!this.collapsed}}},Vu=Fu,Hu=(n(\"2ca2\"),Object(R[\"a\"])(Vu,Eu,Bu,!1,null,\"74906830\",null)),Wu=Hu.exports,Uu=function(e,t){var n=t._c;return n(t.$options.components.NavMenuItemBase,{tag:\"component\",staticClass:\"hierarchy-item\",class:[{collapsed:t.props.isCollapsed},t.data.staticClass]},[n(\"span\",{staticClass:\"hierarchy-item-icon icon-inline\"},[t._v(\"/\")]),t.props.url?n(\"router-link\",{staticClass:\"parent item nav-menu-link\",attrs:{to:t.props.url}},[t._t(\"default\")],2):[n(\"span\",{staticClass:\"current item\"},[t._t(\"default\")],2),t._t(\"tags\")]],2)},Gu=[],Xu=n(\"863d\"),Yu={name:\"HierarchyItem\",components:{NavMenuItemBase:Xu[\"a\"],InlineChevronRightIcon:Xl[\"a\"]},props:{isCollapsed:Boolean,url:{type:String,required:!1}}},Ju=Yu,Qu=(n(\"260a\"),Object(R[\"a\"])(Ju,Uu,Gu,!0,null,\"382bf39e\",null)),Zu=Qu.exports;const ed=3;var td={name:\"Hierarchy\",components:{Badge:bn,NavMenuItems:Au[\"a\"],HierarchyCollapsedItems:Wu,HierarchyItem:Zu},constants:{MaxVisibleLinks:ed},props:{isSymbolDeprecated:Boolean,isSymbolBeta:Boolean,references:Object,currentTopicTitle:{type:String,required:!0},parentTopicIdentifiers:{type:Array,default:()=>[]},currentTopicTags:{type:Array,default:()=>[]}},data(){return{windowWidth:window.innerWidth}},mounted(){const e=yl(()=>{this.windowWidth=window.innerWidth},150);window.addEventListener(\"resize\",e),this.$once(\"hook:beforeDestroy\",()=>{window.removeEventListener(\"resize\",e)})},computed:{parentTopics(){return this.parentTopicIdentifiers.reduce((e,t)=>{const n=this.references[t];if(n){const{title:t,url:a}=n;return e.concat({title:t,url:a})}return console.error(`Reference for \"${t}\" is missing`),e},[])},root:({parentTopics:e,windowWidth:t})=>t<=1e3?null:e[0],firstItemSlice:({root:e})=>e?1:0,linksAfterCollapse:({windowWidth:e,hasBadge:t})=>{const n=t?1:0;return e>1200?ed-n:e>1e3?ed-1-n:e>=800?ed-2-n:0},collapsibleItems:({parentTopics:e,linksAfterCollapse:t,firstItemSlice:n})=>t?e.slice(n,-t):e.slice(n),nonCollapsibleItems:({parentTopics:e,linksAfterCollapse:t,firstItemSlice:n})=>t?e.slice(n).slice(-t):[],hasBadge:({isSymbolDeprecated:e,isSymbolBeta:t,currentTopicTags:n})=>e||t||n.length},methods:{addQueryParamsToUrl(e){return Object(q[\"b\"])(e,this.$route.query)}}},nd=td,ad=(n(\"1fb2\"),Object(R[\"a\"])(nd,ju,Lu,!1,null,\"30132cb0\",null)),id=ad.exports,sd=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"NavMenuItemBase\",{staticClass:\"nav-menu-setting language-container\"},[n(\"div\",{class:{\"language-toggle-container\":e.hasLanguages}},[n(\"select\",{ref:\"language-sizer\",staticClass:\"language-dropdown language-sizer\",attrs:{\"aria-hidden\":\"true\",tabindex:\"-1\"}},[n(\"option\",{attrs:{selected:\"\"}},[e._v(e._s(e.currentLanguage.name))])]),n(\"label\",{staticClass:\"nav-menu-setting-label\",attrs:{for:e.hasLanguages?\"language-toggle\":null}},[e._v(\"Language:\")]),e.hasLanguages?n(\"select\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.languageModel,expression:\"languageModel\"}],staticClass:\"language-dropdown nav-menu-link\",style:\"width: \"+e.adjustedWidth+\"px\",attrs:{id:\"language-toggle\"},on:{change:[function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){var t=\"_value\"in e?e._value:e.value;return t}));e.languageModel=t.target.multiple?n:n[0]},function(t){return e.pushRoute(e.currentLanguage.route)}]}},e._l(e.languages,(function(t){return n(\"option\",{key:t.api,domProps:{value:t.api}},[e._v(\" \"+e._s(t.name)+\" \")])})),0):n(\"span\",{staticClass:\"nav-menu-toggle-none current-language\",attrs:{\"aria-current\":\"page\"}},[e._v(e._s(e.currentLanguage.name))]),e.hasLanguages?n(\"InlineChevronDownIcon\",{staticClass:\"toggle-icon icon-inline\"}):e._e()],1),e.hasLanguages?n(\"div\",{staticClass:\"language-list-container\"},[n(\"span\",{staticClass:\"nav-menu-setting-label\"},[e._v(\"Language:\")]),n(\"ul\",{staticClass:\"language-list\"},e._l(e.languages,(function(t){return n(\"li\",{key:t.api,staticClass:\"language-list-item\"},[t.api===e.languageModel?n(\"span\",{staticClass:\"current-language\",attrs:{\"data-language\":t.api,\"aria-current\":\"page\"}},[e._v(\" \"+e._s(t.name)+\" \")]):n(\"a\",{staticClass:\"nav-menu-link\",attrs:{href:\"#\"},on:{click:function(n){return n.preventDefault(),e.pushRoute(t.route)}}},[e._v(\" \"+e._s(t.name)+\" \")])])})),0)]):e._e()])},rd=[],od=n(\"7948\"),ld={name:\"LanguageToggle\",components:{InlineChevronDownIcon:od[\"a\"],NavMenuItemBase:Xu[\"a\"]},inject:{store:{default(){return{setPreferredLanguage(){}}}}},props:{interfaceLanguage:{type:String,required:!0},objcPath:{type:String,required:!1},swiftPath:{type:String,required:!1},closeNav:{type:Function,default:()=>{}}},data(){return{languageModel:null,adjustedWidth:0}},mounted(){const e=ul(async()=>{await Object(pl[\"b\"])(3),this.calculateSelectWidth()},150,!0);window.addEventListener(\"resize\",e),window.addEventListener(\"orientationchange\",e),this.$once(\"hook:beforeDestroy\",()=>{window.removeEventListener(\"resize\",e),window.removeEventListener(\"orientationchange\",e)})},watch:{interfaceLanguage:{immediate:!0,handler(e){this.languageModel=e}},currentLanguage:{immediate:!0,handler:\"calculateSelectWidth\"}},methods:{getRoute(e){const t=e.query===O[\"a\"].swift.key.url?void 0:e.query;return{query:{...this.$route.query,language:t},path:this.isCurrentPath(e.path)?null:this.normalizePath(e.path)}},async pushRoute(e){await this.closeNav(),this.store.setPreferredLanguage(e.query),this.$router.push(this.getRoute(e))},isCurrentPath(e){return this.$route.path.replace(/^\\//,\"\")===e},normalizePath(e){return e.startsWith(\"/\")?e:\"/\"+e},async calculateSelectWidth(){await this.$nextTick(),this.adjustedWidth=this.$refs[\"language-sizer\"].clientWidth+6}},computed:{languages(){return[{name:O[\"a\"].swift.name,api:O[\"a\"].swift.key.api,route:{path:this.swiftPath,query:O[\"a\"].swift.key.url}},{name:O[\"a\"].objectiveC.name,api:O[\"a\"].objectiveC.key.api,route:{path:this.objcPath,query:O[\"a\"].objectiveC.key.url}}]},currentLanguage:({languages:e,languageModel:t})=>e.find(e=>e.api===t),hasLanguages:({objcPath:e,swiftPath:t})=>t&&e}},cd=ld,ud=(n(\"97a5\"),Object(R[\"a\"])(cd,sd,rd,!1,null,\"126c8e14\",null)),dd=ud.exports,hd={name:\"DocumentationNav\",components:{SidenavIcon:cc,NavBase:Pu[\"a\"],NavMenuItems:Au[\"a\"],Hierarchy:id,LanguageToggle:dd},props:{title:{type:String,required:!1},parentTopicIdentifiers:{type:Array,required:!1},isSymbolBeta:{type:Boolean,required:!1},isSymbolDeprecated:{type:Boolean,required:!1},isDark:{type:Boolean,default:!1},hasNoBorder:{type:Boolean,default:!1},currentTopicTags:{type:Array,required:!0},references:{type:Object,default:()=>({})},isWideFormat:{type:Boolean,default:!0},interfaceLanguage:{type:String,required:!1},objcPath:{type:String,required:!1},swiftPath:{type:String,required:!1}},computed:{BreakpointName:()=>hl[\"b\"],breadcrumbCount:({hierarchyItems:e})=>e.length+1,rootHierarchyReference:({parentTopicIdentifiers:e,references:t})=>t[e[0]]||{},isRootTechnologyLink:({rootHierarchyReference:{kind:e}})=>\"technologies\"===e,rootLink:({isRootTechnologyLink:e,rootHierarchyReference:t,$route:n})=>e?{path:t.url,query:n.query}:null,hierarchyItems:({parentTopicIdentifiers:e,isRootTechnologyLink:t})=>t?e.slice(1):e},methods:{async handleSidenavToggle(e){await e(),this.$emit(\"toggle-sidenav\")}}},pd=hd,fd=(n(\"2dd1\"),Object(R[\"a\"])(pd,$u,Du,!1,null,\"cbd98416\",null)),gd=fd.exports,md=n(\"3bdd\");const yd=\"0.3.0\";var vd={name:\"DocumentationTopicView\",constants:{MIN_RENDER_JSON_VERSION_WITH_INDEX:yd},components:{Navigator:Ou,AdjustableSidebarWidth:Dl,NavigatorDataProvider:rl,Topic:Fo,CodeTheme:Zo[\"a\"],Nav:gd},mixins:[tl[\"a\"],nl[\"a\"]],data(){return{topicDataDefault:null,topicDataObjc:null,isSideNavOpen:!1,store:Qo,BreakpointName:hl[\"b\"]}},computed:{objcOverrides:({topicData:e})=>{const{variantOverrides:t=[]}=e||{},n=({interfaceLanguage:e})=>e===O[\"a\"].objectiveC.key.api,a=({traits:e})=>e.some(n),i=t.find(a);return i?i.patch:null},topicData:{get(){return this.topicDataObjc?this.topicDataObjc:this.topicDataDefault},set(e){this.topicDataDefault=e}},topicKey:({$route:e,topicProps:t})=>[e.path,t.interfaceLanguage].join(),topicProps(){const{abstract:e,defaultImplementationsSections:t,deprecationSummary:n,downloadNotAvailableSummary:a,diffAvailability:i,hierarchy:s,identifier:{interfaceLanguage:r,url:o},metadata:{conformance:l,modules:c,platforms:u,required:d=!1,roleHeading:h,title:p=\"\",tags:f=[],role:g,symbolKind:m=\"\"}={},primaryContentSections:y,relationshipsSections:v,references:b={},sampleCodeDownload:T,topicSections:_,seeAlsoSections:C,variantOverrides:S}=this.topicData;return{abstract:e,conformance:l,defaultImplementationsSections:t,deprecationSummary:n,downloadNotAvailableSummary:a,diffAvailability:i,hierarchy:s,role:g,identifier:o,interfaceLanguage:r,isRequirement:d,modules:c,platforms:u,primaryContentSections:y,relationshipsSections:v,references:b,roleHeading:h,sampleCodeDownload:T,title:p,topicSections:_,seeAlsoSections:C,variantOverrides:S,symbolKind:m,tags:f.slice(0,1)}},parentTopicIdentifiers:({topicProps:{hierarchy:{paths:e=[]},references:t},$route:n})=>e.length?e.find(e=>{const a=e.find(e=>t[e]&&\"technologies\"!==t[e].kind),i=a&&t[a];return i&&n.path.toLowerCase().startsWith(i.url.toLowerCase())})||e[0]:[],technology:({$route:e,topicProps:{identifier:t,references:n,role:a,title:i},parentTopicIdentifiers:s})=>{const r={title:i,url:e.path},o=n[t];if(!s.length)return o||r;const l=n[s[0]];return l&&\"technologies\"!==l.kind?l:(a!==k[\"a\"].collection||o)&&(l&&n[s[1]]||o)||r},languagePaths:({topicData:{variants:e=[]}})=>e.reduce((e,t)=>t.traits.reduce((e,n)=>n.interfaceLanguage?{...e,[n.interfaceLanguage]:(e[n.interfaceLanguage]||[]).concat(t.paths)}:e,e),{}),objcPath:({languagePaths:{[O[\"a\"].objectiveC.key.api]:[e]=[]}={}})=>e,swiftPath:({languagePaths:{[O[\"a\"].swift.key.api]:[e]=[]}={}})=>e,isSymbolBeta:({topicProps:{platforms:e}})=>!!(e&&e.length&&e.every(e=>e.beta)),isSymbolDeprecated:({topicProps:{platforms:e,deprecationSummary:t}})=>!!(t&&t.length>0||e&&e.length&&e.every(e=>e.deprecatedAt)),enableNavigator:({isTargetIDE:e,topicDataDefault:t})=>!e&&Object(md[\"b\"])(Object(md[\"a\"])(t.schemaVersion),yd)>=0,sidebarProps:({isSideNavOpen:e,enableNavigator:t})=>t?{class:\"full-width-container topic-wrapper\",openExternally:e}:{class:\"static-width-container topic-wrapper\"},sidebarListeners(){return this.enableNavigator?{\"update:openExternally\":e=>{this.isSideNavOpen=e}}:{}}},methods:{applyObjcOverrides(){this.topicDataObjc=S(Object(w[\"a\"])(this.topicData),this.objcOverrides)},handleCodeColorsChange(e){el[\"a\"].updateCodeColors(e)}},mounted(){this.$bridge.on(\"contentUpdate\",e=>{this.topicData=e}),this.$bridge.on(\"codeColors\",this.handleCodeColorsChange),this.$bridge.send({type:\"requestCodeColors\"})},provide(){return{store:this.store}},inject:{isTargetIDE:{default(){return!1}}},beforeDestroy(){this.$bridge.off(\"codeColors\",this.handleCodeColorsChange)},beforeRouteEnter(e,t,n){Object(w[\"b\"])(e,t,n).then(t=>n(n=>{n.topicData=t,e.query.language===O[\"a\"].objectiveC.key.url&&n.objcOverrides&&n.applyObjcOverrides()})).catch(n)},beforeRouteUpdate(e,t,n){e.path===t.path&&e.query.language===O[\"a\"].objectiveC.key.url&&this.objcOverrides?(this.applyObjcOverrides(),n()):Object(w[\"d\"])(e,t)?Object(w[\"b\"])(e,t,n).then(t=>{this.topicDataObjc=null,this.topicData=t,e.query.language===O[\"a\"].objectiveC.key.url&&this.objcOverrides&&this.applyObjcOverrides(),n()}).catch(n):n()},created(){this.store.reset()},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},bd=vd,Td=(n(\"c8fe\"),Object(R[\"a\"])(bd,a,i,!1,null,\"6c414c34\",null));t[\"default\"]=Td.exports},f8bd:function(e,t,n){},fb6d:function(e,t,n){\"use strict\";n(\"4ab9\")}}]);"
  },
  {
    "path": "docs/js/documentation-topic~topic~tutorials-overview.8e36e44f.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"documentation-topic~topic~tutorials-overview\"],{\"05a1\":function(e,t,n){},\"0f00\":function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"row\"},[e._t(\"default\")],2)},r=[],s={name:\"GridRow\"},a=s,o=(n(\"2224\"),n(\"2877\")),c=Object(o[\"a\"])(a,i,r,!1,null,\"be73599c\",null);t[\"a\"]=c.exports},1020:function(e,t){var n={exports:{}};function i(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error(\"map is read-only\")}:e instanceof Set&&(e.add=e.clear=e.delete=function(){throw new Error(\"set is read-only\")}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach((function(t){var n=e[t];\"object\"!=typeof n||Object.isFrozen(n)||i(n)})),e}n.exports=i,n.exports.default=i;var r=n.exports;class s{constructor(e){void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}}function a(e){return e.replace(/&/g,\"&amp;\").replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\").replace(/\"/g,\"&quot;\").replace(/'/g,\"&#x27;\")}function o(e,...t){const n=Object.create(null);for(const i in e)n[i]=e[i];return t.forEach((function(e){for(const t in e)n[t]=e[t]})),n}const c=\"</span>\",l=e=>!!e.kind,u=(e,{prefix:t})=>{if(e.includes(\".\")){const n=e.split(\".\");return[`${t}${n.shift()}`,...n.map((e,t)=>`${e}${\"_\".repeat(t+1)}`)].join(\" \")}return`${t}${e}`};class d{constructor(e,t){this.buffer=\"\",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){this.buffer+=a(e)}openNode(e){if(!l(e))return;let t=e.kind;t=e.sublanguage?\"language-\"+t:u(t,{prefix:this.classPrefix}),this.span(t)}closeNode(e){l(e)&&(this.buffer+=c)}value(){return this.buffer}span(e){this.buffer+=`<span class=\"${e}\">`}}class h{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const t={kind:e,children:[]};this.add(t),this.stack.push(t)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){while(this.closeNode());}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){return\"string\"===typeof t?e.addText(t):t.children&&(e.openNode(t),t.children.forEach(t=>this._walk(e,t)),e.closeNode(t)),e}static _collapse(e){\"string\"!==typeof e&&e.children&&(e.children.every(e=>\"string\"===typeof e)?e.children=[e.children.join(\"\")]:e.children.forEach(e=>{h._collapse(e)}))}}class p extends h{constructor(e){super(),this.options=e}addKeyword(e,t){\"\"!==e&&(this.openNode(t),this.addText(e),this.closeNode())}addText(e){\"\"!==e&&this.add(e)}addSublanguage(e,t){const n=e.root;n.kind=t,n.sublanguage=!0,this.add(n)}toHTML(){const e=new d(this,this.options);return e.value()}finalize(){return!0}}function g(e){return e?\"string\"===typeof e?e:e.source:null}function f(e){return v(\"(?=\",e,\")\")}function m(e){return v(\"(?:\",e,\")*\")}function b(e){return v(\"(?:\",e,\")?\")}function v(...e){const t=e.map(e=>g(e)).join(\"\");return t}function y(e){const t=e[e.length-1];return\"object\"===typeof t&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}function w(...e){const t=y(e),n=\"(\"+(t.capture?\"\":\"?:\")+e.map(e=>g(e)).join(\"|\")+\")\";return n}function x(e){return new RegExp(e.toString()+\"|\").exec(\"\").length-1}function E(e,t){const n=e&&e.exec(t);return n&&0===n.index}const _=/\\[(?:[^\\\\\\]]|\\\\.)*\\]|\\(\\??|\\\\([1-9][0-9]*)|\\\\./;function j(e,{joinWith:t}){let n=0;return e.map(e=>{n+=1;const t=n;let i=g(e),r=\"\";while(i.length>0){const e=_.exec(i);if(!e){r+=i;break}r+=i.substring(0,e.index),i=i.substring(e.index+e[0].length),\"\\\\\"===e[0][0]&&e[1]?r+=\"\\\\\"+String(Number(e[1])+t):(r+=e[0],\"(\"===e[0]&&n++)}return r}).map(e=>`(${e})`).join(t)}const k=/\\b\\B/,T=\"[a-zA-Z]\\\\w*\",C=\"[a-zA-Z_]\\\\w*\",S=\"\\\\b\\\\d+(\\\\.\\\\d+)?\",O=\"(-?)(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",N=\"\\\\b(0b[01]+)\",I=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",L=(e={})=>{const t=/^#![ ]*\\//;return e.binary&&(e.begin=v(t,/.*\\b/,e.binary,/\\b.*/)),o({scope:\"meta\",begin:t,end:/$/,relevance:0,\"on:begin\":(e,t)=>{0!==e.index&&t.ignoreMatch()}},e)},A={begin:\"\\\\\\\\[\\\\s\\\\S]\",relevance:0},B={scope:\"string\",begin:\"'\",end:\"'\",illegal:\"\\\\n\",contains:[A]},M={scope:\"string\",begin:'\"',end:'\"',illegal:\"\\\\n\",contains:[A]},$={begin:/\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b/},R=function(e,t,n={}){const i=o({scope:\"comment\",begin:e,end:t,contains:[]},n);i.contains.push({scope:\"doctag\",begin:\"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)\",end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});const r=w(\"I\",\"a\",\"is\",\"so\",\"us\",\"to\",\"at\",\"if\",\"in\",\"it\",\"on\",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return i.contains.push({begin:v(/[ ]+/,\"(\",r,/[.]?[:]?([.][ ]|[ ])/,\"){3}\")}),i},D=R(\"//\",\"$\"),P=R(\"/\\\\*\",\"\\\\*/\"),F=R(\"#\",\"$\"),H={scope:\"number\",begin:S,relevance:0},q={scope:\"number\",begin:O,relevance:0},V={scope:\"number\",begin:N,relevance:0},U={begin:/(?=\\/[^/\\n]*\\/)/,contains:[{scope:\"regexp\",begin:/\\//,end:/\\/[gimuy]*/,illegal:/\\n/,contains:[A,{begin:/\\[/,end:/\\]/,relevance:0,contains:[A]}]}]},W={scope:\"title\",begin:T,relevance:0},z={scope:\"title\",begin:C,relevance:0},G={begin:\"\\\\.\\\\s*\"+C,relevance:0},K=function(e){return Object.assign(e,{\"on:begin\":(e,t)=>{t.data._beginMatch=e[1]},\"on:end\":(e,t)=>{t.data._beginMatch!==e[1]&&t.ignoreMatch()}})};var Y=Object.freeze({__proto__:null,MATCH_NOTHING_RE:k,IDENT_RE:T,UNDERSCORE_IDENT_RE:C,NUMBER_RE:S,C_NUMBER_RE:O,BINARY_NUMBER_RE:N,RE_STARTERS_RE:I,SHEBANG:L,BACKSLASH_ESCAPE:A,APOS_STRING_MODE:B,QUOTE_STRING_MODE:M,PHRASAL_WORDS_MODE:$,COMMENT:R,C_LINE_COMMENT_MODE:D,C_BLOCK_COMMENT_MODE:P,HASH_COMMENT_MODE:F,NUMBER_MODE:H,C_NUMBER_MODE:q,BINARY_NUMBER_MODE:V,REGEXP_MODE:U,TITLE_MODE:W,UNDERSCORE_TITLE_MODE:z,METHOD_GUARD:G,END_SAME_AS_BEGIN:K});function X(e,t){const n=e.input[e.index-1];\".\"===n&&t.ignoreMatch()}function Z(e,t){void 0!==e.className&&(e.scope=e.className,delete e.className)}function J(e,t){t&&e.beginKeywords&&(e.begin=\"\\\\b(\"+e.beginKeywords.split(\" \").join(\"|\")+\")(?!\\\\.)(?=\\\\b|\\\\s)\",e.__beforeBegin=X,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,void 0===e.relevance&&(e.relevance=0))}function Q(e,t){Array.isArray(e.illegal)&&(e.illegal=w(...e.illegal))}function ee(e,t){if(e.match){if(e.begin||e.end)throw new Error(\"begin & end are not supported with match\");e.begin=e.match,delete e.match}}function te(e,t){void 0===e.relevance&&(e.relevance=1)}const ne=(e,t)=>{if(!e.beforeMatch)return;if(e.starts)throw new Error(\"beforeMatch cannot be used with starts\");const n=Object.assign({},e);Object.keys(e).forEach(t=>{delete e[t]}),e.keywords=n.keywords,e.begin=v(n.beforeMatch,f(n.begin)),e.starts={relevance:0,contains:[Object.assign(n,{endsParent:!0})]},e.relevance=0,delete n.beforeMatch},ie=[\"of\",\"and\",\"for\",\"in\",\"not\",\"or\",\"if\",\"then\",\"parent\",\"list\",\"value\"],re=\"keyword\";function se(e,t,n=re){const i=Object.create(null);return\"string\"===typeof e?r(n,e.split(\" \")):Array.isArray(e)?r(n,e):Object.keys(e).forEach((function(n){Object.assign(i,se(e[n],t,n))})),i;function r(e,n){t&&(n=n.map(e=>e.toLowerCase())),n.forEach((function(t){const n=t.split(\"|\");i[n[0]]=[e,ae(n[0],n[1])]}))}}function ae(e,t){return t?Number(t):oe(e)?0:1}function oe(e){return ie.includes(e.toLowerCase())}const ce={},le=e=>{console.error(e)},ue=(e,...t)=>{console.log(\"WARN: \"+e,...t)},de=(e,t)=>{ce[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),ce[`${e}/${t}`]=!0)},he=new Error;function pe(e,t,{key:n}){let i=0;const r=e[n],s={},a={};for(let o=1;o<=t.length;o++)a[o+i]=r[o],s[o+i]=!0,i+=x(t[o-1]);e[n]=a,e[n]._emit=s,e[n]._multi=!0}function ge(e){if(Array.isArray(e.begin)){if(e.skip||e.excludeBegin||e.returnBegin)throw le(\"skip, excludeBegin, returnBegin not compatible with beginScope: {}\"),he;if(\"object\"!==typeof e.beginScope||null===e.beginScope)throw le(\"beginScope must be object\"),he;pe(e,e.begin,{key:\"beginScope\"}),e.begin=j(e.begin,{joinWith:\"\"})}}function fe(e){if(Array.isArray(e.end)){if(e.skip||e.excludeEnd||e.returnEnd)throw le(\"skip, excludeEnd, returnEnd not compatible with endScope: {}\"),he;if(\"object\"!==typeof e.endScope||null===e.endScope)throw le(\"endScope must be object\"),he;pe(e,e.end,{key:\"endScope\"}),e.end=j(e.end,{joinWith:\"\"})}}function me(e){e.scope&&\"object\"===typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope,delete e.scope)}function be(e){me(e),\"string\"===typeof e.beginScope&&(e.beginScope={_wrap:e.beginScope}),\"string\"===typeof e.endScope&&(e.endScope={_wrap:e.endScope}),ge(e),fe(e)}function ve(e){function t(t,n){return new RegExp(g(t),\"m\"+(e.case_insensitive?\"i\":\"\")+(e.unicodeRegex?\"u\":\"\")+(n?\"g\":\"\"))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,t){t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),this.matchAt+=x(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const e=this.regexes.map(e=>e[1]);this.matcherRe=t(j(e,{joinWith:\"|\"}),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const t=this.matcherRe.exec(e);if(!t)return null;const n=t.findIndex((e,t)=>t>0&&void 0!==e),i=this.matchIndexes[n];return t.splice(0,n),Object.assign(t,i)}}class i{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];const t=new n;return this.rules.slice(e).forEach(([e,n])=>t.addRule(e,n)),t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){this.rules.push([e,t]),\"begin\"===t.type&&this.count++}exec(e){const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex;let n=t.exec(e);if(this.resumingScanAtSamePosition())if(n&&n.index===this.lastIndex);else{const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)}return n&&(this.regexIndex+=n.position+1,this.regexIndex===this.count&&this.considerAll()),n}}function r(e){const t=new i;return e.contains.forEach(e=>t.addRule(e.begin,{rule:e,type:\"begin\"})),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:\"end\"}),e.illegal&&t.addRule(e.illegal,{type:\"illegal\"}),t}function s(n,i){const a=n;if(n.isCompiled)return a;[Z,ee,be,ne].forEach(e=>e(n,i)),e.compilerExtensions.forEach(e=>e(n,i)),n.__beforeBegin=null,[J,Q,te].forEach(e=>e(n,i)),n.isCompiled=!0;let o=null;return\"object\"===typeof n.keywords&&n.keywords.$pattern&&(n.keywords=Object.assign({},n.keywords),o=n.keywords.$pattern,delete n.keywords.$pattern),o=o||/\\w+/,n.keywords&&(n.keywords=se(n.keywords,e.case_insensitive)),a.keywordPatternRe=t(o,!0),i&&(n.begin||(n.begin=/\\B|\\b/),a.beginRe=t(a.begin),n.end||n.endsWithParent||(n.end=/\\B|\\b/),n.end&&(a.endRe=t(a.end)),a.terminatorEnd=g(a.end)||\"\",n.endsWithParent&&i.terminatorEnd&&(a.terminatorEnd+=(n.end?\"|\":\"\")+i.terminatorEnd)),n.illegal&&(a.illegalRe=t(n.illegal)),n.contains||(n.contains=[]),n.contains=[].concat(...n.contains.map((function(e){return we(\"self\"===e?n:e)}))),n.contains.forEach((function(e){s(e,a)})),n.starts&&s(n.starts,i),a.matcher=r(a),a}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes(\"self\"))throw new Error(\"ERR: contains `self` is not supported at the top-level of a language.  See documentation.\");return e.classNameAliases=o(e.classNameAliases||{}),s(e)}function ye(e){return!!e&&(e.endsWithParent||ye(e.starts))}function we(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((function(t){return o(e,{variants:null},t)}))),e.cachedVariants?e.cachedVariants:ye(e)?o(e,{starts:e.starts?o(e.starts):null}):Object.isFrozen(e)?o(e):e}var xe=\"11.3.1\";class Ee extends Error{constructor(e,t){super(e),this.name=\"HTMLInjectionError\",this.html=t}}const _e=a,je=o,ke=Symbol(\"nomatch\"),Te=7,Ce=function(e){const t=Object.create(null),n=Object.create(null),i=[];let a=!0;const o=\"Could not find the language '{}', did you forget to load/include a language module?\",c={disableAutodetect:!0,name:\"Plain text\",contains:[]};let l={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\\blang(?:uage)?-([\\w-]+)\\b/i,classPrefix:\"hljs-\",cssSelector:\"pre code\",languages:null,__emitter:p};function u(e){return l.noHighlightRe.test(e)}function d(e){let t=e.className+\" \";t+=e.parentNode?e.parentNode.className:\"\";const n=l.languageDetectRe.exec(t);if(n){const t=B(n[1]);return t||(ue(o.replace(\"{}\",n[1])),ue(\"Falling back to no-highlight mode for this block.\",e)),t?n[1]:\"no-highlight\"}return t.split(/\\s+/).find(e=>u(e)||B(e))}function h(e,t,n){let i=\"\",r=\"\";\"object\"===typeof t?(i=e,n=t.ignoreIllegals,r=t.language):(de(\"10.7.0\",\"highlight(lang, code, ...args) has been deprecated.\"),de(\"10.7.0\",\"Please use highlight(code, options) instead.\\nhttps://github.com/highlightjs/highlight.js/issues/2277\"),r=e,i=t),void 0===n&&(n=!0);const s={code:i,language:r};P(\"before:highlight\",s);const a=s.result?s.result:g(s.language,s.code,n);return a.code=s.code,P(\"after:highlight\",a),a}function g(e,n,i,r){const c=Object.create(null);function u(e,t){return e.keywords[t]}function d(){if(!O.keywords)return void I.addText(L);let e=0;O.keywordPatternRe.lastIndex=0;let t=O.keywordPatternRe.exec(L),n=\"\";while(t){n+=L.substring(e,t.index);const i=T.case_insensitive?t[0].toLowerCase():t[0],r=u(O,i);if(r){const[e,s]=r;if(I.addText(n),n=\"\",c[i]=(c[i]||0)+1,c[i]<=Te&&(A+=s),e.startsWith(\"_\"))n+=t[0];else{const n=T.classNameAliases[e]||e;I.addKeyword(t[0],n)}}else n+=t[0];e=O.keywordPatternRe.lastIndex,t=O.keywordPatternRe.exec(L)}n+=L.substr(e),I.addText(n)}function h(){if(\"\"===L)return;let e=null;if(\"string\"===typeof O.subLanguage){if(!t[O.subLanguage])return void I.addText(L);e=g(O.subLanguage,L,!0,N[O.subLanguage]),N[O.subLanguage]=e._top}else e=x(L,O.subLanguage.length?O.subLanguage:null);O.relevance>0&&(A+=e.relevance),I.addSublanguage(e._emitter,e.language)}function p(){null!=O.subLanguage?h():d(),L=\"\"}function f(e,t){let n=1;while(void 0!==t[n]){if(!e._emit[n]){n++;continue}const i=T.classNameAliases[e[n]]||e[n],r=t[n];i?I.addKeyword(r,i):(L=r,d(),L=\"\"),n++}}function m(e,t){return e.scope&&\"string\"===typeof e.scope&&I.openNode(T.classNameAliases[e.scope]||e.scope),e.beginScope&&(e.beginScope._wrap?(I.addKeyword(L,T.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),L=\"\"):e.beginScope._multi&&(f(e.beginScope,t),L=\"\")),O=Object.create(e,{parent:{value:O}}),O}function b(e,t,n){let i=E(e.endRe,n);if(i){if(e[\"on:end\"]){const n=new s(e);e[\"on:end\"](t,n),n.isMatchIgnored&&(i=!1)}if(i){while(e.endsParent&&e.parent)e=e.parent;return e}}if(e.endsWithParent)return b(e.parent,t,n)}function v(e){return 0===O.matcher.regexIndex?(L+=e[0],1):(R=!0,0)}function y(e){const t=e[0],n=e.rule,i=new s(n),r=[n.__beforeBegin,n[\"on:begin\"]];for(const s of r)if(s&&(s(e,i),i.isMatchIgnored))return v(t);return n.skip?L+=t:(n.excludeBegin&&(L+=t),p(),n.returnBegin||n.excludeBegin||(L=t)),m(n,e),n.returnBegin?0:t.length}function w(e){const t=e[0],i=n.substr(e.index),r=b(O,e,i);if(!r)return ke;const s=O;O.endScope&&O.endScope._wrap?(p(),I.addKeyword(t,O.endScope._wrap)):O.endScope&&O.endScope._multi?(p(),f(O.endScope,e)):s.skip?L+=t:(s.returnEnd||s.excludeEnd||(L+=t),p(),s.excludeEnd&&(L=t));do{O.scope&&I.closeNode(),O.skip||O.subLanguage||(A+=O.relevance),O=O.parent}while(O!==r.parent);return r.starts&&m(r.starts,e),s.returnEnd?0:t.length}function _(){const e=[];for(let t=O;t!==T;t=t.parent)t.scope&&e.unshift(t.scope);e.forEach(e=>I.openNode(e))}let j={};function k(t,r){const s=r&&r[0];if(L+=t,null==s)return p(),0;if(\"begin\"===j.type&&\"end\"===r.type&&j.index===r.index&&\"\"===s){if(L+=n.slice(r.index,r.index+1),!a){const t=new Error(`0 width match regex (${e})`);throw t.languageName=e,t.badRule=j.rule,t}return 1}if(j=r,\"begin\"===r.type)return y(r);if(\"illegal\"===r.type&&!i){const e=new Error('Illegal lexeme \"'+s+'\" for mode \"'+(O.scope||\"<unnamed>\")+'\"');throw e.mode=O,e}if(\"end\"===r.type){const e=w(r);if(e!==ke)return e}if(\"illegal\"===r.type&&\"\"===s)return 1;if($>1e5&&$>3*r.index){const e=new Error(\"potential infinite loop, way more iterations than matches\");throw e}return L+=s,s.length}const T=B(e);if(!T)throw le(o.replace(\"{}\",e)),new Error('Unknown language: \"'+e+'\"');const C=ve(T);let S=\"\",O=r||C;const N={},I=new l.__emitter(l);_();let L=\"\",A=0,M=0,$=0,R=!1;try{for(O.matcher.considerAll();;){$++,R?R=!1:O.matcher.considerAll(),O.matcher.lastIndex=M;const e=O.matcher.exec(n);if(!e)break;const t=n.substring(M,e.index),i=k(t,e);M=e.index+i}return k(n.substr(M)),I.closeAllNodes(),I.finalize(),S=I.toHTML(),{language:e,value:S,relevance:A,illegal:!1,_emitter:I,_top:O}}catch(D){if(D.message&&D.message.includes(\"Illegal\"))return{language:e,value:_e(n),illegal:!0,relevance:0,_illegalBy:{message:D.message,index:M,context:n.slice(M-100,M+100),mode:D.mode,resultSoFar:S},_emitter:I};if(a)return{language:e,value:_e(n),illegal:!1,relevance:0,errorRaised:D,_emitter:I,_top:O};throw D}}function y(e){const t={value:_e(e),illegal:!1,relevance:0,_top:c,_emitter:new l.__emitter(l)};return t._emitter.addText(e),t}function x(e,n){n=n||l.languages||Object.keys(t);const i=y(e),r=n.filter(B).filter($).map(t=>g(t,e,!1));r.unshift(i);const s=r.sort((e,t)=>{if(e.relevance!==t.relevance)return t.relevance-e.relevance;if(e.language&&t.language){if(B(e.language).supersetOf===t.language)return 1;if(B(t.language).supersetOf===e.language)return-1}return 0}),[a,o]=s,c=a;return c.secondBest=o,c}function _(e,t,i){const r=t&&n[t]||i;e.classList.add(\"hljs\"),e.classList.add(\"language-\"+r)}function j(e){let t=null;const n=d(e);if(u(n))return;if(P(\"before:highlightElement\",{el:e,language:n}),e.children.length>0&&(l.ignoreUnescapedHTML||(console.warn(\"One of your code blocks includes unescaped HTML. This is a potentially serious security risk.\"),console.warn(\"https://github.com/highlightjs/highlight.js/issues/2886\"),console.warn(e)),l.throwUnescapedHTML)){const t=new Ee(\"One of your code blocks includes unescaped HTML.\",e.innerHTML);throw t}t=e;const i=t.textContent,r=n?h(i,{language:n,ignoreIllegals:!0}):x(i);e.innerHTML=r.value,_(e,n,r.language),e.result={language:r.language,re:r.relevance,relevance:r.relevance},r.secondBest&&(e.secondBest={language:r.secondBest.language,relevance:r.secondBest.relevance}),P(\"after:highlightElement\",{el:e,result:r,text:i})}function k(e){l=je(l,e)}const T=()=>{O(),de(\"10.6.0\",\"initHighlighting() deprecated.  Use highlightAll() now.\")};function C(){O(),de(\"10.6.0\",\"initHighlightingOnLoad() deprecated.  Use highlightAll() now.\")}let S=!1;function O(){if(\"loading\"===document.readyState)return void(S=!0);const e=document.querySelectorAll(l.cssSelector);e.forEach(j)}function N(){S&&O()}function I(n,i){let r=null;try{r=i(e)}catch(s){if(le(\"Language definition for '{}' could not be registered.\".replace(\"{}\",n)),!a)throw s;le(s),r=c}r.name||(r.name=n),t[n]=r,r.rawDefinition=i.bind(null,e),r.aliases&&M(r.aliases,{languageName:n})}function L(e){delete t[e];for(const t of Object.keys(n))n[t]===e&&delete n[t]}function A(){return Object.keys(t)}function B(e){return e=(e||\"\").toLowerCase(),t[e]||t[n[e]]}function M(e,{languageName:t}){\"string\"===typeof e&&(e=[e]),e.forEach(e=>{n[e.toLowerCase()]=t})}function $(e){const t=B(e);return t&&!t.disableAutodetect}function R(e){e[\"before:highlightBlock\"]&&!e[\"before:highlightElement\"]&&(e[\"before:highlightElement\"]=t=>{e[\"before:highlightBlock\"](Object.assign({block:t.el},t))}),e[\"after:highlightBlock\"]&&!e[\"after:highlightElement\"]&&(e[\"after:highlightElement\"]=t=>{e[\"after:highlightBlock\"](Object.assign({block:t.el},t))})}function D(e){R(e),i.push(e)}function P(e,t){const n=e;i.forEach((function(e){e[n]&&e[n](t)}))}function F(e){return de(\"10.7.0\",\"highlightBlock will be removed entirely in v12.0\"),de(\"10.7.0\",\"Please use highlightElement now.\"),j(e)}\"undefined\"!==typeof window&&window.addEventListener&&window.addEventListener(\"DOMContentLoaded\",N,!1),Object.assign(e,{highlight:h,highlightAuto:x,highlightAll:O,highlightElement:j,highlightBlock:F,configure:k,initHighlighting:T,initHighlightingOnLoad:C,registerLanguage:I,unregisterLanguage:L,listLanguages:A,getLanguage:B,registerAliases:M,autoDetection:$,inherit:je,addPlugin:D}),e.debugMode=function(){a=!1},e.safeMode=function(){a=!0},e.versionString=xe,e.regex={concat:v,lookahead:f,either:w,optional:b,anyNumberOfTimes:m};for(const s in Y)\"object\"===typeof Y[s]&&r(Y[s]);return Object.assign(e,Y),e};var Se=Ce({});e.exports=Se,Se.HighlightJS=Se,Se.default=Se},1417:function(e,t,n){var i={\"./markdown\":[\"84cb\",\"highlight-js-custom-markdown\"],\"./markdown.js\":[\"84cb\",\"highlight-js-custom-markdown\"],\"./swift\":[\"81c8\",\"highlight-js-custom-swift\"],\"./swift.js\":[\"81c8\",\"highlight-js-custom-swift\"]};function r(e){if(!n.o(i,e))return Promise.resolve().then((function(){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}));var t=i[e],r=t[0];return n.e(t[1]).then((function(){return n(r)}))}r.keys=function(){return Object.keys(i)},r.id=\"1417\",e.exports=r},\"146e\":function(e,t,n){\"use strict\";var i=n(\"8a61\");t[\"a\"]={mixins:[i[\"a\"]],mounted(){this.$route.hash&&this.scrollToElement(this.$route.hash)}}},\"189f\":function(e,t,n){},2224:function(e,t,n){\"use strict\";n(\"b392\")},\"25a9\":function(e,t,n){\"use strict\";n.d(t,\"b\",(function(){return h})),n.d(t,\"d\",(function(){return p})),n.d(t,\"a\",(function(){return g})),n.d(t,\"c\",(function(){return f}));var i=n(\"748c\"),r=n(\"d26a\"),s=n(\"3bdd\"),a=n(\"6842\");class o extends Error{constructor({location:e,response:t}){super(\"Request redirected\"),this.location=e,this.response=t}}class c extends Error{constructor(e){super(\"Unable to fetch data\"),this.route=e}}async function l(e,t={}){function n(e){return(\"ide\"!==Object({NODE_ENV:\"production\",VUE_APP_TITLE:\"Documentation\",BASE_URL:\"{{BASE_PATH}}/\"}).VUE_APP_TARGET||0!==e.status)&&!e.ok}const i=new URL(e,window.location.href),a=Object(r[\"c\"])(t);a&&(i.search=a);const c=await fetch(i.href);if(n(c))throw c;if(c.redirected)throw new o({location:c.url,response:c});const l=await c.json();return Object(s[\"c\"])(l.schemaVersion),l}function u(e){const t=e.replace(/\\/$/,\"\");return Object(i[\"c\"])([a[\"a\"],\"data\",t])+\".json\"}function d(e){const{pathname:t,search:n}=new URL(e),i=/\\/data(\\/.*).json$/,r=i.exec(t);return r?r[1]+n:t+n}async function h(e,t,n){const i=u(e.path);let r;try{r=await l(i,e.query)}catch(s){if(\"ide\"===Object({NODE_ENV:\"production\",VUE_APP_TITLE:\"Documentation\",BASE_URL:\"{{BASE_PATH}}/\"}).VUE_APP_TARGET)throw console.error(s),!1;if(s instanceof o)throw d(s.location);s.status&&404===s.status?n({name:\"not-found\",params:[e.path]}):n(new c(e))}return r}function p(e,t){return!Object(r[\"a\"])(e,t)}function g(e){return JSON.parse(JSON.stringify(e))}async function f(){const e=new URL(\"\"+Object(i[\"c\"])([a[\"a\"],\"index/index.json\"]),window.location.href);return l(e)}},\"287e\":function(e,t,n){},\"2ab3\":function(e,t,n){var i={\"./bash\":[\"f0f8\",\"highlight-js-bash\"],\"./bash.js\":[\"f0f8\",\"highlight-js-bash\"],\"./c\":[\"1fe5\",\"highlight-js-c\"],\"./c.js\":[\"1fe5\",\"highlight-js-c\"],\"./cpp\":[\"0209\",\"highlight-js-cpp\"],\"./cpp.js\":[\"0209\",\"highlight-js-cpp\"],\"./css\":[\"ee8c\",\"highlight-js-css\"],\"./css.js\":[\"ee8c\",\"highlight-js-css\"],\"./diff\":[\"48b8\",\"highlight-js-diff\"],\"./diff.js\":[\"48b8\",\"highlight-js-diff\"],\"./http\":[\"c01d\",\"highlight-js-http\"],\"./http.js\":[\"c01d\",\"highlight-js-http\"],\"./java\":[\"332f\",\"highlight-js-java\"],\"./java.js\":[\"332f\",\"highlight-js-java\"],\"./javascript\":[\"4dd1\",\"highlight-js-javascript\"],\"./javascript.js\":[\"4dd1\",\"highlight-js-javascript\"],\"./json\":[\"5ad2\",\"highlight-js-json\"],\"./json.js\":[\"5ad2\",\"highlight-js-json\"],\"./llvm\":[\"7c30\",\"highlight-js-llvm\"],\"./llvm.js\":[\"7c30\",\"highlight-js-llvm\"],\"./markdown\":[\"04b0\",\"highlight-js-markdown\"],\"./markdown.js\":[\"04b0\",\"highlight-js-markdown\"],\"./objectivec\":[\"9bf2\",\"highlight-js-objectivec\"],\"./objectivec.js\":[\"9bf2\",\"highlight-js-objectivec\"],\"./perl\":[\"6a51\",\"highlight-js-perl\"],\"./perl.js\":[\"6a51\",\"highlight-js-perl\"],\"./php\":[\"2907\",\"highlight-js-php\"],\"./php.js\":[\"2907\",\"highlight-js-php\"],\"./python\":[\"9510\",\"highlight-js-python\"],\"./python.js\":[\"9510\",\"highlight-js-python\"],\"./ruby\":[\"82cb\",\"highlight-js-ruby\"],\"./ruby.js\":[\"82cb\",\"highlight-js-ruby\"],\"./scss\":[\"6113\",\"highlight-js-scss\"],\"./scss.js\":[\"6113\",\"highlight-js-scss\"],\"./shell\":[\"b65b\",\"highlight-js-shell\"],\"./shell.js\":[\"b65b\",\"highlight-js-shell\"],\"./swift\":[\"2a39\",\"highlight-js-swift\"],\"./swift.js\":[\"2a39\",\"highlight-js-swift\"],\"./xml\":[\"8dcb\",\"highlight-js-xml\"],\"./xml.js\":[\"8dcb\",\"highlight-js-xml\"]};function r(e){if(!n.o(i,e))return Promise.resolve().then((function(){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}));var t=i[e],r=t[0];return n.e(t[1]).then((function(){return n.t(r,7)}))}r.keys=function(){return Object.keys(i)},r.id=\"2ab3\",e.exports=r},\"30b0\":function(e,t,n){},\"34b0\":function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"inline-chevron-right-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M2.964 1.366l0.649-0.76 7.426 6.343-7.423 6.445-0.655-0.755 6.545-5.683-6.542-5.59z\"}})])},r=[],s=n(\"be08\"),a={name:\"InlineChevronRightIcon\",components:{SVGIcon:s[\"a\"]}},o=a,c=n(\"2877\"),l=Object(c[\"a\"])(o,i,r,!1,null,null,null);t[\"a\"]=l.exports},\"3b8f\":function(e,t,n){},\"3bdd\":function(e,t,n){\"use strict\";n.d(t,\"a\",(function(){return r})),n.d(t,\"b\",(function(){return a})),n.d(t,\"c\",(function(){return d}));const i={major:0,minor:3,patch:0};function r({major:e,minor:t,patch:n}){return[e,t,n].join(\".\")}function s(e){const[t=0,n=0,i=0]=e.split(\".\");return[Number(t),Number(n),Number(i)]}function a(e,t){const n=s(e),i=s(t);for(let r=0;r<n.length;r+=1){if(n[r]>i[r])return 1;if(n[r]<i[r])return-1}return 0}const o=r(i);function c(e){return`[Swift-DocC-Render] The render node version for this page has a higher minor version (${e}) than Swift-DocC-Render supports (${o}). Compatibility is not guaranteed.`}const l=e=>`[Swift-DocC-Render] The render node version for this page (${e}) has a different major version component than Swift-DocC-Render supports (${o}). Compatibility is not guaranteed.`;function u(e){const{major:t,minor:n}=e,{major:s,minor:a}=i;return t!==s?l(r(e)):n>a?c(r(e)):\"\"}function d(e){if(!e)return;const t=u(e);t&&console.warn(t)}},\"43fe\":function(e,t,n){\"use strict\";n(\"4573\")},4573:function(e,t,n){},\"47cc\":function(e,t,n){},\"4c7a\":function(e,t,n){},\"4d50\":function(e,t,n){\"use strict\";n(\"ec05\")},\"50fc\":function(e,t,n){},\"517a\":function(e,t,n){\"use strict\";n(\"8222\")},\"52e4\":function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"WordBreak\",{attrs:{tag:\"code\"}},[e._t(\"default\")],2)},r=[],s=n(\"7b1f\"),a={name:\"CodeVoice\",components:{WordBreak:s[\"a\"]}},o=a,c=(n(\"8c92\"),n(\"2877\")),l=Object(c[\"a\"])(o,i,r,!1,null,\"05f4a5b7\",null);t[\"a\"]=l.exports},5677:function(e,t,n){\"use strict\";var i=n(\"e3ab\"),r=n(\"7b69\"),s=n(\"52e4\"),a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"DictionaryExample\"},[e._t(\"default\"),n(\"CollapsibleCodeListing\",{attrs:{content:e.example.content,showLineNumbers:\"\"}})],2)},o=[],c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"collapsible-code-listing\",class:{\"single-line\":1===e.content[0].code.length}},[n(\"pre\",[n(\"div\",e._l(this.content,(function(t,i){return n(\"div\",{key:i,class:[\"container-general\",{collapsible:!0===t.collapsible},{collapsed:!0===t.collapsible&&e.collapsed}]},e._l(t.code,(function(t,i){return n(\"code\",{key:i,staticClass:\"code-line-container\"},[e._v(\"\\n    \"),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.showLineNumbers,expression:\"showLineNumbers\"}],staticClass:\"code-number\"}),e._v(\"\\n    \"),n(\"div\",{staticClass:\"code-line\"},[e._v(e._s(t))]),e._v(\"\\n  \")])})),0)})),0)])])},l=[],u={name:\"CollapsibleCodeListing\",props:{collapsed:{type:Boolean,required:!1},content:{type:Array,required:!0},showLineNumbers:{type:Boolean,default:()=>!0}}},d=u,h=(n(\"9975\"),n(\"2877\")),p=Object(h[\"a\"])(d,c,l,!1,null,\"d68ae420\",null),g=p.exports,f={name:\"DictionaryExample\",components:{CollapsibleCodeListing:g},props:{example:{type:Object,required:!0}}},m=f,b=Object(h[\"a\"])(m,a,o,!1,null,null,null),v=b.exports,y=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"Row\",{staticClass:\"endpoint-example\"},[n(\"Column\",{staticClass:\"example-code\"},[e._t(\"default\"),n(\"Tabnav\",{model:{value:e.currentTab,callback:function(t){e.currentTab=t},expression:\"currentTab\"}},[n(\"TabnavItem\",{attrs:{value:e.Tab.request}},[e._v(e._s(e.Tab.request))]),n(\"TabnavItem\",{attrs:{value:e.Tab.response}},[e._v(e._s(e.Tab.response))])],1),n(\"div\",{staticClass:\"output\"},[e.isCurrent(e.Tab.request)?n(\"div\",{staticClass:\"code\"},[n(\"CollapsibleCodeListing\",e._b({attrs:{collapsed:e.isCollapsed,showLineNumbers:\"\"}},\"CollapsibleCodeListing\",e.request,!1))],1):e._e(),e.isCurrent(e.Tab.response)?n(\"div\",{staticClass:\"code\"},[n(\"CollapsibleCodeListing\",e._b({attrs:{collapsed:e.isCollapsed,showLineNumbers:\"\"}},\"CollapsibleCodeListing\",e.response,!1))],1):e._e()]),e.isCollapsible?n(\"div\",{staticClass:\"controls\"},[e.isCollapsed?n(\"a\",{staticClass:\"toggle\",attrs:{href:\"#\"},on:{click:function(t){return t.preventDefault(),e.showMore.apply(null,arguments)}}},[n(\"InlinePlusCircleSolidIcon\",{staticClass:\"control-icon icon-inline\"}),e._v(\" More \")],1):n(\"a\",{staticClass:\"toggle\",attrs:{href:\"#\"},on:{click:function(t){return t.preventDefault(),e.showLess.apply(null,arguments)}}},[n(\"InlineMinusCircleSolidIcon\",{staticClass:\"control-icon icon-inline\"}),e._v(\" Less \")],1)]):e._e()],2)],1)},w=[],x=n(\"0f00\"),E=n(\"620a\"),_=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"nav\",{staticClass:\"tabnav\"},[n(\"ul\",{staticClass:\"tabnav-items\"},[e._t(\"default\")],2)])},j=[];const k=\"tabnavData\";var T={name:\"Tabnav\",constants:{ProvideKey:k},provide(){const e={selectTab:this.selectTab};return Object.defineProperty(e,\"activeTab\",{enumerable:!0,get:()=>this.value}),{[k]:e}},props:{value:{type:String,required:!0}},methods:{selectTab(e){this.$emit(\"input\",e)}}},C=T,S=(n(\"bab1\"),Object(h[\"a\"])(C,_,j,!1,null,\"42371214\",null)),O=S.exports,N=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"li\",{staticClass:\"tabnav-item\"},[n(\"a\",{staticClass:\"tabnav-link\",class:{active:e.isActive},attrs:{href:\"#\"},on:{click:function(t){return t.preventDefault(),e.tabnavData.selectTab(e.value)}}},[e._t(\"default\")],2)])},I=[],L={name:\"TabnavItem\",inject:{tabnavData:{default:{activeTab:null,selectTab:()=>{}}}},props:{value:{type:String,default:\"\"}},computed:{isActive({tabnavData:e,value:t}){return e.activeTab===t}}},A=L,B=(n(\"c064\"),Object(h[\"a\"])(A,N,I,!1,null,\"723a9588\",null)),M=B.exports,$=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"inline-plus-circle-solid-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M7.005 0.5h-0.008c-1.791 0.004-3.412 0.729-4.589 1.9l0-0c-1.179 1.177-1.908 2.803-1.908 4.6 0 3.59 2.91 6.5 6.5 6.5s6.5-2.91 6.5-6.5c0-3.587-2.906-6.496-6.492-6.5h-0zM4.005 7.52v-1h2.5v-2.51h1v2.51h2.5v1h-2.501v2.49h-1v-2.49z\"}})])},R=[],D=n(\"be08\"),P={name:\"InlinePlusCircleSolidIcon\",components:{SVGIcon:D[\"a\"]}},F=P,H=Object(h[\"a\"])(F,$,R,!1,null,null,null),q=H.exports,V=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"inline-minus-circle-solid-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"m6.98999129.48999129c3.58985091 0 6.50000001 2.91014913 6.50000001 6.5 0 3.58985091-2.9101491 6.50000001-6.50000001 6.50000001-3.58985087 0-6.5-2.9101491-6.5-6.50000001 0-3.58985087 2.91014913-6.5 6.5-6.5zm3 6.02001742h-6v1h6z\",\"fill-rule\":\"evenodd\"}})])},U=[],W={name:\"InlineMinusCircleSolidIcon\",components:{SVGIcon:D[\"a\"]}},z=W,G=Object(h[\"a\"])(z,V,U,!1,null,null,null),K=G.exports;const Y={request:\"Request\",response:\"Response\"};var X={name:\"EndpointExample\",components:{InlineMinusCircleSolidIcon:K,InlinePlusCircleSolidIcon:q,TabnavItem:M,Tabnav:O,CollapsibleCodeListing:g,Row:x[\"a\"],Column:E[\"a\"]},constants:{Tab:Y},props:{request:{type:Object,required:!0},response:{type:Object,required:!0}},data(){return{isCollapsed:!0,currentTab:Y.request}},computed:{Tab:()=>Y,isCollapsible:({response:e,request:t,currentTab:n})=>{const i={[Y.request]:t.content,[Y.response]:e.content}[n]||[];return i.some(({collapsible:e})=>e)}},methods:{isCurrent(e){return this.currentTab===e},showMore(){this.isCollapsed=!1},showLess(){this.isCollapsed=!0}}},Z=X,J=(n(\"9a2b\"),Object(h[\"a\"])(Z,y,w,!1,null,\"6197ce3f\",null)),Q=J.exports,ee=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"figure\",{attrs:{id:e.anchor}},[e._t(\"default\")],2)},te=[],ne={name:\"Figure\",props:{anchor:{type:String,required:!0}}},ie=ne,re=(n(\"57ea\"),Object(h[\"a\"])(ie,ee,te,!1,null,\"7be42fb4\",null)),se=re.exports,ae=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"figcaption\",{staticClass:\"caption\"},[n(\"strong\",[e._v(e._s(e.title))]),e._v(\" \"),e._t(\"default\")],2)},oe=[],ce={name:\"FigureCaption\",props:{title:{type:String,required:!0}}},le=ce,ue=(n(\"e7fb\"),Object(h[\"a\"])(le,ae,oe,!1,null,\"0bcb8b58\",null)),de=ue.exports,he=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"ImageAsset\",{attrs:{alt:e.alt,variants:e.variants}})},pe=[],ge=n(\"8bd9\"),fe={name:\"InlineImage\",components:{ImageAsset:ge[\"a\"]},props:{alt:{type:String,default:\"\"},variants:{type:Array,required:!0}}},me=fe,be=(n(\"cb92\"),Object(h[\"a\"])(me,he,pe,!1,null,\"3a939631\",null)),ve=be.exports,ye=n(\"86d8\"),we=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"table-wrapper\"},[n(\"table\",[e._t(\"default\")],2)])},xe=[],Ee={name:\"Table\"},_e=Ee,je=(n(\"72af\"),n(\"90f3\"),Object(h[\"a\"])(_e,we,xe,!1,null,\"358dcd5e\",null)),ke=je.exports,Te=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"s\",[e._t(\"default\")],2)},Ce=[],Se={name:\"StrikeThrough\"},Oe=Se,Ne=(n(\"830f\"),Object(h[\"a\"])(Oe,Te,Ce,!1,null,\"eb91ce54\",null)),Ie=Ne.exports;const Le={aside:\"aside\",codeListing:\"codeListing\",endpointExample:\"endpointExample\",heading:\"heading\",orderedList:\"orderedList\",paragraph:\"paragraph\",table:\"table\",termList:\"termList\",unorderedList:\"unorderedList\",dictionaryExample:\"dictionaryExample\"},Ae={codeVoice:\"codeVoice\",emphasis:\"emphasis\",image:\"image\",inlineHead:\"inlineHead\",link:\"link\",newTerm:\"newTerm\",reference:\"reference\",strong:\"strong\",text:\"text\",superscript:\"superscript\",subscript:\"subscript\",strikethrough:\"strikethrough\"},Be={both:\"both\",column:\"column\",none:\"none\",row:\"row\"};function Me(e,t){const n=n=>n.map(Me(e,t)),a=t=>t.map(t=>e(\"li\",{},n(t.content))),o=(t,i=Be.none)=>{switch(i){case Be.both:{const[i,...r]=t;return[e(\"thead\",{},[e(\"tr\",{},i.map(t=>e(\"th\",{attrs:{scope:\"col\"}},n(t))))]),e(\"tbody\",{},r.map(([t,...i])=>e(\"tr\",{},[e(\"th\",{attrs:{scope:\"row\"}},n(t)),...i.map(t=>e(\"td\",{},n(t)))])))]}case Be.column:return[e(\"tbody\",{},t.map(([t,...i])=>e(\"tr\",{},[e(\"th\",{attrs:{scope:\"row\"}},n(t)),...i.map(t=>e(\"td\",{},n(t)))])))];case Be.row:{const[i,...r]=t;return[e(\"thead\",{},[e(\"tr\",{},i.map(t=>e(\"th\",{attrs:{scope:\"col\"}},n(t))))]),e(\"tbody\",{},r.map(t=>e(\"tr\",{},t.map(t=>e(\"td\",{},n(t))))))]}default:return[e(\"tbody\",{},t.map(t=>e(\"tr\",{},t.map(t=>e(\"td\",{},n(t))))))]}},c=({metadata:{abstract:t,anchor:i,title:r},...s})=>e(se,{props:{anchor:i}},[...r&&t&&t.length?[e(de,{props:{title:r}},n(t))]:[],n([s])]);return function(l){switch(l.type){case Le.aside:{const t={kind:l.style,name:l.name};return e(i[\"a\"],{props:t},n(l.content))}case Le.codeListing:{if(l.metadata&&l.metadata.anchor)return c(l);const t={syntax:l.syntax,fileType:l.fileType,content:l.code,showLineNumbers:l.showLineNumbers};return e(r[\"a\"],{props:t})}case Le.endpointExample:{const t={request:l.request,response:l.response};return e(Q,{props:t},n(l.summary||[]))}case Le.heading:return e(\"h\"+l.level,{attrs:{id:l.anchor}},l.text);case Le.orderedList:return e(\"ol\",{attrs:{start:l.start}},a(l.items));case Le.paragraph:return e(\"p\",{},n(l.inlineContent));case Le.table:return l.metadata&&l.metadata.anchor?c(l):e(ke,{},o(l.rows,l.header));case Le.termList:return e(\"dl\",{},l.items.map(({term:t,definition:i})=>[e(\"dt\",{},n(t.inlineContent)),e(\"dd\",{},n(i.content))]));case Le.unorderedList:return e(\"ul\",{},a(l.items));case Le.dictionaryExample:{const t={example:l.example};return e(v,{props:t},n(l.summary||[]))}case Ae.codeVoice:return e(s[\"a\"],{},l.code);case Ae.emphasis:case Ae.newTerm:return e(\"em\",n(l.inlineContent));case Ae.image:{if(l.metadata&&l.metadata.anchor)return c(l);const n=t[l.identifier];return n?e(ve,{props:{alt:n.alt,variants:n.variants}}):null}case Ae.link:return e(\"a\",{attrs:{href:l.destination}},l.title);case Ae.reference:{const i=t[l.identifier];if(!i)return null;const r=l.overridingTitleInlineContent||i.titleInlineContent,s=l.overridingTitle||i.title;return e(ye[\"a\"],{props:{url:i.url,kind:i.kind,role:i.role,isActive:l.isActive,ideTitle:i.ideTitle,titleStyle:i.titleStyle}},r?n(r):s)}case Ae.strong:case Ae.inlineHead:return e(\"strong\",n(l.inlineContent));case Ae.text:return l.text;case Ae.superscript:return e(\"sup\",n(l.inlineContent));case Ae.subscript:return e(\"sub\",n(l.inlineContent));case Ae.strikethrough:return e(Ie,n(l.inlineContent));default:return null}}}var $e,Re,De={name:\"ContentNode\",constants:{TableHeaderStyle:Be},render:function(e){return e(this.tag,{class:\"content\"},this.content.map(Me(e,this.references),this))},inject:{references:{default(){return{}}}},props:{content:{type:Array,required:!0},tag:{type:String,default:()=>\"div\"}},methods:{map(e){function t(n=[]){return n.map(n=>{switch(n.type){case Le.aside:return e({...n,content:t(n.content)});case Le.dictionaryExample:return e({...n,summary:t(n.summary)});case Le.paragraph:case Ae.emphasis:case Ae.strong:case Ae.inlineHead:case Ae.superscript:case Ae.subscript:case Ae.strikethrough:case Ae.newTerm:return e({...n,inlineContent:t(n.inlineContent)});case Le.orderedList:case Le.unorderedList:return e({...n,items:n.items.map(e=>({...e,content:t(e.content)}))});case Le.table:return e({...n,rows:n.rows.map(e=>e.map(t))});case Le.termList:return e({...n,items:n.items.map(e=>({...e,term:{inlineContent:t(e.term.inlineContent)},definition:{content:t(e.definition.content)}}))});default:return e(n)}})}return t(this.content)},forEach(e){function t(n=[]){n.forEach(n=>{switch(e(n),n.type){case Le.aside:t(n.content);break;case Le.paragraph:case Ae.emphasis:case Ae.strong:case Ae.inlineHead:case Ae.newTerm:case Ae.superscript:case Ae.subscript:case Ae.strikethrough:t(n.inlineContent);break;case Le.orderedList:case Le.unorderedList:n.items.forEach(e=>t(e.content));break;case Le.dictionaryExample:t(n.summary);break;case Le.table:n.rows.forEach(e=>{e.forEach(t)});break;case Le.termList:n.items.forEach(e=>{t(e.term.inlineContent),t(e.definition.content)});break}})}return t(this.content)},reduce(e,t){let n=t;return this.forEach(t=>{n=e(n,t)}),n}},computed:{plaintext(){return this.reduce((e,t)=>t.type===Le.paragraph?e+\"\\n\":t.type===Ae.text?`${e}${t.text}`:e,\"\").trim()}},BlockType:Le,InlineType:Ae},Pe=De,Fe=Object(h[\"a\"])(Pe,$e,Re,!1,null,null,null);t[\"a\"]=Fe.exports},\"57ea\":function(e,t,n){\"use strict\";n(\"971b\")},\"598a\":function(e,t,n){},\"5da3\":function(e,t,n){e.exports=n.p+\"img/no-image@2x.df2a0a50.png\"},\"620a\":function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"col\",class:e.classes},[e._t(\"default\")],2)},r=[];const s=0,a=12,o=new Set([\"large\",\"medium\",\"small\"]),c=e=>({type:Object,default:()=>({}),validator:t=>Object.keys(t).every(n=>o.has(n)&&e(t[n]))}),l=c(e=>\"boolean\"===typeof e),u=c(e=>\"number\"===typeof e&&e>=s&&e<=a);var d={name:\"GridColumn\",props:{isCentered:l,isUnCentered:l,span:{...u,default:()=>({large:a})}},computed:{classes:function(){return{[\"large-\"+this.span.large]:void 0!==this.span.large,[\"medium-\"+this.span.medium]:void 0!==this.span.medium,[\"small-\"+this.span.small]:void 0!==this.span.small,\"large-centered\":!!this.isCentered.large,\"medium-centered\":!!this.isCentered.medium,\"small-centered\":!!this.isCentered.small,\"large-uncentered\":!!this.isUnCentered.large,\"medium-uncentered\":!!this.isUnCentered.medium,\"small-uncentered\":!!this.isUnCentered.small}}}},h=d,p=(n(\"6e4a\"),n(\"2877\")),g=Object(p[\"a\"])(h,i,r,!1,null,\"2ee3ad8b\",null);t[\"a\"]=g.exports},\"621f\":function(e,t,n){\"use strict\";n(\"b1d4\")},\"66cd\":function(e,t,n){\"use strict\";n.d(t,\"a\",(function(){return i}));const i={article:\"article\",codeListing:\"codeListing\",collection:\"collection\",collectionGroup:\"collectionGroup\",containerSymbol:\"containerSymbol\",devLink:\"devLink\",dictionarySymbol:\"dictionarySymbol\",generic:\"generic\",link:\"link\",media:\"media\",pseudoCollection:\"pseudoCollection\",pseudoSymbol:\"pseudoSymbol\",restRequestSymbol:\"restRequestSymbol\",sampleCode:\"sampleCode\",symbol:\"symbol\",table:\"table\",learn:\"learn\",overview:\"overview\",project:\"project\",tutorial:\"tutorial\",resources:\"resources\"}},\"6cc4\":function(e,t,n){},\"6e4a\":function(e,t,n){\"use strict\";n(\"05a1\")},\"72af\":function(e,t,n){\"use strict\";n(\"d541\")},\"72e7\":function(e,t,n){\"use strict\";const i={up:\"up\",down:\"down\"};t[\"a\"]={constants:{IntersectionDirections:i},data(){return{intersectionObserver:null,intersectionPreviousScrollY:0,intersectionScrollDirection:i.down}},computed:{intersectionThreshold(){const e=[];for(let t=0;t<=1;t+=.01)e.push(t);return e},intersectionRoot(){return null},intersectionRootMargin(){return\"0px 0px 0px 0px\"},intersectionObserverOptions(){return{root:this.intersectionRoot,rootMargin:this.intersectionRootMargin,threshold:this.intersectionThreshold}}},async mounted(){await n.e(\"chunk-2d0d3105\").then(n.t.bind(null,\"5abe\",7)),this.intersectionObserver=new IntersectionObserver(e=>{this.detectIntersectionScrollDirection();const t=this.onIntersect;t?e.forEach(t):console.warn(\"onIntersect not implemented\")},this.intersectionObserverOptions),this.getIntersectionTargets().forEach(e=>{this.intersectionObserver.observe(e)})},beforeDestroy(){this.intersectionObserver&&this.intersectionObserver.disconnect()},methods:{getIntersectionTargets(){return[this.$el]},detectIntersectionScrollDirection(){window.scrollY<this.intersectionPreviousScrollY?this.intersectionScrollDirection=i.down:window.scrollY>this.intersectionPreviousScrollY&&(this.intersectionScrollDirection=i.up),this.intersectionPreviousScrollY=window.scrollY}}}},\"76ab\":function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.resolvedComponent,e._b({tag:\"component\",staticClass:\"button-cta\",class:{\"is-dark\":e.isDark}},\"component\",e.componentProps,!1),[e._t(\"default\")],2)},r=[],s=n(\"86d8\"),a={name:\"ButtonLink\",components:{Reference:s[\"a\"]},props:{url:{type:String,required:!1},isDark:{type:Boolean,default:!1}},computed:{resolvedComponent:({url:e})=>e?s[\"a\"]:\"button\",componentProps:({url:e})=>e?{url:e}:{}}},o=a,c=(n(\"621f\"),n(\"2877\")),l=Object(c[\"a\"])(o,i,r,!1,null,\"494ad9c8\",null);t[\"a\"]=l.exports},\"7b1f\":function(e,t,n){\"use strict\";var i,r,s={functional:!0,name:\"WordBreak\",render(e,{props:t,slots:n,data:i}){const r=n().default||[],s=r.filter(e=>e.text&&!e.tag);if(0===s.length||s.length!==r.length)return e(t.tag,i,r);const a=s.map(({text:e})=>e).join(),o=[];let c=null,l=0;while(null!==(c=t.safeBoundaryPattern.exec(a))){const t=c.index+1;o.push(a.slice(l,t)),o.push(e(\"wbr\",{key:c.index})),l=t}return o.push(a.slice(l,a.length)),e(t.tag,i,o)},props:{safeBoundaryPattern:{type:RegExp,default:()=>/([a-z](?=[A-Z])|(:)\\w|\\w(?=[._]\\w))/g},tag:{type:String,default:()=>\"span\"}}},a=s,o=n(\"2877\"),c=Object(o[\"a\"])(a,i,r,!1,null,null,null);t[\"a\"]=c.exports},\"7b69\":function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"code-listing\",class:{\"single-line\":1===e.syntaxHighlightedLines.length},attrs:{\"data-syntax\":e.syntaxNameNormalized}},[e.fileName?n(\"Filename\",{attrs:{isActionable:e.isFileNameActionable,fileType:e.fileType},on:{click:function(t){return e.$emit(\"file-name-click\")}}},[e._v(e._s(e.fileName)+\" \")]):e._e(),n(\"div\",{staticClass:\"container-general\"},[n(\"pre\",[n(\"code\",e._l(e.syntaxHighlightedLines,(function(t,i){return n(\"span\",{key:i,class:[\"code-line-container\",{highlighted:e.isHighlighted(i)}]},[n(\"span\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.showLineNumbers,expression:\"showLineNumbers\"}],staticClass:\"code-number\",attrs:{\"data-line-number\":e.lineNumberFor(i)}}),e._v(\"\\n\"),n(\"span\",{staticClass:\"code-line\",domProps:{innerHTML:e._s(t)}})])})),0)])])],1)},r=[],s=n(\"002d\"),a=n(\"8649\"),o=n(\"1020\"),c=n.n(o);const l={objectivec:[\"objective-c\"]},u={bash:[\"sh\",\"zsh\"],c:[\"h\"],cpp:[\"cc\",\"c++\",\"h++\",\"hpp\",\"hh\",\"hxx\",\"cxx\"],css:[],diff:[\"patch\"],http:[\"https\"],java:[\"jsp\"],javascript:[\"js\",\"jsx\",\"mjs\",\"cjs\"],json:[],llvm:[],markdown:[\"md\",\"mkdown\",\"mkd\"],objectivec:[\"mm\",\"objc\",\"obj-c\"].concat(l.objectivec),perl:[\"pl\",\"pm\"],php:[],python:[\"py\",\"gyp\",\"ipython\"],ruby:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],scss:[],shell:[\"console\",\"shellsession\"],swift:[],xml:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xjb\",\"xsd\",\"xsl\",\"plist\",\"wsf\",\"svg\"]},d=new Set([\"markdown\",\"swift\"]),h=Object.entries(u),p=new Set(Object.keys(u)),g=new Map;async function f(e){const t=[e];try{return await t.reduce(async(e,t)=>{let i;await e,i=d.has(t)?await n(\"1417\")(\"./\"+t):await n(\"2ab3\")(\"./\"+t),c.a.registerLanguage(t,i.default)},Promise.resolve()),!0}catch(i){return console.error(`Could not load ${e} file`),!1}}function m(e){if(p.has(e))return e;const t=h.find(([,t])=>t.includes(e));return t?t[0]:null}function b(e){if(g.has(e))return g.get(e);const t=m(e);return g.set(e,t),t}c.a.configure({classPrefix:\"syntax-\",languages:[...p]});const v=async e=>{const t=b(e);return!(!t||c.a.listLanguages().includes(t))&&f(t)},y=/\\r\\n|\\r|\\n/g,w=/syntax-/;function x(e){return 0===e.length?[]:e.split(y)}function E(e){return(e.trim().match(y)||[]).length}function _(e){const t=document.createElement(\"template\");return t.innerHTML=e,t.content.childNodes}function j(e){const{className:t}=e;if(!w.test(t))return null;const n=x(e.innerHTML).reduce((e,n)=>`${e}<span class=\"${t}\">${n}</span>\\n`,\"\");return _(n.trim())}function k(e){return Array.from(e.childNodes).forEach(e=>{if(E(e.textContent))try{const t=e.childNodes.length?k(e):j(e);t&&e.replaceWith(...t)}catch(t){console.error(t)}}),j(e)}function T(e,t){const n=m(t);if(!c.a.getLanguage(n))throw new Error(\"Unsupported language for syntax highlighting: \"+t);return c.a.highlight(e,{language:n,ignoreIllegals:!0}).value}function C(e,t){const n=e.join(\"\\n\"),i=T(n,t),r=document.createElement(\"code\");return r.innerHTML=i,k(r),x(r.innerHTML)}var S=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"span\",{staticClass:\"filename\"},[e.isActionable?n(\"a\",{attrs:{href:\"#\"},on:{click:function(t){return t.preventDefault(),e.$emit(\"click\")}}},[n(\"FileIcon\",{attrs:{fileType:e.fileType}}),e._t(\"default\")],2):n(\"span\",[n(\"FileIcon\",{attrs:{fileType:e.fileType}}),e._t(\"default\")],2)])},O=[],N=function(){var e=this,t=e.$createElement,n=e._self._c||t;return\"swift\"===e.fileType?n(\"SwiftFileIcon\",{staticClass:\"file-icon\"}):n(\"GenericFileIcon\",{staticClass:\"file-icon\"})},I=[],L=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"swift-file-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M8.033 1l3.967 4.015v7.985h-10v-12zM7.615 2h-4.615v10h8v-6.574z\"}}),n(\"path\",{attrs:{d:\"M7 1h1v4h-1z\"}}),n(\"path\",{attrs:{d:\"M7 5h5v1h-5z\"}})])},A=[],B=n(\"be08\"),M={name:\"SwiftFileIcon\",components:{SVGIcon:B[\"a\"]}},$=M,R=n(\"2877\"),D=Object(R[\"a\"])($,L,A,!1,null,null,null),P=D.exports,F=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"generic-file-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M8.033 1l3.967 4.015v7.985h-10v-12zM7.615 2h-4.615v10h8v-6.574z\"}}),n(\"path\",{attrs:{d:\"M7 1h1v4h-1z\"}}),n(\"path\",{attrs:{d:\"M7 5h5v1h-5z\"}})])},H=[],q={name:\"GenericFileIcon\",components:{SVGIcon:B[\"a\"]}},V=q,U=Object(R[\"a\"])(V,F,H,!1,null,null,null),W=U.exports,z={name:\"CodeListingFileIcon\",components:{SwiftFileIcon:P,GenericFileIcon:W},props:{fileType:String}},G=z,K=(n(\"e6db\"),Object(R[\"a\"])(G,N,I,!1,null,\"7c381064\",null)),Y=K.exports,X={name:\"CodeListingFilename\",components:{FileIcon:Y},props:{isActionable:{type:Boolean,default:()=>!1},fileType:String}},Z=X,J=(n(\"8608\"),Object(R[\"a\"])(Z,S,O,!1,null,\"c8c40662\",null)),Q=J.exports,ee={name:\"CodeListing\",components:{Filename:Q},data(){return{syntaxHighlightedLines:[]}},props:{fileName:String,isFileNameActionable:{type:Boolean,default:()=>!1},syntax:String,fileType:String,content:{type:Array,required:!0},startLineNumber:{type:Number,default:()=>1},highlights:{type:Array,default:()=>[]},showLineNumbers:{type:Boolean,default:()=>!1}},computed:{escapedContent:({content:e})=>e.map(s[\"c\"]),highlightedLineNumbers(){return new Set(this.highlights.map(({line:e})=>e))},syntaxNameNormalized(){const e={occ:a[\"a\"].objectiveC.key.url};return e[this.syntax]||this.syntax}},watch:{content:{handler:\"syntaxHighlightLines\",immediate:!0}},methods:{isHighlighted(e){return this.highlightedLineNumbers.has(this.lineNumberFor(e))},lineNumberFor(e){return this.startLineNumber+e},async syntaxHighlightLines(){let e;try{await v(this.syntaxNameNormalized),e=C(this.content,this.syntaxNameNormalized)}catch(t){e=this.escapedContent}this.syntaxHighlightedLines=e.map(e=>\"\"===e?\"\\n\":e)}}},te=ee,ne=(n(\"4d50\"),Object(R[\"a\"])(te,i,r,!1,null,\"df963650\",null));t[\"a\"]=ne.exports},\"80c8\":function(e,t,n){},8222:function(e,t,n){},\"830f\":function(e,t,n){\"use strict\";n(\"30b0\")},8608:function(e,t,n){\"use strict\";n(\"a7f3\")},\"863d\":function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"li\",{staticClass:\"nav-menu-item\",class:{\"nav-menu-item--animated\":e.animate}},[e._t(\"default\")],2)},r=[],s={name:\"NavMenuItemBase\",props:{animate:{type:Boolean,default:!0}}},a=s,o=(n(\"43fe\"),n(\"2877\")),c=Object(o[\"a\"])(a,i,r,!1,null,\"66cbfe4c\",null);t[\"a\"]=c.exports},8649:function(e,t,n){\"use strict\";t[\"a\"]={objectiveC:{name:\"Objective-C\",key:{api:\"occ\",url:\"objc\"}},swift:{name:\"Swift\",key:{api:\"swift\",url:\"swift\"}}}},\"86d8\":function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.refComponent,{tag:\"component\",attrs:{url:e.urlWithParams,\"is-active\":e.isActiveComputed}},[e._t(\"default\")],2)},r=[],s=n(\"d26a\"),a=n(\"66cd\"),o=n(\"9895\"),c=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isActive?n(\"a\",{attrs:{href:e.url}},[e._t(\"default\")],2):n(\"span\",[e._t(\"default\")],2)},l=[],u={name:\"ReferenceExternal\",props:{url:{type:String,required:!0},isActive:{type:Boolean,default:!0}}},d=u,h=n(\"2877\"),p=Object(h[\"a\"])(d,c,l,!1,null,null,null),g=p.exports,f=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"ReferenceInternal\",e._b({},\"ReferenceInternal\",e.$props,!1),[n(\"CodeVoice\",[e._t(\"default\")],2)],1)},m=[],b=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isActive?n(\"router-link\",{attrs:{to:e.url}},[e._t(\"default\")],2):n(\"span\",[e._t(\"default\")],2)},v=[],y={name:\"ReferenceInternal\",props:{url:{type:String,required:!0},isActive:{type:Boolean,default:!0}}},w=y,x=Object(h[\"a\"])(w,b,v,!1,null,null,null),E=x.exports,_=n(\"52e4\"),j={name:\"ReferenceInternalSymbol\",props:E.props,components:{ReferenceInternal:E,CodeVoice:_[\"a\"]}},k=j,T=Object(h[\"a\"])(k,f,m,!1,null,null,null),C=T.exports,S={name:\"Reference\",computed:{isInternal({url:e}){if(!e.startsWith(\"/\")&&!e.startsWith(\"#\"))return!1;const{resolved:{name:t}={}}=this.$router.resolve(e)||{};return t!==o[\"b\"]},isSymbolReference(){return\"symbol\"===this.kind&&(this.role===a[\"a\"].symbol||this.role===a[\"a\"].dictionarySymbol)},isDisplaySymbol({isSymbolReference:e,titleStyle:t,ideTitle:n}){return n?e&&\"symbol\"===t:e},refComponent(){return this.isInternal?this.isDisplaySymbol?C:E:g},urlWithParams({isInternal:e}){return e?Object(s[\"b\"])(this.url,this.$route.query):this.url},isActiveComputed({url:e,isActive:t}){return!(!e||!t)}},props:{url:{type:String,required:!0},kind:{type:String,required:!1},role:{type:String,required:!1},isActive:{type:Boolean,required:!1,default:!0},ideTitle:{type:String,required:!1},titleStyle:{type:String,required:!1}}},O=S,N=Object(h[\"a\"])(O,i,r,!1,null,null,null);t[\"a\"]=N.exports},\"8a61\":function(e,t,n){\"use strict\";var i=n(\"3908\");t[\"a\"]={methods:{async scrollToElement(e){await Object(i[\"b\"])(8);const t=this.$router.resolve({hash:e}),{selector:n,offset:r}=await this.$router.options.scrollBehavior(t.route),s=document.querySelector(n);return s?(s.scrollIntoView(),window.scrollBy(-r.x,-r.y),s):null}}}},\"8bd9\":function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.fallbackImageSrcSet?n(\"img\",{staticClass:\"fallback\",attrs:{title:\"Image failed to load\",alt:e.alt,srcset:e.fallbackImageSrcSet}}):n(\"picture\",[e.prefersAuto&&e.darkVariantAttributes?n(\"source\",{attrs:{media:\"(prefers-color-scheme: dark)\",srcset:e.darkVariantAttributes.srcSet}}):e._e(),e.prefersDark&&e.darkVariantAttributes?n(\"img\",e._b({ref:\"img\",attrs:{alt:e.alt,width:e.darkVariantAttributes.width||e.optimalWidth,height:e.darkVariantAttributes.width||e.optimalWidth?\"auto\":null},on:{error:e.handleImageLoadError}},\"img\",e.darkVariantAttributes,!1)):n(\"img\",e._b({ref:\"img\",attrs:{alt:e.alt,width:e.defaultAttributes.width||e.optimalWidth,height:e.defaultAttributes.width||e.optimalWidth?\"auto\":null},on:{error:e.handleImageLoadError}},\"img\",e.defaultAttributes,!1))])},r=[],s=n(\"748c\"),a={props:{variants:{type:Array,required:!0}},computed:{variantsGroupedByAppearance(){return Object(s[\"d\"])(this.variants)},lightVariants(){return Object(s[\"a\"])(this.variantsGroupedByAppearance.light)},darkVariants(){return Object(s[\"a\"])(this.variantsGroupedByAppearance.dark)}}},o=n(\"e425\"),c=n(\"821b\"),l=n(\"5da3\"),u=n.n(l);const d=10;function h(e){return new Promise((t,n)=>{const i=new Image;i.src=e,i.onerror=n,i.onload=()=>t({width:i.width,height:i.height})})}function p(e){if(!e.length)return null;const t=e.map(e=>`${Object(s[\"b\"])(e.src)} ${e.density}`).join(\", \"),n=e[0],i={srcSet:t,src:Object(s[\"b\"])(n.src)},{width:r}=n.size||{width:null};return r&&(i.width=r,i.height=\"auto\"),i}var g={name:\"ImageAsset\",mixins:[a],data:()=>({appState:o[\"a\"].state,fallbackImageSrcSet:null,optimalWidth:null}),computed:{allVariants:({lightVariants:e=[],darkVariants:t=[]})=>e.concat(t),defaultAttributes:({lightVariantAttributes:e,darkVariantAttributes:t})=>e||t,darkVariantAttributes:({darkVariants:e})=>p(e),lightVariantAttributes:({lightVariants:e})=>p(e),preferredColorScheme:({appState:e})=>e.preferredColorScheme,prefersAuto:({preferredColorScheme:e})=>e===c[\"a\"].auto.value,prefersDark:({preferredColorScheme:e})=>e===c[\"a\"].dark.value},props:{alt:{type:String,default:\"\"},variants:{type:Array,required:!0}},methods:{handleImageLoadError(){this.fallbackImageSrcSet=u.a+\" 2x\"},async calculateOptimalWidth(){const{$refs:{img:{currentSrc:e}},allVariants:t}=this,{density:n}=t.find(({src:t})=>e.endsWith(t)),i=parseInt(n.match(/\\d+/)[0],d),r=await h(e),s=r.width/i;return s},async optimizeImageSize(){if(!this.defaultAttributes.width)try{this.optimalWidth=await this.calculateOptimalWidth()}catch{console.error(\"Unable to calculate optimal image width\")}}},mounted(){this.$refs.img.addEventListener(\"load\",this.optimizeImageSize)}},f=g,m=n(\"2877\"),b=Object(m[\"a\"])(f,i,r,!1,null,null,null);t[\"a\"]=b.exports},\"8c92\":function(e,t,n){\"use strict\";n(\"80c8\")},\"90f3\":function(e,t,n){\"use strict\";n(\"6cc4\")},9152:function(e,t,n){\"use strict\";n(\"50fc\")},\"95da\":function(e,t,n){\"use strict\";function i(e,t){const n=document.body;let r=e,s=e;while(r=r.previousElementSibling)t(r);while(s=s.nextElementSibling)t(s);e.parentElement&&e.parentElement!==n&&i(e.parentElement,t)}const r=\"data-original-\",s=\"aria-hidden\",a=r+s,o=e=>{let t=e.getAttribute(a);t||(t=e.getAttribute(s)||\"\",e.setAttribute(a,t)),e.setAttribute(s,\"true\")},c=e=>{const t=e.getAttribute(a);\"string\"===typeof t&&(t.length?e.setAttribute(s,t):e.removeAttribute(s)),e.removeAttribute(a)};t[\"a\"]={hide(e){i(e,o)},show(e){i(e,c)}}},\"971b\":function(e,t,n){},9975:function(e,t,n){\"use strict\";n(\"287e\")},\"9a2b\":function(e,t,n){\"use strict\";n(\"dce7\")},\"9b30\":function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"ul\",{staticClass:\"nav-menu-items\",attrs:{\"data-previous-menu-children-count\":e.previousSiblingChildren}},[e._t(\"default\")],2)},r=[],s={name:\"NavMenuItems\",props:{previousSiblingChildren:{type:Number,default:0}}},a=s,o=(n(\"517a\"),n(\"2877\")),c=Object(o[\"a\"])(a,i,r,!1,null,\"67c1c0a5\",null);t[\"a\"]=c.exports},\"9bb2\":function(e,t,n){\"use strict\";n(\"3b8f\")},a1bd:function(e,t,n){},a7f3:function(e,t,n){},a97e:function(e,t,n){\"use strict\";var i=n(\"63b8\");const r=e=>e?`(max-width: ${e}px)`:\"\",s=e=>e?`(min-width: ${e}px)`:\"\";function a({minWidth:e,maxWidth:t}){return[\"only screen\",s(e),r(t)].filter(Boolean).join(\" and \")}function o({maxWidth:e,minWidth:t}){return window.matchMedia(a({minWidth:t,maxWidth:e}))}var c,l,u={name:\"BreakpointEmitter\",constants:{BreakpointAttributes:i[\"a\"],BreakpointName:i[\"b\"],BreakpointScopes:i[\"c\"]},props:{scope:{type:String,default:()=>i[\"c\"].default,validator:e=>e in i[\"c\"]}},render(){return this.$scopedSlots.default?this.$scopedSlots.default({matchingBreakpoint:this.matchingBreakpoint}):null},data:()=>({matchingBreakpoint:null}),methods:{initMediaQuery(e,t){const n=o(t),i=t=>this.handleMediaQueryChange(t,e);n.addListener(i),this.$once(\"hook:beforeDestroy\",()=>{n.removeListener(i)}),i(n)},handleMediaQueryChange(e,t){e.matches&&(this.matchingBreakpoint=t,this.$emit(\"change\",t))}},mounted(){const e=i[\"a\"][this.scope]||{};Object.entries(e).forEach(([e,t])=>{this.initMediaQuery(e,t)})}},d=u,h=n(\"2877\"),p=Object(h[\"a\"])(d,c,l,!1,null,null,null);t[\"a\"]=p.exports},b1d4:function(e,t,n){},b392:function(e,t,n){},b7fc:function(e,t,n){\"use strict\";n(\"189f\")},bab1:function(e,t,n){\"use strict\";n(\"a1bd\")},bb52:function(e,t,n){\"use strict\";t[\"a\"]={inject:{performanceMetricsEnabled:{default:!1},isTargetIDE:{default:!1}},methods:{newContentMounted(){let e;this.performanceMetricsEnabled&&(e=Math.round(window.performance.now()),window.renderedTimes||(window.renderedTimes=[]),window.renderedTimes.push(e)),this.$bridge.send({type:\"rendered\",data:{time:e}})}}}},be08:function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"svg\",{staticClass:\"svg-icon\",attrs:{\"aria-hidden\":\"true\",xmlns:\"http://www.w3.org/2000/svg\"}},[e._t(\"default\")],2)},r=[],s={name:\"SVGIcon\"},a=s,o=(n(\"9bb2\"),n(\"2877\")),c=Object(o[\"a\"])(a,i,r,!1,null,\"0137d411\",null);t[\"a\"]=c.exports},bf08:function(e,t,n){\"use strict\";var i=n(\"6842\"),r=n(\"d26a\");const s=Object(i[\"c\"])([\"meta\",\"title\"],\"Documentation\"),a=({title:e,description:t,url:n})=>[{name:\"description\",content:t},{property:\"og:locale\",content:\"en_US\"},{property:\"og:site_name\",content:s},{property:\"og:type\",content:\"website\"},{property:\"og:title\",content:e},{property:\"og:description\",content:t},{property:\"og:url\",content:n},{property:\"og:image\",content:Object(r[\"d\"])(\"/developer-og.jpg\")},{name:\"twitter:image\",content:Object(r[\"d\"])(\"/developer-og-twitter.jpg\")},{name:\"twitter:card\",content:\"summary_large_image\"},{name:\"twitter:description\",content:t},{name:\"twitter:title\",content:e},{name:\"twitter:url\",content:n}],o=e=>[e,s].filter(Boolean).join(\" | \"),c=e=>{const{content:t}=e,n=e.property?\"property\":\"name\",i=e[n],r=document.querySelector(`meta[${n}=\"${i}\"]`);if(r&&t)r.setAttribute(\"content\",t);else if(r&&!t)r.remove();else if(t){const t=document.createElement(\"meta\");t.setAttribute(n,e[n]),t.setAttribute(\"content\",e.content),document.getElementsByTagName(\"head\")[0].appendChild(t)}},l=e=>{document.title=e};function u({title:e,description:t,url:n}){const i=o(e);l(i),a({title:i,description:t,url:n}).forEach(e=>c(e))}var d=n(\"002d\"),h=n(\"5677\");t[\"a\"]={methods:{extractFirstParagraphText(e=[]){const t=h[\"a\"].computed.plaintext.bind({...h[\"a\"].methods,content:e})();return Object(d[\"e\"])(t)}},computed:{pagePath:({$route:{path:e=\"/\"}={}})=>e,pageURL:({pagePath:e=\"/\"})=>Object(r[\"d\"])(e)},mounted(){u({title:this.pageTitle,description:this.pageDescription,url:this.pageURL})}}},c064:function(e,t,n){\"use strict\";n(\"ca8c\")},c081:function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.action?n(\"DestinationDataProvider\",{attrs:{destination:e.action},scopedSlots:e._u([{key:\"default\",fn:function(t){var i=t.url,r=t.title;return n(\"ButtonLink\",{attrs:{url:i,isDark:e.isDark}},[e._v(\" \"+e._s(r)+\" \")])}}],null,!1,1264376715)}):e._e()},r=[],s=n(\"76ab\"),a=n(\"c7ea\"),o={name:\"CallToActionButton\",components:{DestinationDataProvider:a[\"a\"],ButtonLink:s[\"a\"]},props:{action:{type:Object,required:!0},isDark:{type:Boolean,default:!1}}},c=o,l=n(\"2877\"),u=Object(l[\"a\"])(c,i,r,!1,null,null,null);t[\"a\"]=u.exports},c7ea:function(e,t,n){\"use strict\";const i={link:\"link\",reference:\"reference\",text:\"text\"};var r,s,a={name:\"DestinationDataProvider\",props:{destination:{type:Object,required:!0,default:()=>({})}},inject:{references:{default:()=>({})},isTargetIDE:{default:()=>!1}},constants:{DestinationType:i},computed:{isExternal:({reference:e,destination:t})=>e.type===i.link||t.type===i.link,shouldAppendOpensInBrowser:({isExternal:e,isTargetIDE:t})=>e&&t,reference:({references:e,destination:t})=>e[t.identifier]||{},linkUrl:({destination:e,reference:t})=>({[i.link]:e.destination,[i.reference]:t.url,[i.text]:e.text}[e.type]),linkTitle:({reference:e,destination:t})=>({[i.link]:t.title,[i.reference]:t.overridingTitle||e.title,[i.text]:\"\"}[t.type])},methods:{formatAriaLabel(e){return this.shouldAppendOpensInBrowser?e+\" (opens in browser)\":e}},render(){return this.$scopedSlots.default({url:this.linkUrl||\"\",title:this.linkTitle||\"\",formatAriaLabel:this.formatAriaLabel,isExternal:this.isExternal})}},o=a,c=n(\"2877\"),l=Object(c[\"a\"])(o,r,s,!1,null,null,null);t[\"a\"]=l.exports},c8e2:function(e,t,n){\"use strict\";function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}n.d(t,\"a\",(function(){return o}));const r=[\"input\",\"select\",\"textarea\",\"button\",\"optgroup\",\"option\",\"menuitem\",\"fieldset\",\"object\",\"a[href]\",\"*[tabindex]\",\"*[contenteditable]\"],s=r.join(\",\");var a={getTabbableElements(e){const t=e.querySelectorAll(s),n=t.length;let i;const r=[];for(i=0;i<n;i+=1)this.isTabbableElement(t[i])&&r.push(t[i]);return r},isTabbableElement(e){if(!e.offsetParent)return!1;const t=parseFloat(e.getAttribute(\"tabindex\"));return Number.isNaN(t)?this.isFocusableElement(e):t>=0},isFocusableElement(e){const t=e.nodeName.toLowerCase(),n=r.includes(t);return!(\"a\"!==t||!e.getAttribute(\"href\"))||(n?!e.disabled:\"true\"===e.getAttribute(\"contenteditable\")||!Number.isNaN(parseFloat(e.getAttribute(\"tabindex\"))))}};class o{constructor(e){i(this,\"focusContainer\",null),i(this,\"tabTargets\",[]),i(this,\"firstTabTarget\",null),i(this,\"lastTabTarget\",null),i(this,\"lastFocusedElement\",null),this.focusContainer=e,this.onFocus=this.onFocus.bind(this)}updateFocusContainer(e){this.focusContainer=e}start(){this.collectTabTargets(),this.firstTabTarget?this.focusContainer.contains(document.activeElement)&&a.isTabbableElement(document.activeElement)||this.firstTabTarget.focus():console.warn(\"There are no focusable elements. FocusTrap needs at least one.\"),this.lastFocusedElement=document.activeElement,document.addEventListener(\"focus\",this.onFocus,!0)}stop(){document.removeEventListener(\"focus\",this.onFocus,!0)}collectTabTargets(){this.tabTargets=a.getTabbableElements(this.focusContainer),this.firstTabTarget=this.tabTargets[0],this.lastTabTarget=this.tabTargets[this.tabTargets.length-1]}onFocus(e){if(this.focusContainer.contains(e.target))this.lastFocusedElement=e.target;else{if(e.preventDefault(),this.collectTabTargets(),this.lastFocusedElement===this.lastTabTarget||!this.lastFocusedElement||!document.contains(this.lastFocusedElement))return this.firstTabTarget.focus(),void(this.lastFocusedElement=this.firstTabTarget);this.lastFocusedElement===this.firstTabTarget&&(this.lastTabTarget.focus(),this.lastFocusedElement=this.lastTabTarget)}}destroy(){this.stop(),this.focusContainer=null,this.tabTargets=[],this.firstTabTarget=null,this.lastTabTarget=null,this.lastFocusedElement=null}}},ca8c:function(e,t,n){},cb92:function(e,t,n){\"use strict\";n(\"598a\")},cbcf:function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"nav\",{ref:\"nav\",staticClass:\"nav\",class:e.rootClasses,attrs:{role:\"navigation\"}},[n(\"div\",{ref:\"wrapper\",staticClass:\"nav__wrapper\"},[n(\"div\",{staticClass:\"nav__background\"}),e.hasOverlay?n(\"div\",{staticClass:\"nav-overlay\",on:{click:e.closeNav}}):e._e(),n(\"div\",{staticClass:\"nav-content\"},[n(\"div\",{staticClass:\"pre-title\"},[e._t(\"pre-title\",null,{closeNav:e.closeNav,isOpen:e.isOpen})],2),e.$slots.default?n(\"div\",{staticClass:\"nav-title\"},[e._t(\"default\")],2):e._e(),e._t(\"after-title\"),n(\"div\",{staticClass:\"nav-menu\"},[n(\"a\",{ref:\"axToggle\",staticClass:\"nav-ax-toggle\",attrs:{href:\"#\",role:\"button\"},on:{click:function(t){return t.preventDefault(),e.toggleNav.apply(null,arguments)}}},[n(\"span\",{staticClass:\"visuallyhidden\"},[e.isOpen?[e._v(\"Close Menu\")]:[e._v(\"Open Menu\")]],2)]),n(\"div\",{ref:\"tray\",staticClass:\"nav-menu-tray\",on:{transitionend:function(t){return t.target!==t.currentTarget?null:e.onTransitionEnd.apply(null,arguments)},click:e.handleTrayClick}},[e._t(\"tray\",(function(){return[n(\"NavMenuItems\",[e._t(\"menu-items\")],2)]}),{closeNav:e.closeNav})],2)]),n(\"div\",{staticClass:\"nav-actions\"},[n(\"a\",{staticClass:\"nav-menucta\",attrs:{href:\"#\",tabindex:\"-1\",\"aria-hidden\":\"true\"},on:{click:function(t){return t.preventDefault(),e.toggleNav.apply(null,arguments)}}},[n(\"span\",{staticClass:\"nav-menucta-chevron\"})])])],2),e._t(\"after-content\")],2),n(\"BreakpointEmitter\",{attrs:{scope:e.BreakpointScopes.nav},on:{change:e.onBreakpointChange}})],1)},r=[],s=n(\"72e7\"),a=n(\"9b30\"),o=n(\"a97e\"),c=n(\"c8e2\"),l=n(\"f2af\"),u=n(\"942d\"),d=n(\"63b8\"),h=n(\"95da\"),p=n(\"3908\");const{noClose:g}=u[\"a\"],{BreakpointName:f,BreakpointScopes:m}=o[\"a\"].constants,b=8,v={isDark:\"theme-dark\",isOpen:\"nav--is-open\",inBreakpoint:\"nav--in-breakpoint-range\",isTransitioning:\"nav--is-transitioning\",isSticking:\"nav--is-sticking\",hasSolidBackground:\"nav--solid-background\",hasNoBorder:\"nav--noborder\",hasFullWidthBorder:\"nav--fullwidth-border\",isWideFormat:\"nav--is-wide-format\",noBackgroundTransition:\"nav--no-bg-transition\"};var y={name:\"NavBase\",components:{NavMenuItems:a[\"a\"],BreakpointEmitter:o[\"a\"]},constants:{NavStateClasses:v,NoBGTransitionFrames:b},props:{breakpoint:{type:String,default:f.small},hasOverlay:{type:Boolean,default:!0},hasSolidBackground:{type:Boolean,default:!1},hasNoBorder:{type:Boolean,default:!1},hasFullWidthBorder:{type:Boolean,default:!1},isDark:{type:Boolean,default:!1},isWideFormat:{type:Boolean,default:!1}},mixins:[s[\"a\"]],data(){return{isOpen:!1,inBreakpoint:!1,isTransitioning:!1,isSticking:!1,noBackgroundTransition:!0,focusTrapInstance:null}},computed:{BreakpointScopes:()=>m,rootClasses:({isOpen:e,inBreakpoint:t,isTransitioning:n,isSticking:i,hasSolidBackground:r,hasNoBorder:s,hasFullWidthBorder:a,isDark:o,isWideFormat:c,noBackgroundTransition:l})=>({[v.isDark]:o,[v.isOpen]:e,[v.inBreakpoint]:t,[v.isTransitioning]:n,[v.isSticking]:i,[v.hasSolidBackground]:r,[v.hasNoBorder]:s,[v.hasFullWidthBorder]:a,[v.isWideFormat]:c,[v.noBackgroundTransition]:l})},watch:{isOpen(e){this.$emit(\"change\",e),e?this.onExpand():this.onClose()}},async mounted(){window.addEventListener(\"keydown\",this.onEscape),window.addEventListener(\"popstate\",this.closeNav),window.addEventListener(\"orientationchange\",this.closeNav),document.addEventListener(\"click\",this.handleClickOutside),this.handleFlashOnMount(),await this.$nextTick(),this.focusTrapInstance=new c[\"a\"](this.$refs.wrapper)},beforeDestroy(){window.removeEventListener(\"keydown\",this.onEscape),window.removeEventListener(\"popstate\",this.closeNav),window.removeEventListener(\"orientationchange\",this.closeNav),document.removeEventListener(\"click\",this.handleClickOutside),this.isOpen&&this.toggleScrollLock(!1),this.focusTrapInstance.destroy()},methods:{getIntersectionTargets(){return[document.getElementById(u[\"d\"])||this.$el]},toggleNav(){this.isOpen=!this.isOpen,this.isTransitioning=!0},closeNav(){const e=this.isOpen;return this.isOpen=!1,this.resolveOnceTransitionsEnd(e)},resolveOnceTransitionsEnd(e){return e&&this.inBreakpoint?(this.isTransitioning=!0,new Promise(e=>{const t=this.$watch(\"isTransitioning\",()=>{e(),t()})})):Promise.resolve()},async onTransitionEnd({propertyName:e}){\"max-height\"===e&&(this.$emit(\"changed\",this.isOpen),this.isTransitioning=!1,this.isOpen?(this.$emit(\"opened\"),this.toggleScrollLock(!0)):this.$emit(\"closed\"))},onBreakpointChange(e){const t=Object(d[\"d\"])(e,this.breakpoint);this.inBreakpoint=!t,t&&this.closeNav()},onIntersect({intersectionRatio:e}){window.scrollY<0||(this.isSticking=1!==e)},onEscape({key:e}){\"Escape\"===e&&this.isOpen&&(this.closeNav(),this.$refs.axToggle.focus())},handleTrayClick({target:e}){e.href&&!e.classList.contains(g)&&this.closeNav()},handleClickOutside({target:e}){this.$refs.nav.contains(e)||this.closeNav()},toggleScrollLock(e){e?l[\"a\"].lockScroll(this.$refs.tray):l[\"a\"].unlockScroll(this.$refs.tray)},onExpand(){this.$emit(\"open\"),this.focusTrapInstance.start(),h[\"a\"].hide(this.$refs.wrapper)},onClose(){this.$emit(\"close\"),this.toggleScrollLock(!1),this.focusTrapInstance.stop(),h[\"a\"].show(this.$refs.wrapper)},async handleFlashOnMount(){await Object(p[\"b\"])(b),this.noBackgroundTransition=!1}}},w=y,x=(n(\"b7fc\"),n(\"2877\")),E=Object(x[\"a\"])(w,i,r,!1,null,\"be9ec8e8\",null);t[\"a\"]=E.exports},d541:function(e,t,n){},dce7:function(e,t,n){},e3ab:function(e,t,n){\"use strict\";var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"aside\",{class:e.kind,attrs:{\"aria-label\":e.kind}},[n(\"p\",{staticClass:\"label\"},[e._v(e._s(e.label))]),e._t(\"default\")],2)},r=[];const s={deprecated:\"deprecated\",experiment:\"experiment\",important:\"important\",note:\"note\",tip:\"tip\",warning:\"warning\"};var a={name:\"Aside\",props:{kind:{type:String,required:!0,validator:e=>Object.prototype.hasOwnProperty.call(s,e)},name:{type:String,required:!1}},computed:{label:({kind:e,name:t})=>t||{[s.deprecated]:\"Deprecated\",[s.experiment]:\"Experiment\",[s.important]:\"Important\",[s.note]:\"Note\",[s.tip]:\"Tip\",[s.warning]:\"Warning\"}[e]}},o=a,c=(n(\"9152\"),n(\"2877\")),l=Object(c[\"a\"])(o,i,r,!1,null,\"5117d474\",null);t[\"a\"]=l.exports},e6db:function(e,t,n){\"use strict\";n(\"47cc\")},e7fb:function(e,t,n){\"use strict\";n(\"4c7a\")},ec05:function(e,t,n){},f2af:function(e,t,n){\"use strict\";let i=!1,r=-1,s=0;const a=()=>window.navigator&&window.navigator.platform&&(/iP(ad|hone|od)/.test(window.navigator.platform)||\"MacIntel\"===window.navigator.platform&&window.navigator.maxTouchPoints>1);function o(e){e.touches.length>1||e.preventDefault()}const c=e=>!!e&&e.scrollHeight-e.scrollTop<=e.clientHeight;function l(){s=document.body.getBoundingClientRect().top,document.body.style.overflow=\"hidden scroll\",document.body.style.top=s+\"px\",document.body.style.position=\"fixed\",document.body.style.width=\"100%\"}function u(e){e&&(e.ontouchstart=null,e.ontouchmove=null),document.removeEventListener(\"touchmove\",o)}function d(e,t){const n=e.targetTouches[0].clientY-r;return 0===t.scrollTop&&n>0||c(t)&&n<0?o(e):(e.stopPropagation(),!0)}function h(e){document.addEventListener(\"touchmove\",o,{passive:!1}),e&&(e.ontouchstart=e=>{1===e.targetTouches.length&&(r=e.targetTouches[0].clientY)},e.ontouchmove=t=>{1===t.targetTouches.length&&d(t,e)})}t[\"a\"]={lockScroll(e){i||(a()?h(e):l(),i=!0)},unlockScroll(e){i&&(a()?u(e):(document.body.style.cssText=\"\",window.scrollTo(0,Math.abs(s))),i=!1)}}}}]);"
  },
  {
    "path": "docs/js/highlight-js-bash.1b52852f.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-bash\"],{f0f8:function(e,s){function t(e){const s=e.regex,t={},n={begin:/\\$\\{/,end:/\\}/,contains:[\"self\",{begin:/:-/,contains:[t]}]};Object.assign(t,{className:\"variable\",variants:[{begin:s.concat(/\\$[\\w\\d#@][\\w\\d_]*/,\"(?![\\\\w\\\\d])(?![$])\")},n]});const a={className:\"subst\",begin:/\\$\\(/,end:/\\)/,contains:[e.BACKSLASH_ESCAPE]},i={begin:/<<-?\\s*(?=\\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\\w+)/,end:/(\\w+)/,className:\"string\"})]}},c={className:\"string\",begin:/\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,t,a]};a.contains.push(c);const o={className:\"\",begin:/\\\\\"/},r={className:\"string\",begin:/'/,end:/'/},l={begin:/\\$\\(\\(/,end:/\\)\\)/,contains:[{begin:/\\d+#[0-9a-f]+/,className:\"number\"},e.NUMBER_MODE,t]},p=[\"fish\",\"bash\",\"zsh\",\"sh\",\"csh\",\"ksh\",\"tcsh\",\"dash\",\"scsh\"],d=e.SHEBANG({binary:`(${p.join(\"|\")})`,relevance:10}),h={className:\"function\",begin:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\\w[\\w\\d_]*/})],relevance:0},m=[\"if\",\"then\",\"else\",\"elif\",\"fi\",\"for\",\"while\",\"in\",\"do\",\"done\",\"case\",\"esac\",\"function\"],u=[\"true\",\"false\"],b={match:/(\\/[a-z._-]+)+/},g=[\"break\",\"cd\",\"continue\",\"eval\",\"exec\",\"exit\",\"export\",\"getopts\",\"hash\",\"pwd\",\"readonly\",\"return\",\"shift\",\"test\",\"times\",\"trap\",\"umask\",\"unset\"],f=[\"alias\",\"bind\",\"builtin\",\"caller\",\"command\",\"declare\",\"echo\",\"enable\",\"help\",\"let\",\"local\",\"logout\",\"mapfile\",\"printf\",\"read\",\"readarray\",\"source\",\"type\",\"typeset\",\"ulimit\",\"unalias\"],w=[\"autoload\",\"bg\",\"bindkey\",\"bye\",\"cap\",\"chdir\",\"clone\",\"comparguments\",\"compcall\",\"compctl\",\"compdescribe\",\"compfiles\",\"compgroups\",\"compquote\",\"comptags\",\"comptry\",\"compvalues\",\"dirs\",\"disable\",\"disown\",\"echotc\",\"echoti\",\"emulate\",\"fc\",\"fg\",\"float\",\"functions\",\"getcap\",\"getln\",\"history\",\"integer\",\"jobs\",\"kill\",\"limit\",\"log\",\"noglob\",\"popd\",\"print\",\"pushd\",\"pushln\",\"rehash\",\"sched\",\"setcap\",\"setopt\",\"stat\",\"suspend\",\"ttyctl\",\"unfunction\",\"unhash\",\"unlimit\",\"unsetopt\",\"vared\",\"wait\",\"whence\",\"where\",\"which\",\"zcompile\",\"zformat\",\"zftp\",\"zle\",\"zmodload\",\"zparseopts\",\"zprof\",\"zpty\",\"zregexparse\",\"zsocket\",\"zstyle\",\"ztcp\"],k=[\"chcon\",\"chgrp\",\"chown\",\"chmod\",\"cp\",\"dd\",\"df\",\"dir\",\"dircolors\",\"ln\",\"ls\",\"mkdir\",\"mkfifo\",\"mknod\",\"mktemp\",\"mv\",\"realpath\",\"rm\",\"rmdir\",\"shred\",\"sync\",\"touch\",\"truncate\",\"vdir\",\"b2sum\",\"base32\",\"base64\",\"cat\",\"cksum\",\"comm\",\"csplit\",\"cut\",\"expand\",\"fmt\",\"fold\",\"head\",\"join\",\"md5sum\",\"nl\",\"numfmt\",\"od\",\"paste\",\"ptx\",\"pr\",\"sha1sum\",\"sha224sum\",\"sha256sum\",\"sha384sum\",\"sha512sum\",\"shuf\",\"sort\",\"split\",\"sum\",\"tac\",\"tail\",\"tr\",\"tsort\",\"unexpand\",\"uniq\",\"wc\",\"arch\",\"basename\",\"chroot\",\"date\",\"dirname\",\"du\",\"echo\",\"env\",\"expr\",\"factor\",\"groups\",\"hostid\",\"id\",\"link\",\"logname\",\"nice\",\"nohup\",\"nproc\",\"pathchk\",\"pinky\",\"printenv\",\"printf\",\"pwd\",\"readlink\",\"runcon\",\"seq\",\"sleep\",\"stat\",\"stdbuf\",\"stty\",\"tee\",\"test\",\"timeout\",\"tty\",\"uname\",\"unlink\",\"uptime\",\"users\",\"who\",\"whoami\",\"yes\"];return{name:\"Bash\",aliases:[\"sh\"],keywords:{$pattern:/\\b[a-z._-]+\\b/,keyword:m,literal:u,built_in:[...g,...f,\"set\",\"shopt\",...w,...k]},contains:[d,e.SHEBANG(),h,l,e.HASH_COMMENT_MODE,i,b,c,o,r,t]}}e.exports=t}}]);"
  },
  {
    "path": "docs/js/highlight-js-c.d1db3f17.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-c\"],{\"1fe5\":function(e,n){function s(e){const n=e.regex,s=e.COMMENT(\"//\",\"$\",{contains:[{begin:/\\\\\\n/}]}),t=\"decltype\\\\(auto\\\\)\",a=\"[a-zA-Z_]\\\\w*::\",i=\"<[^<>]+>\",r=\"(\"+t+\"|\"+n.optional(a)+\"[a-zA-Z_]\\\\w*\"+n.optional(i)+\")\",l={className:\"type\",variants:[{begin:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},{match:/\\batomic_[a-z]{3,6}\\b/}]},o=\"\\\\\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\\\S)\",c={className:\"string\",variants:[{begin:'(u8?|U|L)?\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},{begin:\"(u8?|U|L)?'(\"+o+\"|.)\",end:\"'\",illegal:\".\"},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R\"([^()\\\\ ]{0,16})\\(/,end:/\\)([^()\\\\ ]{0,16})\"/})]},d={className:\"number\",variants:[{begin:\"\\\\b(0b[01']+)\"},{begin:\"(-?)\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)\"},{begin:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],relevance:0},u={className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{keyword:\"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(c,{className:\"string\"}),{className:\"string\",begin:/<.*?>/},s,e.C_BLOCK_COMMENT_MODE]},g={className:\"title\",begin:n.optional(a)+e.IDENT_RE,relevance:0},p=n.optional(a)+e.IDENT_RE+\"\\\\s*\\\\(\",m=[\"asm\",\"auto\",\"break\",\"case\",\"continue\",\"default\",\"do\",\"else\",\"enum\",\"extern\",\"for\",\"fortran\",\"goto\",\"if\",\"inline\",\"register\",\"restrict\",\"return\",\"sizeof\",\"struct\",\"switch\",\"typedef\",\"union\",\"volatile\",\"while\",\"_Alignas\",\"_Alignof\",\"_Atomic\",\"_Generic\",\"_Noreturn\",\"_Static_assert\",\"_Thread_local\",\"alignas\",\"alignof\",\"noreturn\",\"static_assert\",\"thread_local\",\"_Pragma\"],_=[\"float\",\"double\",\"signed\",\"unsigned\",\"int\",\"short\",\"long\",\"char\",\"void\",\"_Bool\",\"_Complex\",\"_Imaginary\",\"_Decimal32\",\"_Decimal64\",\"_Decimal128\",\"const\",\"static\",\"complex\",\"bool\",\"imaginary\"],f={keyword:m,type:_,literal:\"true false NULL\",built_in:\"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr\"},b=[u,l,s,e.C_BLOCK_COMMENT_MODE,d,c],w={variants:[{begin:/=/,end:/;/},{begin:/\\(/,end:/\\)/},{beginKeywords:\"new throw return else\",end:/;/}],keywords:f,contains:b.concat([{begin:/\\(/,end:/\\)/,keywords:f,contains:b.concat([\"self\"]),relevance:0}]),relevance:0},h={begin:\"(\"+r+\"[\\\\*&\\\\s]+)+\"+p,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:f,illegal:/[^\\w\\s\\*&:<>.]/,contains:[{begin:t,keywords:f,relevance:0},{begin:p,returnBegin:!0,contains:[e.inherit(g,{className:\"title.function\"})],relevance:0},{relevance:0,match:/,/},{className:\"params\",begin:/\\(/,end:/\\)/,keywords:f,relevance:0,contains:[s,e.C_BLOCK_COMMENT_MODE,c,d,l,{begin:/\\(/,end:/\\)/,keywords:f,relevance:0,contains:[\"self\",s,e.C_BLOCK_COMMENT_MODE,c,d,l]}]},l,s,e.C_BLOCK_COMMENT_MODE,u]};return{name:\"C\",aliases:[\"h\"],keywords:f,disableAutodetect:!0,illegal:\"</\",contains:[].concat(w,h,b,[u,{begin:e.IDENT_RE+\"::\",keywords:f},{className:\"class\",beginKeywords:\"enum class struct union\",end:/[{;:<>=]/,contains:[{beginKeywords:\"final class struct\"},e.TITLE_MODE]}]),exports:{preprocessor:u,strings:c,keywords:f}}}e.exports=s}}]);"
  },
  {
    "path": "docs/js/highlight-js-cpp.eaddddbe.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-cpp\"],{\"0209\":function(e,t){function n(e){const t=e.regex,n=e.COMMENT(\"//\",\"$\",{contains:[{begin:/\\\\\\n/}]}),a=\"decltype\\\\(auto\\\\)\",i=\"[a-zA-Z_]\\\\w*::\",r=\"<[^<>]+>\",s=\"(?!struct)(\"+a+\"|\"+t.optional(i)+\"[a-zA-Z_]\\\\w*\"+t.optional(r)+\")\",c={className:\"type\",begin:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},o=\"\\\\\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\\\S)\",l={className:\"string\",variants:[{begin:'(u8?|U|L)?\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]},{begin:\"(u8?|U|L)?'(\"+o+\"|.)\",end:\"'\",illegal:\".\"},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R\"([^()\\\\ ]{0,16})\\(/,end:/\\)([^()\\\\ ]{0,16})\"/})]},d={className:\"number\",variants:[{begin:\"\\\\b(0b[01']+)\"},{begin:\"(-?)\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)\"},{begin:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],relevance:0},u={className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{keyword:\"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(l,{className:\"string\"}),{className:\"string\",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},p={className:\"title\",begin:t.optional(i)+e.IDENT_RE,relevance:0},_=t.optional(i)+e.IDENT_RE+\"\\\\s*\\\\(\",m=[\"alignas\",\"alignof\",\"and\",\"and_eq\",\"asm\",\"atomic_cancel\",\"atomic_commit\",\"atomic_noexcept\",\"auto\",\"bitand\",\"bitor\",\"break\",\"case\",\"catch\",\"class\",\"co_await\",\"co_return\",\"co_yield\",\"compl\",\"concept\",\"const_cast|10\",\"consteval\",\"constexpr\",\"constinit\",\"continue\",\"decltype\",\"default\",\"delete\",\"do\",\"dynamic_cast|10\",\"else\",\"enum\",\"explicit\",\"export\",\"extern\",\"false\",\"final\",\"for\",\"friend\",\"goto\",\"if\",\"import\",\"inline\",\"module\",\"mutable\",\"namespace\",\"new\",\"noexcept\",\"not\",\"not_eq\",\"nullptr\",\"operator\",\"or\",\"or_eq\",\"override\",\"private\",\"protected\",\"public\",\"reflexpr\",\"register\",\"reinterpret_cast|10\",\"requires\",\"return\",\"sizeof\",\"static_assert\",\"static_cast|10\",\"struct\",\"switch\",\"synchronized\",\"template\",\"this\",\"thread_local\",\"throw\",\"transaction_safe\",\"transaction_safe_dynamic\",\"true\",\"try\",\"typedef\",\"typeid\",\"typename\",\"union\",\"using\",\"virtual\",\"volatile\",\"while\",\"xor\",\"xor_eq\"],g=[\"bool\",\"char\",\"char16_t\",\"char32_t\",\"char8_t\",\"double\",\"float\",\"int\",\"long\",\"short\",\"void\",\"wchar_t\",\"unsigned\",\"signed\",\"const\",\"static\"],f=[\"any\",\"auto_ptr\",\"barrier\",\"binary_semaphore\",\"bitset\",\"complex\",\"condition_variable\",\"condition_variable_any\",\"counting_semaphore\",\"deque\",\"false_type\",\"future\",\"imaginary\",\"initializer_list\",\"istringstream\",\"jthread\",\"latch\",\"lock_guard\",\"multimap\",\"multiset\",\"mutex\",\"optional\",\"ostringstream\",\"packaged_task\",\"pair\",\"promise\",\"priority_queue\",\"queue\",\"recursive_mutex\",\"recursive_timed_mutex\",\"scoped_lock\",\"set\",\"shared_future\",\"shared_lock\",\"shared_mutex\",\"shared_timed_mutex\",\"shared_ptr\",\"stack\",\"string_view\",\"stringstream\",\"timed_mutex\",\"thread\",\"true_type\",\"tuple\",\"unique_lock\",\"unique_ptr\",\"unordered_map\",\"unordered_multimap\",\"unordered_multiset\",\"unordered_set\",\"variant\",\"vector\",\"weak_ptr\",\"wstring\",\"wstring_view\"],b=[\"abort\",\"abs\",\"acos\",\"apply\",\"as_const\",\"asin\",\"atan\",\"atan2\",\"calloc\",\"ceil\",\"cerr\",\"cin\",\"clog\",\"cos\",\"cosh\",\"cout\",\"declval\",\"endl\",\"exchange\",\"exit\",\"exp\",\"fabs\",\"floor\",\"fmod\",\"forward\",\"fprintf\",\"fputs\",\"free\",\"frexp\",\"fscanf\",\"future\",\"invoke\",\"isalnum\",\"isalpha\",\"iscntrl\",\"isdigit\",\"isgraph\",\"islower\",\"isprint\",\"ispunct\",\"isspace\",\"isupper\",\"isxdigit\",\"labs\",\"launder\",\"ldexp\",\"log\",\"log10\",\"make_pair\",\"make_shared\",\"make_shared_for_overwrite\",\"make_tuple\",\"make_unique\",\"malloc\",\"memchr\",\"memcmp\",\"memcpy\",\"memset\",\"modf\",\"move\",\"pow\",\"printf\",\"putchar\",\"puts\",\"realloc\",\"scanf\",\"sin\",\"sinh\",\"snprintf\",\"sprintf\",\"sqrt\",\"sscanf\",\"std\",\"stderr\",\"stdin\",\"stdout\",\"strcat\",\"strchr\",\"strcmp\",\"strcpy\",\"strcspn\",\"strlen\",\"strncat\",\"strncmp\",\"strncpy\",\"strpbrk\",\"strrchr\",\"strspn\",\"strstr\",\"swap\",\"tan\",\"tanh\",\"terminate\",\"to_underlying\",\"tolower\",\"toupper\",\"vfprintf\",\"visit\",\"vprintf\",\"vsprintf\"],h=[\"NULL\",\"false\",\"nullopt\",\"nullptr\",\"true\"],w=[\"_Pragma\"],y={type:g,keyword:m,literal:h,built_in:w,_type_hints:f},v={className:\"function.dispatch\",relevance:0,keywords:{_hint:b},begin:t.concat(/\\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,t.lookahead(/(<[^<>]+>|)\\s*\\(/))},k=[v,u,c,n,e.C_BLOCK_COMMENT_MODE,d,l],x={variants:[{begin:/=/,end:/;/},{begin:/\\(/,end:/\\)/},{beginKeywords:\"new throw return else\",end:/;/}],keywords:y,contains:k.concat([{begin:/\\(/,end:/\\)/,keywords:y,contains:k.concat([\"self\"]),relevance:0}]),relevance:0},E={className:\"function\",begin:\"(\"+s+\"[\\\\*&\\\\s]+)+\"+_,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:y,illegal:/[^\\w\\s\\*&:<>.]/,contains:[{begin:a,keywords:y,relevance:0},{begin:_,returnBegin:!0,contains:[p],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[l,d]},{relevance:0,match:/,/},{className:\"params\",begin:/\\(/,end:/\\)/,keywords:y,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,l,d,c,{begin:/\\(/,end:/\\)/,keywords:y,relevance:0,contains:[\"self\",n,e.C_BLOCK_COMMENT_MODE,l,d,c]}]},c,n,e.C_BLOCK_COMMENT_MODE,u]};return{name:\"C++\",aliases:[\"cc\",\"c++\",\"h++\",\"hpp\",\"hh\",\"hxx\",\"cxx\"],keywords:y,illegal:\"</\",classNameAliases:{\"function.dispatch\":\"built_in\"},contains:[].concat(x,E,v,k,[u,{begin:\"\\\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array|tuple|optional|variant|function)\\\\s*<\",end:\">\",keywords:y,contains:[\"self\",c]},{begin:e.IDENT_RE+\"::\",keywords:y},{match:[/\\b(?:enum(?:\\s+(?:class|struct))?|class|struct|union)/,/\\s+/,/\\w+/],className:{1:\"keyword\",3:\"title.class\"}}])}}e.exports=n}}]);"
  },
  {
    "path": "docs/js/highlight-js-css.75eab1fe.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-css\"],{ee8c:function(e,t){const o=e=>({IMPORTANT:{scope:\"meta\",begin:\"!important\"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:\"number\",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\\b/},FUNCTION_DISPATCH:{className:\"built_in\",begin:/[\\w-]+(?=\\()/},ATTRIBUTE_SELECTOR_MODE:{scope:\"selector-attr\",begin:/\\[/,end:/\\]/,illegal:\"$\",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:\"number\",begin:e.NUMBER_RE+\"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",relevance:0},CSS_VARIABLE:{className:\"attr\",begin:/--[A-Za-z][A-Za-z0-9_-]*/}}),i=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"main\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],r=[\"any-hover\",\"any-pointer\",\"aspect-ratio\",\"color\",\"color-gamut\",\"color-index\",\"device-aspect-ratio\",\"device-height\",\"device-width\",\"display-mode\",\"forced-colors\",\"grid\",\"height\",\"hover\",\"inverted-colors\",\"monochrome\",\"orientation\",\"overflow-block\",\"overflow-inline\",\"pointer\",\"prefers-color-scheme\",\"prefers-contrast\",\"prefers-reduced-motion\",\"prefers-reduced-transparency\",\"resolution\",\"scan\",\"scripting\",\"update\",\"width\",\"min-width\",\"max-width\",\"min-height\",\"max-height\"],a=[\"active\",\"any-link\",\"blank\",\"checked\",\"current\",\"default\",\"defined\",\"dir\",\"disabled\",\"drop\",\"empty\",\"enabled\",\"first\",\"first-child\",\"first-of-type\",\"fullscreen\",\"future\",\"focus\",\"focus-visible\",\"focus-within\",\"has\",\"host\",\"host-context\",\"hover\",\"indeterminate\",\"in-range\",\"invalid\",\"is\",\"lang\",\"last-child\",\"last-of-type\",\"left\",\"link\",\"local-link\",\"not\",\"nth-child\",\"nth-col\",\"nth-last-child\",\"nth-last-col\",\"nth-last-of-type\",\"nth-of-type\",\"only-child\",\"only-of-type\",\"optional\",\"out-of-range\",\"past\",\"placeholder-shown\",\"read-only\",\"read-write\",\"required\",\"right\",\"root\",\"scope\",\"target\",\"target-within\",\"user-invalid\",\"valid\",\"visited\",\"where\"],n=[\"after\",\"backdrop\",\"before\",\"cue\",\"cue-region\",\"first-letter\",\"first-line\",\"grammar-error\",\"marker\",\"part\",\"placeholder\",\"selection\",\"slotted\",\"spelling-error\"],l=[\"align-content\",\"align-items\",\"align-self\",\"all\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"caret-color\",\"clear\",\"clip\",\"clip-path\",\"clip-rule\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"contain\",\"content\",\"content-visibility\",\"counter-increment\",\"counter-reset\",\"cue\",\"cue-after\",\"cue-before\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"flow\",\"font\",\"font-display\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-smoothing\",\"font-stretch\",\"font-style\",\"font-synthesis\",\"font-variant\",\"font-variant-caps\",\"font-variant-east-asian\",\"font-variant-ligatures\",\"font-variant-numeric\",\"font-variant-position\",\"font-variation-settings\",\"font-weight\",\"gap\",\"glyph-orientation-vertical\",\"grid\",\"grid-area\",\"grid-auto-columns\",\"grid-auto-flow\",\"grid-auto-rows\",\"grid-column\",\"grid-column-end\",\"grid-column-start\",\"grid-gap\",\"grid-row\",\"grid-row-end\",\"grid-row-start\",\"grid-template\",\"grid-template-areas\",\"grid-template-columns\",\"grid-template-rows\",\"hanging-punctuation\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"isolation\",\"justify-content\",\"left\",\"letter-spacing\",\"line-break\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"mask-border\",\"mask-border-mode\",\"mask-border-outset\",\"mask-border-repeat\",\"mask-border-slice\",\"mask-border-source\",\"mask-border-width\",\"mask-clip\",\"mask-composite\",\"mask-image\",\"mask-mode\",\"mask-origin\",\"mask-position\",\"mask-repeat\",\"mask-size\",\"mask-type\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"mix-blend-mode\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"pause\",\"pause-after\",\"pause-before\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"rest\",\"rest-after\",\"rest-before\",\"right\",\"row-gap\",\"scroll-margin\",\"scroll-margin-block\",\"scroll-margin-block-end\",\"scroll-margin-block-start\",\"scroll-margin-bottom\",\"scroll-margin-inline\",\"scroll-margin-inline-end\",\"scroll-margin-inline-start\",\"scroll-margin-left\",\"scroll-margin-right\",\"scroll-margin-top\",\"scroll-padding\",\"scroll-padding-block\",\"scroll-padding-block-end\",\"scroll-padding-block-start\",\"scroll-padding-bottom\",\"scroll-padding-inline\",\"scroll-padding-inline-end\",\"scroll-padding-inline-start\",\"scroll-padding-left\",\"scroll-padding-right\",\"scroll-padding-top\",\"scroll-snap-align\",\"scroll-snap-stop\",\"scroll-snap-type\",\"shape-image-threshold\",\"shape-margin\",\"shape-outside\",\"speak\",\"speak-as\",\"src\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-all\",\"text-align-last\",\"text-combine-upright\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-emphasis\",\"text-emphasis-color\",\"text-emphasis-position\",\"text-emphasis-style\",\"text-indent\",\"text-justify\",\"text-orientation\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-box\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"voice-balance\",\"voice-duration\",\"voice-family\",\"voice-pitch\",\"voice-range\",\"voice-rate\",\"voice-stress\",\"voice-volume\",\"white-space\",\"widows\",\"width\",\"will-change\",\"word-break\",\"word-spacing\",\"word-wrap\",\"writing-mode\",\"z-index\"].reverse();function s(e){const t=e.regex,s=o(e),d={begin:/-(webkit|moz|ms|o)-(?=[a-z])/},c=\"and or not only\",g=/@-?\\w[\\w]*(-\\w+)*/,m=\"[a-zA-Z-][a-zA-Z0-9_-]*\",p=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:\"CSS\",case_insensitive:!0,illegal:/[=|'\\$]/,keywords:{keyframePosition:\"from to\"},classNameAliases:{keyframePosition:\"selector-tag\"},contains:[s.BLOCK_COMMENT,d,s.CSS_NUMBER_MODE,{className:\"selector-id\",begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:\"selector-class\",begin:\"\\\\.\"+m,relevance:0},s.ATTRIBUTE_SELECTOR_MODE,{className:\"selector-pseudo\",variants:[{begin:\":(\"+a.join(\"|\")+\")\"},{begin:\":(:)?(\"+n.join(\"|\")+\")\"}]},s.CSS_VARIABLE,{className:\"attribute\",begin:\"\\\\b(\"+l.join(\"|\")+\")\\\\b\"},{begin:/:/,end:/[;}{]/,contains:[s.BLOCK_COMMENT,s.HEXCOLOR,s.IMPORTANT,s.CSS_NUMBER_MODE,...p,{begin:/(url|data-uri)\\(/,end:/\\)/,relevance:0,keywords:{built_in:\"url data-uri\"},contains:[{className:\"string\",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},s.FUNCTION_DISPATCH]},{begin:t.lookahead(/@/),end:\"[{;]\",relevance:0,illegal:/:/,contains:[{className:\"keyword\",begin:g},{begin:/\\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:c,attribute:r.join(\" \")},contains:[{begin:/[a-z-]+(?=:)/,className:\"attribute\"},...p,s.CSS_NUMBER_MODE]}]},{className:\"selector-tag\",begin:\"\\\\b(\"+i.join(\"|\")+\")\\\\b\"}]}}e.exports=s}}]);"
  },
  {
    "path": "docs/js/highlight-js-custom-markdown.7cffc4b3.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-custom-markdown\",\"highlight-js-markdown\"],{\"04b0\":function(n,e){function a(n){const e=n.regex,a={begin:/<\\/?[A-Za-z_]/,end:\">\",subLanguage:\"xml\",relevance:0},i={begin:\"^[-\\\\*]{3,}\",end:\"$\"},s={className:\"code\",variants:[{begin:\"(`{3,})[^`](.|\\\\n)*?\\\\1`*[ ]*\"},{begin:\"(~{3,})[^~](.|\\\\n)*?\\\\1~*[ ]*\"},{begin:\"```\",end:\"```+[ ]*$\"},{begin:\"~~~\",end:\"~~~+[ ]*$\"},{begin:\"`.+?`\"},{begin:\"(?=^( {4}|\\\\t))\",contains:[{begin:\"^( {4}|\\\\t)\",end:\"(\\\\n)$\"}],relevance:0}]},t={className:\"bullet\",begin:\"^[ \\t]*([*+-]|(\\\\d+\\\\.))(?=\\\\s+)\",end:\"\\\\s+\",excludeEnd:!0},c={begin:/^\\[[^\\n]+\\]:/,returnBegin:!0,contains:[{className:\"symbol\",begin:/\\[/,end:/\\]/,excludeBegin:!0,excludeEnd:!0},{className:\"link\",begin:/:\\s*/,end:/$/,excludeBegin:!0}]},d=/[A-Za-z][A-Za-z0-9+.-]*/,l={variants:[{begin:/\\[.+?\\]\\[.*?\\]/,relevance:0},{begin:/\\[.+?\\]\\(((data|javascript|mailto):|(?:http|ftp)s?:\\/\\/).*?\\)/,relevance:2},{begin:e.concat(/\\[.+?\\]\\(/,d,/:\\/\\/.*?\\)/),relevance:2},{begin:/\\[.+?\\]\\([./?&#].*?\\)/,relevance:1},{begin:/\\[.*?\\]\\(.*?\\)/,relevance:0}],returnBegin:!0,contains:[{match:/\\[(?=\\])/},{className:\"string\",relevance:0,begin:\"\\\\[\",end:\"\\\\]\",excludeBegin:!0,returnEnd:!0},{className:\"link\",relevance:0,begin:\"\\\\]\\\\(\",end:\"\\\\)\",excludeBegin:!0,excludeEnd:!0},{className:\"symbol\",relevance:0,begin:\"\\\\]\\\\[\",end:\"\\\\]\",excludeBegin:!0,excludeEnd:!0}]},g={className:\"strong\",contains:[],variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\\*{2}/,end:/\\*{2}/}]},o={className:\"emphasis\",contains:[],variants:[{begin:/\\*(?!\\*)/,end:/\\*/},{begin:/_(?!_)/,end:/_/,relevance:0}]};g.contains.push(o),o.contains.push(g);let r=[a,l];g.contains=g.contains.concat(r),o.contains=o.contains.concat(r),r=r.concat(g,o);const b={className:\"section\",variants:[{begin:\"^#{1,6}\",end:\"$\",contains:r},{begin:\"(?=^.+?\\\\n[=-]{2,}$)\",contains:[{begin:\"^[=-]*$\"},{begin:\"^\",end:\"\\\\n\",contains:r}]}]},u={className:\"quote\",begin:\"^>\\\\s+\",contains:r,end:\"$\"};return{name:\"Markdown\",aliases:[\"md\",\"mkdown\",\"mkd\"],contains:[b,a,t,g,o,u,s,i,l,c]}}n.exports=a},\"84cb\":function(n,e,a){\"use strict\";a.r(e);var i=a(\"04b0\"),s=a.n(i);const t={begin:\"<doc:\",end:\">\",returnBegin:!0,contains:[{className:\"link\",begin:\"doc:\",end:\">\",excludeEnd:!0}]},c={className:\"link\",begin:/`{2}(?!`)/,end:/`{2}(?!`)/,excludeBegin:!0,excludeEnd:!0},d={begin:\"^>\\\\s+[Note:|Tip:|Important:|Experiment:|Warning:]\",end:\"$\",returnBegin:!0,contains:[{className:\"quote\",begin:\"^>\",end:\"\\\\s+\"},{className:\"type\",begin:\"Note|Tip|Important|Experiment|Warning\",end:\":\"},{className:\"quote\",begin:\".*\",end:\"$\",endsParent:!0}]},l={begin:\"@\",end:\"[{\\\\)\\\\s]\",returnBegin:!0,contains:[{className:\"title\",begin:\"@\",end:\"[\\\\s+(]\",excludeEnd:!0},{begin:\":\",end:\"[,\\\\)\\n\\t]\",excludeBegin:!0,keywords:{literal:\"true false null undefined\"},contains:[{className:\"number\",begin:\"\\\\b([\\\\d_]+(\\\\.[\\\\deE_]+)?|0x[a-fA-F0-9_]+(\\\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\\\b\",endsWithParent:!0,excludeEnd:!0},{className:\"string\",variants:[{begin:/\"\"\"/,end:/\"\"\"/},{begin:/\"/,end:/\"/}],endsParent:!0},{className:\"link\",begin:\"http|https\",endsWithParent:!0,excludeEnd:!0}]}]};e[\"default\"]=function(n){const e=s()(n),a=e.contains.find(({className:n})=>\"code\"===n);a.variants=a.variants.filter(({begin:n})=>!n.includes(\"( {4}|\\\\t)\"));const i=[...e.contains.filter(({className:n})=>\"code\"!==n),a];return{...e,contains:[c,t,d,l,...i]}}}}]);"
  },
  {
    "path": "docs/js/highlight-js-custom-swift.5cda5c20.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-custom-swift\",\"highlight-js-swift\"],{\"2a39\":function(e,n){function t(e){return e?\"string\"===typeof e?e:e.source:null}function a(e){return i(\"(?=\",e,\")\")}function i(...e){const n=e.map(e=>t(e)).join(\"\");return n}function s(e){const n=e[e.length-1];return\"object\"===typeof n&&n.constructor===Object?(e.splice(e.length-1,1),n):{}}function c(...e){const n=s(e),a=\"(\"+(n.capture?\"\":\"?:\")+e.map(e=>t(e)).join(\"|\")+\")\";return a}const u=e=>i(/\\b/,e,/\\w$/.test(e)?/\\b/:/\\B/),o=[\"Protocol\",\"Type\"].map(u),r=[\"init\",\"self\"].map(u),l=[\"Any\",\"Self\"],m=[\"actor\",\"associatedtype\",\"async\",\"await\",/as\\?/,/as!/,\"as\",\"break\",\"case\",\"catch\",\"class\",\"continue\",\"convenience\",\"default\",\"defer\",\"deinit\",\"didSet\",\"do\",\"dynamic\",\"else\",\"enum\",\"extension\",\"fallthrough\",/fileprivate\\(set\\)/,\"fileprivate\",\"final\",\"for\",\"func\",\"get\",\"guard\",\"if\",\"import\",\"indirect\",\"infix\",/init\\?/,/init!/,\"inout\",/internal\\(set\\)/,\"internal\",\"in\",\"is\",\"isolated\",\"nonisolated\",\"lazy\",\"let\",\"mutating\",\"nonmutating\",/open\\(set\\)/,\"open\",\"operator\",\"optional\",\"override\",\"postfix\",\"precedencegroup\",\"prefix\",/private\\(set\\)/,\"private\",\"protocol\",/public\\(set\\)/,\"public\",\"repeat\",\"required\",\"rethrows\",\"return\",\"set\",\"some\",\"static\",\"struct\",\"subscript\",\"super\",\"switch\",\"throws\",\"throw\",/try\\?/,/try!/,\"try\",\"typealias\",/unowned\\(safe\\)/,/unowned\\(unsafe\\)/,\"unowned\",\"var\",\"weak\",\"where\",\"while\",\"willSet\"],d=[\"false\",\"nil\",\"true\"],p=[\"assignment\",\"associativity\",\"higherThan\",\"left\",\"lowerThan\",\"none\",\"right\"],F=[\"#colorLiteral\",\"#column\",\"#dsohandle\",\"#else\",\"#elseif\",\"#endif\",\"#error\",\"#file\",\"#fileID\",\"#fileLiteral\",\"#filePath\",\"#function\",\"#if\",\"#imageLiteral\",\"#keyPath\",\"#line\",\"#selector\",\"#sourceLocation\",\"#warn_unqualified_access\",\"#warning\"],b=[\"abs\",\"all\",\"any\",\"assert\",\"assertionFailure\",\"debugPrint\",\"dump\",\"fatalError\",\"getVaList\",\"isKnownUniquelyReferenced\",\"max\",\"min\",\"numericCast\",\"pointwiseMax\",\"pointwiseMin\",\"precondition\",\"preconditionFailure\",\"print\",\"readLine\",\"repeatElement\",\"sequence\",\"stride\",\"swap\",\"swift_unboxFromSwiftValueWithType\",\"transcode\",\"type\",\"unsafeBitCast\",\"unsafeDowncast\",\"withExtendedLifetime\",\"withUnsafeMutablePointer\",\"withUnsafePointer\",\"withVaList\",\"withoutActuallyEscaping\",\"zip\"],f=c(/[/=\\-+!*%<>&|^~?]/,/[\\u00A1-\\u00A7]/,/[\\u00A9\\u00AB]/,/[\\u00AC\\u00AE]/,/[\\u00B0\\u00B1]/,/[\\u00B6\\u00BB\\u00BF\\u00D7\\u00F7]/,/[\\u2016-\\u2017]/,/[\\u2020-\\u2027]/,/[\\u2030-\\u203E]/,/[\\u2041-\\u2053]/,/[\\u2055-\\u205E]/,/[\\u2190-\\u23FF]/,/[\\u2500-\\u2775]/,/[\\u2794-\\u2BFF]/,/[\\u2E00-\\u2E7F]/,/[\\u3001-\\u3003]/,/[\\u3008-\\u3020]/,/[\\u3030]/),h=c(f,/[\\u0300-\\u036F]/,/[\\u1DC0-\\u1DFF]/,/[\\u20D0-\\u20FF]/,/[\\uFE00-\\uFE0F]/,/[\\uFE20-\\uFE2F]/),w=i(f,h,\"*\"),y=c(/[a-zA-Z_]/,/[\\u00A8\\u00AA\\u00AD\\u00AF\\u00B2-\\u00B5\\u00B7-\\u00BA]/,/[\\u00BC-\\u00BE\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u00FF]/,/[\\u0100-\\u02FF\\u0370-\\u167F\\u1681-\\u180D\\u180F-\\u1DBF]/,/[\\u1E00-\\u1FFF]/,/[\\u200B-\\u200D\\u202A-\\u202E\\u203F-\\u2040\\u2054\\u2060-\\u206F]/,/[\\u2070-\\u20CF\\u2100-\\u218F\\u2460-\\u24FF\\u2776-\\u2793]/,/[\\u2C00-\\u2DFF\\u2E80-\\u2FFF]/,/[\\u3004-\\u3007\\u3021-\\u302F\\u3031-\\u303F\\u3040-\\uD7FF]/,/[\\uF900-\\uFD3D\\uFD40-\\uFDCF\\uFDF0-\\uFE1F\\uFE30-\\uFE44]/,/[\\uFE47-\\uFEFE\\uFF00-\\uFFFD]/),g=c(y,/\\d/,/[\\u0300-\\u036F\\u1DC0-\\u1DFF\\u20D0-\\u20FF\\uFE20-\\uFE2F]/),E=i(y,g,\"*\"),v=i(/[A-Z]/,g,\"*\"),A=[\"autoclosure\",i(/convention\\(/,c(\"swift\",\"block\",\"c\"),/\\)/),\"discardableResult\",\"dynamicCallable\",\"dynamicMemberLookup\",\"escaping\",\"frozen\",\"GKInspectable\",\"IBAction\",\"IBDesignable\",\"IBInspectable\",\"IBOutlet\",\"IBSegueAction\",\"inlinable\",\"main\",\"nonobjc\",\"NSApplicationMain\",\"NSCopying\",\"NSManaged\",i(/objc\\(/,E,/\\)/),\"objc\",\"objcMembers\",\"propertyWrapper\",\"requires_stored_property_inits\",\"resultBuilder\",\"testable\",\"UIApplicationMain\",\"unknown\",\"usableFromInline\"],N=[\"iOS\",\"iOSApplicationExtension\",\"macOS\",\"macOSApplicationExtension\",\"macCatalyst\",\"macCatalystApplicationExtension\",\"watchOS\",\"watchOSApplicationExtension\",\"tvOS\",\"tvOSApplicationExtension\",\"swift\"];function k(e){const n={match:/\\s+/,relevance:0},t=e.COMMENT(\"/\\\\*\",\"\\\\*/\",{contains:[\"self\"]}),s=[e.C_LINE_COMMENT_MODE,t],f={match:[/\\./,c(...o,...r)],className:{2:\"keyword\"}},y={match:i(/\\./,c(...m)),relevance:0},k=m.filter(e=>\"string\"===typeof e).concat([\"_|0\"]),C=m.filter(e=>\"string\"!==typeof e).concat(l).map(u),D={variants:[{className:\"keyword\",match:c(...C,...r)}]},B={$pattern:c(/\\b\\w+/,/#\\w+/),keyword:k.concat(F),literal:d},_=[f,y,D],S={match:i(/\\./,c(...b)),relevance:0},x={className:\"built_in\",match:i(/\\b/,c(...b),/(?=\\()/)},M=[S,x],I={match:/->/,relevance:0},$={className:\"operator\",relevance:0,variants:[{match:w},{match:`\\\\.(\\\\.|${h})+`}]},O=[I,$],L=\"([0-9]_*)+\",T=\"([0-9a-fA-F]_*)+\",j={className:\"number\",relevance:0,variants:[{match:`\\\\b(${L})(\\\\.(${L}))?([eE][+-]?(${L}))?\\\\b`},{match:`\\\\b0x(${T})(\\\\.(${T}))?([pP][+-]?(${L}))?\\\\b`},{match:/\\b0o([0-7]_*)+\\b/},{match:/\\b0b([01]_*)+\\b/}]},K=(e=\"\")=>({className:\"subst\",variants:[{match:i(/\\\\/,e,/[0\\\\tnr\"']/)},{match:i(/\\\\/,e,/u\\{[0-9a-fA-F]{1,8}\\}/)}]}),P=(e=\"\")=>({className:\"subst\",match:i(/\\\\/,e,/[\\t ]*(?:[\\r\\n]|\\r\\n)/)}),z=(e=\"\")=>({className:\"subst\",label:\"interpol\",begin:i(/\\\\/,e,/\\(/),end:/\\)/}),q=(e=\"\")=>({begin:i(e,/\"\"\"/),end:i(/\"\"\"/,e),contains:[K(e),P(e),z(e)]}),U=(e=\"\")=>({begin:i(e,/\"/),end:i(/\"/,e),contains:[K(e),z(e)]}),Z={className:\"string\",variants:[q(),q(\"#\"),q(\"##\"),q(\"###\"),U(),U(\"#\"),U(\"##\"),U(\"###\")]},V={match:i(/`/,E,/`/)},W={className:\"variable\",match:/\\$\\d+/},G={className:\"variable\",match:`\\\\$${g}+`},J=[V,W,G],R={match:/(@|#)available/,className:\"keyword\",starts:{contains:[{begin:/\\(/,end:/\\)/,keywords:N,contains:[...O,j,Z]}]}},X={className:\"keyword\",match:i(/@/,c(...A))},H={className:\"meta\",match:i(/@/,E)},Q=[R,X,H],Y={match:a(/\\b[A-Z]/),relevance:0,contains:[{className:\"type\",match:i(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,g,\"+\")},{className:\"type\",match:v,relevance:0},{match:/[?!]+/,relevance:0},{match:/\\.\\.\\./,relevance:0},{match:i(/\\s+&\\s+/,a(v)),relevance:0}]},ee={begin:/</,end:/>/,keywords:B,contains:[...s,..._,...Q,I,Y]};Y.contains.push(ee);const ne={match:i(E,/\\s*:/),keywords:\"_|0\",relevance:0},te={begin:/\\(/,end:/\\)/,relevance:0,keywords:B,contains:[\"self\",ne,...s,..._,...M,...O,j,Z,...J,...Q,Y]},ae={begin:/</,end:/>/,contains:[...s,Y]},ie={begin:c(a(i(E,/\\s*:/)),a(i(E,/\\s+/,E,/\\s*:/))),end:/:/,relevance:0,contains:[{className:\"keyword\",match:/\\b_\\b/},{className:\"params\",match:E}]},se={begin:/\\(/,end:/\\)/,keywords:B,contains:[ie,...s,..._,...O,j,Z,...Q,Y,te],endsParent:!0,illegal:/[\"']/},ce={match:[/func/,/\\s+/,c(V.match,E,w)],className:{1:\"keyword\",3:\"title.function\"},contains:[ae,se,n],illegal:[/\\[/,/%/]},ue={match:[/\\b(?:subscript|init[?!]?)/,/\\s*(?=[<(])/],className:{1:\"keyword\"},contains:[ae,se,n],illegal:/\\[|%/},oe={match:[/operator/,/\\s+/,w],className:{1:\"keyword\",3:\"title\"}},re={begin:[/precedencegroup/,/\\s+/,v],className:{1:\"keyword\",3:\"title\"},contains:[Y],keywords:[...p,...d],end:/}/};for(const a of Z.variants){const e=a.contains.find(e=>\"interpol\"===e.label);e.keywords=B;const n=[..._,...M,...O,j,Z,...J];e.contains=[...n,{begin:/\\(/,end:/\\)/,contains:[\"self\",...n]}]}return{name:\"Swift\",keywords:B,contains:[...s,ce,ue,{beginKeywords:\"struct protocol class extension enum actor\",end:\"\\\\{\",excludeEnd:!0,keywords:B,contains:[e.inherit(e.TITLE_MODE,{className:\"title.class\",begin:/[A-Za-z$_][\\u00C0-\\u02B80-9A-Za-z$_]*/}),..._]},oe,re,{beginKeywords:\"import\",end:/$/,contains:[...s],relevance:0},..._,...M,...O,j,Z,...J,...Q,Y,te]}}e.exports=k},\"81c8\":function(e,n,t){\"use strict\";t.r(n);var a=t(\"2a39\"),i=t.n(a);n[\"default\"]=function(e){const n=i()(e);n.keywords.keyword=[...n.keywords.keyword,\"distributed\"];const t=({beginKeywords:e=\"\"})=>e.split(\" \").includes(\"class\"),a=n.contains.findIndex(t);if(a>=0){const{beginKeywords:e,...t}=n.contains[a];n.contains[a]={...t,begin:/\\b(struct|protocol|extension|enum|actor|class\\b(?!.*\\bfunc))\\b/}}return n}}}]);"
  },
  {
    "path": "docs/js/highlight-js-diff.62d66733.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-diff\"],{\"48b8\":function(e,n){function a(e){const n=e.regex;return{name:\"Diff\",aliases:[\"patch\"],contains:[{className:\"meta\",relevance:10,match:n.either(/^@@ +-\\d+,\\d+ +\\+\\d+,\\d+ +@@/,/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/,/^--- +\\d+,\\d+ +----$/)},{className:\"comment\",variants:[{begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\\*{3} /,/^\\+{3}/,/^diff --git/),end:/$/},{match:/^\\*{15}$/}]},{className:\"addition\",begin:/^\\+/,end:/$/},{className:\"deletion\",begin:/^-/,end:/$/},{className:\"addition\",begin:/^!/,end:/$/}]}}e.exports=a}}]);"
  },
  {
    "path": "docs/js/highlight-js-http.163e45b6.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-http\"],{c01d:function(e,n){function a(e){const n=e.regex,a=\"HTTP/(2|1\\\\.[01])\",s=/[A-Za-z][A-Za-z0-9-]*/,t={className:\"attribute\",begin:n.concat(\"^\",s,\"(?=\\\\:\\\\s)\"),starts:{contains:[{className:\"punctuation\",begin:/: /,relevance:0,starts:{end:\"$\",relevance:0}}]}},i=[t,{begin:\"\\\\n\\\\n\",starts:{subLanguage:[],endsWithParent:!0}}];return{name:\"HTTP\",aliases:[\"https\"],illegal:/\\S/,contains:[{begin:\"^(?=\"+a+\" \\\\d{3})\",end:/$/,contains:[{className:\"meta\",begin:a},{className:\"number\",begin:\"\\\\b\\\\d{3}\\\\b\"}],starts:{end:/\\b\\B/,illegal:/\\S/,contains:i}},{begin:\"(?=^[A-Z]+ (.*?) \"+a+\"$)\",end:/$/,contains:[{className:\"string\",begin:\" \",end:\" \",excludeBegin:!0,excludeEnd:!0},{className:\"meta\",begin:a},{className:\"keyword\",begin:\"[A-Z]+\"}],starts:{end:/\\b\\B/,illegal:/\\S/,contains:i}},e.inherit(t,{relevance:0})]}}e.exports=a}}]);"
  },
  {
    "path": "docs/js/highlight-js-java.8326d9d8.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-java\"],{\"332f\":function(e,a){var n=\"[0-9](_*[0-9])*\",s=`\\\\.(${n})`,i=\"[0-9a-fA-F](_*[0-9a-fA-F])*\",t={className:\"number\",variants:[{begin:`(\\\\b(${n})((${s})|\\\\.)?|(${s}))[eE][+-]?(${n})[fFdD]?\\\\b`},{begin:`\\\\b(${n})((${s})[fFdD]?\\\\b|\\\\.([fFdD]\\\\b)?)`},{begin:`(${s})[fFdD]?\\\\b`},{begin:`\\\\b(${n})[fFdD]\\\\b`},{begin:`\\\\b0[xX]((${i})\\\\.?|(${i})?\\\\.(${i}))[pP][+-]?(${n})[fFdD]?\\\\b`},{begin:\"\\\\b(0|[1-9](_*[0-9])*)[lL]?\\\\b\"},{begin:`\\\\b0[xX](${i})[lL]?\\\\b`},{begin:\"\\\\b0(_*[0-7])*[lL]?\\\\b\"},{begin:\"\\\\b0[bB][01](_*[01])*[lL]?\\\\b\"}],relevance:0};function r(e,a,n){return-1===n?\"\":e.replace(a,s=>r(e,a,n-1))}function c(e){e.regex;const a=\"[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*\",n=a+r(\"(?:<\"+a+\"~~~(?:\\\\s*,\\\\s*\"+a+\"~~~)*>)?\",/~~~/g,2),s=[\"synchronized\",\"abstract\",\"private\",\"var\",\"static\",\"if\",\"const \",\"for\",\"while\",\"strictfp\",\"finally\",\"protected\",\"import\",\"native\",\"final\",\"void\",\"enum\",\"else\",\"break\",\"transient\",\"catch\",\"instanceof\",\"volatile\",\"case\",\"assert\",\"package\",\"default\",\"public\",\"try\",\"switch\",\"continue\",\"throws\",\"protected\",\"public\",\"private\",\"module\",\"requires\",\"exports\",\"do\"],i=[\"super\",\"this\"],c=[\"false\",\"true\",\"null\"],l=[\"char\",\"boolean\",\"long\",\"float\",\"int\",\"byte\",\"short\",\"double\"],o={keyword:s,literal:c,type:l,built_in:i},b={className:\"meta\",begin:\"@\"+a,contains:[{begin:/\\(/,end:/\\)/,contains:[\"self\"]}]},_={className:\"params\",begin:/\\(/,end:/\\)/,keywords:o,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0};return{name:\"Java\",aliases:[\"jsp\"],keywords:o,illegal:/<\\/|#/,contains:[e.COMMENT(\"/\\\\*\\\\*\",\"\\\\*/\",{relevance:0,contains:[{begin:/\\w+@/,relevance:0},{className:\"doctag\",begin:\"@[A-Za-z]+\"}]}),{begin:/import java\\.[a-z]+\\./,keywords:\"import\",relevance:2},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/\"\"\"/,end:/\"\"\"/,className:\"string\",contains:[e.BACKSLASH_ESCAPE]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{match:[/\\b(?:class|interface|enum|extends|implements|new)/,/\\s+/,a],className:{1:\"keyword\",3:\"title.class\"}},{begin:[a,/\\s+/,a,/\\s+/,/=/],className:{1:\"type\",3:\"variable\",5:\"operator\"}},{begin:[/record/,/\\s+/,a],className:{1:\"keyword\",3:\"title.class\"},contains:[_,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:\"new throw return else\",relevance:0},{begin:[\"(?:\"+n+\"\\\\s+)\",e.UNDERSCORE_IDENT_RE,/\\s*(?=\\()/],className:{2:\"title.function\"},keywords:o,contains:[{className:\"params\",begin:/\\(/,end:/\\)/,keywords:o,relevance:0,contains:[b,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,t,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},t,b]}}e.exports=c}}]);"
  },
  {
    "path": "docs/js/highlight-js-javascript.acb8a8eb.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-javascript\"],{\"4dd1\":function(e,n){const a=\"[A-Za-z$_][0-9A-Za-z$_]*\",t=[\"as\",\"in\",\"of\",\"if\",\"for\",\"while\",\"finally\",\"var\",\"new\",\"function\",\"do\",\"return\",\"void\",\"else\",\"break\",\"catch\",\"instanceof\",\"with\",\"throw\",\"case\",\"default\",\"try\",\"switch\",\"continue\",\"typeof\",\"delete\",\"let\",\"yield\",\"const\",\"class\",\"debugger\",\"async\",\"await\",\"static\",\"import\",\"from\",\"export\",\"extends\"],s=[\"true\",\"false\",\"null\",\"undefined\",\"NaN\",\"Infinity\"],c=[\"Object\",\"Function\",\"Boolean\",\"Symbol\",\"Math\",\"Date\",\"Number\",\"BigInt\",\"String\",\"RegExp\",\"Array\",\"Float32Array\",\"Float64Array\",\"Int8Array\",\"Uint8Array\",\"Uint8ClampedArray\",\"Int16Array\",\"Int32Array\",\"Uint16Array\",\"Uint32Array\",\"BigInt64Array\",\"BigUint64Array\",\"Set\",\"Map\",\"WeakSet\",\"WeakMap\",\"ArrayBuffer\",\"SharedArrayBuffer\",\"Atomics\",\"DataView\",\"JSON\",\"Promise\",\"Generator\",\"GeneratorFunction\",\"AsyncFunction\",\"Reflect\",\"Proxy\",\"Intl\",\"WebAssembly\"],r=[\"Error\",\"EvalError\",\"InternalError\",\"RangeError\",\"ReferenceError\",\"SyntaxError\",\"TypeError\",\"URIError\"],i=[\"setInterval\",\"setTimeout\",\"clearInterval\",\"clearTimeout\",\"require\",\"exports\",\"eval\",\"isFinite\",\"isNaN\",\"parseFloat\",\"parseInt\",\"decodeURI\",\"decodeURIComponent\",\"encodeURI\",\"encodeURIComponent\",\"escape\",\"unescape\"],o=[\"arguments\",\"this\",\"super\",\"console\",\"window\",\"document\",\"localStorage\",\"module\",\"global\"],l=[].concat(i,c,r);function b(e){const n=e.regex,b=(e,{after:n})=>{const a=\"</\"+e[0].slice(1),t=e.input.indexOf(a,n);return-1!==t},d=a,g={begin:\"<>\",end:\"</>\"},u=/<[A-Za-z0-9\\\\._:-]+\\s*\\/>/,m={begin:/<[A-Za-z0-9\\\\._:-]+/,end:/\\/[A-Za-z0-9\\\\._:-]+>|\\/>/,isTrulyOpeningTag:(e,n)=>{const a=e[0].length+e.index,t=e.input[a];if(\"<\"===t||\",\"===t)return void n.ignoreMatch();let s;\">\"===t&&(b(e,{after:a})||n.ignoreMatch());const c=e.input.substr(a);(s=c.match(/^\\s+extends\\s+/))&&0===s.index&&n.ignoreMatch()}},E={$pattern:a,keyword:t,literal:s,built_in:l,\"variable.language\":o},A=\"[0-9](_?[0-9])*\",y=`\\\\.(${A})`,N=\"0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*\",f={className:\"number\",variants:[{begin:`(\\\\b(${N})((${y})|\\\\.)?|(${y}))[eE][+-]?(${A})\\\\b`},{begin:`\\\\b(${N})\\\\b((${y})\\\\b|\\\\.)?|(${y})\\\\b`},{begin:\"\\\\b(0|[1-9](_?[0-9])*)n\\\\b\"},{begin:\"\\\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\\\b\"},{begin:\"\\\\b0[bB][0-1](_?[0-1])*n?\\\\b\"},{begin:\"\\\\b0[oO][0-7](_?[0-7])*n?\\\\b\"},{begin:\"\\\\b0[0-7]+n?\\\\b\"}],relevance:0},h={className:\"subst\",begin:\"\\\\$\\\\{\",end:\"\\\\}\",keywords:E,contains:[]},_={begin:\"html`\",end:\"\",starts:{end:\"`\",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:\"xml\"}},p={begin:\"css`\",end:\"\",starts:{end:\"`\",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,h],subLanguage:\"css\"}},v={className:\"string\",begin:\"`\",end:\"`\",contains:[e.BACKSLASH_ESCAPE,h]},w=e.COMMENT(/\\/\\*\\*(?!\\/)/,\"\\\\*/\",{relevance:0,contains:[{begin:\"(?=@[A-Za-z]+)\",relevance:0,contains:[{className:\"doctag\",begin:\"@[A-Za-z]+\"},{className:\"type\",begin:\"\\\\{\",end:\"\\\\}\",excludeEnd:!0,excludeBegin:!0,relevance:0},{className:\"variable\",begin:d+\"(?=\\\\s*(-)|$)\",endsParent:!0,relevance:0},{begin:/(?=[^\\n])\\s/,relevance:0}]}]}),S={className:\"comment\",variants:[w,e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},R=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,_,p,v,f];h.contains=R.concat({begin:/\\{/,end:/\\}/,keywords:E,contains:[\"self\"].concat(R)});const k=[].concat(S,h.contains),O=k.concat([{begin:/\\(/,end:/\\)/,keywords:E,contains:[\"self\"].concat(k)}]),I={className:\"params\",begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:E,contains:O},x={variants:[{match:[/class/,/\\s+/,d,/\\s+/,/extends/,/\\s+/,n.concat(d,\"(\",n.concat(/\\./,d),\")*\")],scope:{1:\"keyword\",3:\"title.class\",5:\"keyword\",7:\"title.class.inherited\"}},{match:[/class/,/\\s+/,d],scope:{1:\"keyword\",3:\"title.class\"}}]},T={relevance:0,match:n.either(/\\bJSON/,/\\b[A-Z][a-z]+([A-Z][a-z]+|\\d)*/,/\\b[A-Z]{2,}([A-Z][a-z]+|\\d)+/),className:\"title.class\",keywords:{_:[...c,...r]}},C={label:\"use_strict\",className:\"meta\",relevance:10,begin:/^\\s*['\"]use (strict|asm)['\"]/},M={variants:[{match:[/function/,/\\s+/,d,/(?=\\s*\\()/]},{match:[/function/,/\\s*(?=\\()/]}],className:{1:\"keyword\",3:\"title.function\"},label:\"func.def\",contains:[I],illegal:/%/},B={relevance:0,match:/\\b[A-Z][A-Z_0-9]+\\b/,className:\"variable.constant\"};function $(e){return n.concat(\"(?!\",e.join(\"|\"),\")\")}const D={match:n.concat(/\\b/,$([...i,\"super\"]),d,n.lookahead(/\\(/)),className:\"title.function\",relevance:0},U={begin:n.concat(/\\./,n.lookahead(n.concat(d,/(?![0-9A-Za-z$_(])/))),end:d,excludeBegin:!0,keywords:\"prototype\",className:\"property\",relevance:0},Z={match:[/get|set/,/\\s+/,d,/(?=\\()/],className:{1:\"keyword\",3:\"title.function\"},contains:[{begin:/\\(\\)/},I]},z=\"(\\\\([^()]*(\\\\([^()]*(\\\\([^()]*\\\\)[^()]*)*\\\\)[^()]*)*\\\\)|\"+e.UNDERSCORE_IDENT_RE+\")\\\\s*=>\",F={match:[/const|var|let/,/\\s+/,d,/\\s*/,/=\\s*/,n.lookahead(z)],className:{1:\"keyword\",3:\"title.function\"},contains:[I]};return{name:\"Javascript\",aliases:[\"js\",\"jsx\",\"mjs\",\"cjs\"],keywords:E,exports:{PARAMS_CONTAINS:O,CLASS_REFERENCE:T},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:\"shebang\",binary:\"node\",relevance:5}),C,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,_,p,v,S,f,T,{className:\"attr\",begin:d+n.lookahead(\":\"),relevance:0},F,{begin:\"(\"+e.RE_STARTERS_RE+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",keywords:\"return throw case\",relevance:0,contains:[S,e.REGEXP_MODE,{className:\"function\",begin:z,returnBegin:!0,end:\"\\\\s*=>\",contains:[{className:\"params\",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\\(\\s*\\)/,skip:!0},{begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:E,contains:O}]}]},{begin:/,/,relevance:0},{match:/\\s+/,relevance:0},{variants:[{begin:g.begin,end:g.end},{match:u},{begin:m.begin,\"on:begin\":m.isTrulyOpeningTag,end:m.end}],subLanguage:\"xml\",contains:[{begin:m.begin,end:m.end,skip:!0,contains:[\"self\"]}]}]},M,{beginKeywords:\"while if switch catch for\"},{begin:\"\\\\b(?!function)\"+e.UNDERSCORE_IDENT_RE+\"\\\\([^()]*(\\\\([^()]*(\\\\([^()]*\\\\)[^()]*)*\\\\)[^()]*)*\\\\)\\\\s*\\\\{\",returnBegin:!0,label:\"func.def\",contains:[I,e.inherit(e.TITLE_MODE,{begin:d,className:\"title.function\"})]},{match:/\\.\\.\\./,relevance:0},U,{match:\"\\\\$\"+d,relevance:0},{match:[/\\bconstructor(?=\\s*\\()/],className:{1:\"title.function\"},contains:[I]},D,B,x,Z,{match:/\\$[(.]/}]}}e.exports=b}}]);"
  },
  {
    "path": "docs/js/highlight-js-json.471128d2.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-json\"],{\"5ad2\":function(n,e){function a(n){const e={className:\"attr\",begin:/\"(\\\\.|[^\\\\\"\\r\\n])*\"(?=\\s*:)/,relevance:1.01},a={match:/[{}[\\],:]/,className:\"punctuation\",relevance:0},s={beginKeywords:[\"true\",\"false\",\"null\"].join(\" \")};return{name:\"JSON\",contains:[e,a,n.QUOTE_STRING_MODE,s,n.C_NUMBER_MODE,n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],illegal:\"\\\\S\"}}n.exports=a}}]);"
  },
  {
    "path": "docs/js/highlight-js-llvm.6100b125.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-llvm\"],{\"7c30\":function(e,n){function a(e){const n=e.regex,a=/([-a-zA-Z$._][\\w$.-]*)/,t={className:\"type\",begin:/\\bi\\d+(?=\\s|\\b)/},i={className:\"operator\",relevance:0,begin:/=/},c={className:\"punctuation\",relevance:0,begin:/,/},l={className:\"number\",variants:[{begin:/0[xX][a-fA-F0-9]+/},{begin:/-?\\d+(?:[.]\\d+)?(?:[eE][-+]?\\d+(?:[.]\\d+)?)?/}],relevance:0},r={className:\"symbol\",variants:[{begin:/^\\s*[a-z]+:/}],relevance:0},s={className:\"variable\",variants:[{begin:n.concat(/%/,a)},{begin:/%\\d+/},{begin:/#\\d+/}]},o={className:\"title\",variants:[{begin:n.concat(/@/,a)},{begin:/@\\d+/},{begin:n.concat(/!/,a)},{begin:n.concat(/!\\d+/,a)},{begin:/!\\d+/}]};return{name:\"LLVM IR\",keywords:\"begin end true false declare define global constant private linker_private internal available_externally linkonce linkonce_odr weak weak_odr appending dllimport dllexport common default hidden protected extern_weak external thread_local zeroinitializer undef null to tail target triple datalayout volatile nuw nsw nnan ninf nsz arcp fast exact inbounds align addrspace section alias module asm sideeffect gc dbg linker_private_weak attributes blockaddress initialexec localdynamic localexec prefix unnamed_addr ccc fastcc coldcc x86_stdcallcc x86_fastcallcc arm_apcscc arm_aapcscc arm_aapcs_vfpcc ptx_device ptx_kernel intel_ocl_bicc msp430_intrcc spir_func spir_kernel x86_64_sysvcc x86_64_win64cc x86_thiscallcc cc c signext zeroext inreg sret nounwind noreturn noalias nocapture byval nest readnone readonly inlinehint noinline alwaysinline optsize ssp sspreq noredzone noimplicitfloat naked builtin cold nobuiltin noduplicate nonlazybind optnone returns_twice sanitize_address sanitize_memory sanitize_thread sspstrong uwtable returned type opaque eq ne slt sgt sle sge ult ugt ule uge oeq one olt ogt ole oge ord uno ueq une x acq_rel acquire alignstack atomic catch cleanup filter inteldialect max min monotonic nand personality release seq_cst singlethread umax umin unordered xchg add fadd sub fsub mul fmul udiv sdiv fdiv urem srem frem shl lshr ashr and or xor icmp fcmp phi call trunc zext sext fptrunc fpext uitofp sitofp fptoui fptosi inttoptr ptrtoint bitcast addrspacecast select va_arg ret br switch invoke unwind unreachable indirectbr landingpad resume malloc alloca free load store getelementptr extractelement insertelement shufflevector getresult extractvalue insertvalue atomicrmw cmpxchg fence argmemonly double\",contains:[t,e.COMMENT(/;\\s*$/,null,{relevance:0}),e.COMMENT(/;/,/$/),e.QUOTE_STRING_MODE,{className:\"string\",variants:[{begin:/\"/,end:/[^\\\\]\"/}]},o,c,i,s,r,l]}}e.exports=a}}]);"
  },
  {
    "path": "docs/js/highlight-js-markdown.90077643.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-markdown\"],{\"04b0\":function(n,e){function a(n){const e=n.regex,a={begin:/<\\/?[A-Za-z_]/,end:\">\",subLanguage:\"xml\",relevance:0},i={begin:\"^[-\\\\*]{3,}\",end:\"$\"},s={className:\"code\",variants:[{begin:\"(`{3,})[^`](.|\\\\n)*?\\\\1`*[ ]*\"},{begin:\"(~{3,})[^~](.|\\\\n)*?\\\\1~*[ ]*\"},{begin:\"```\",end:\"```+[ ]*$\"},{begin:\"~~~\",end:\"~~~+[ ]*$\"},{begin:\"`.+?`\"},{begin:\"(?=^( {4}|\\\\t))\",contains:[{begin:\"^( {4}|\\\\t)\",end:\"(\\\\n)$\"}],relevance:0}]},c={className:\"bullet\",begin:\"^[ \\t]*([*+-]|(\\\\d+\\\\.))(?=\\\\s+)\",end:\"\\\\s+\",excludeEnd:!0},t={begin:/^\\[[^\\n]+\\]:/,returnBegin:!0,contains:[{className:\"symbol\",begin:/\\[/,end:/\\]/,excludeBegin:!0,excludeEnd:!0},{className:\"link\",begin:/:\\s*/,end:/$/,excludeBegin:!0}]},g=/[A-Za-z][A-Za-z0-9+.-]*/,d={variants:[{begin:/\\[.+?\\]\\[.*?\\]/,relevance:0},{begin:/\\[.+?\\]\\(((data|javascript|mailto):|(?:http|ftp)s?:\\/\\/).*?\\)/,relevance:2},{begin:e.concat(/\\[.+?\\]\\(/,g,/:\\/\\/.*?\\)/),relevance:2},{begin:/\\[.+?\\]\\([./?&#].*?\\)/,relevance:1},{begin:/\\[.*?\\]\\(.*?\\)/,relevance:0}],returnBegin:!0,contains:[{match:/\\[(?=\\])/},{className:\"string\",relevance:0,begin:\"\\\\[\",end:\"\\\\]\",excludeBegin:!0,returnEnd:!0},{className:\"link\",relevance:0,begin:\"\\\\]\\\\(\",end:\"\\\\)\",excludeBegin:!0,excludeEnd:!0},{className:\"symbol\",relevance:0,begin:\"\\\\]\\\\[\",end:\"\\\\]\",excludeBegin:!0,excludeEnd:!0}]},l={className:\"strong\",contains:[],variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\\*{2}/,end:/\\*{2}/}]},o={className:\"emphasis\",contains:[],variants:[{begin:/\\*(?!\\*)/,end:/\\*/},{begin:/_(?!_)/,end:/_/,relevance:0}]};l.contains.push(o),o.contains.push(l);let b=[a,d];l.contains=l.contains.concat(b),o.contains=o.contains.concat(b),b=b.concat(l,o);const r={className:\"section\",variants:[{begin:\"^#{1,6}\",end:\"$\",contains:b},{begin:\"(?=^.+?\\\\n[=-]{2,}$)\",contains:[{begin:\"^[=-]*$\"},{begin:\"^\",end:\"\\\\n\",contains:b}]}]},m={className:\"quote\",begin:\"^>\\\\s+\",contains:b,end:\"$\"};return{name:\"Markdown\",aliases:[\"md\",\"mkdown\",\"mkd\"],contains:[r,a,c,l,o,m,s,i,d,t]}}n.exports=a}}]);"
  },
  {
    "path": "docs/js/highlight-js-objectivec.bcdf5156.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-objectivec\"],{\"9bf2\":function(e,n){function _(e){const n={className:\"built_in\",begin:\"\\\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\\\w+\"},_=/[a-zA-Z@][a-zA-Z0-9_]*/,i=[\"int\",\"float\",\"while\",\"char\",\"export\",\"sizeof\",\"typedef\",\"const\",\"struct\",\"for\",\"union\",\"unsigned\",\"long\",\"volatile\",\"static\",\"bool\",\"mutable\",\"if\",\"do\",\"return\",\"goto\",\"void\",\"enum\",\"else\",\"break\",\"extern\",\"asm\",\"case\",\"short\",\"default\",\"double\",\"register\",\"explicit\",\"signed\",\"typename\",\"this\",\"switch\",\"continue\",\"wchar_t\",\"inline\",\"readonly\",\"assign\",\"readwrite\",\"self\",\"@synchronized\",\"id\",\"typeof\",\"nonatomic\",\"super\",\"unichar\",\"IBOutlet\",\"IBAction\",\"strong\",\"weak\",\"copy\",\"in\",\"out\",\"inout\",\"bycopy\",\"byref\",\"oneway\",\"__strong\",\"__weak\",\"__block\",\"__autoreleasing\",\"@private\",\"@protected\",\"@public\",\"@try\",\"@property\",\"@end\",\"@throw\",\"@catch\",\"@finally\",\"@autoreleasepool\",\"@synthesize\",\"@dynamic\",\"@selector\",\"@optional\",\"@required\",\"@encode\",\"@package\",\"@import\",\"@defs\",\"@compatibility_alias\",\"__bridge\",\"__bridge_transfer\",\"__bridge_retained\",\"__bridge_retain\",\"__covariant\",\"__contravariant\",\"__kindof\",\"_Nonnull\",\"_Nullable\",\"_Null_unspecified\",\"__FUNCTION__\",\"__PRETTY_FUNCTION__\",\"__attribute__\",\"getter\",\"setter\",\"retain\",\"unsafe_unretained\",\"nonnull\",\"nullable\",\"null_unspecified\",\"null_resettable\",\"class\",\"instancetype\",\"NS_DESIGNATED_INITIALIZER\",\"NS_UNAVAILABLE\",\"NS_REQUIRES_SUPER\",\"NS_RETURNS_INNER_POINTER\",\"NS_INLINE\",\"NS_AVAILABLE\",\"NS_DEPRECATED\",\"NS_ENUM\",\"NS_OPTIONS\",\"NS_SWIFT_UNAVAILABLE\",\"NS_ASSUME_NONNULL_BEGIN\",\"NS_ASSUME_NONNULL_END\",\"NS_REFINED_FOR_SWIFT\",\"NS_SWIFT_NAME\",\"NS_SWIFT_NOTHROW\",\"NS_DURING\",\"NS_HANDLER\",\"NS_ENDHANDLER\",\"NS_VALUERETURN\",\"NS_VOIDRETURN\"],t=[\"false\",\"true\",\"FALSE\",\"TRUE\",\"nil\",\"YES\",\"NO\",\"NULL\"],a=[\"BOOL\",\"dispatch_once_t\",\"dispatch_queue_t\",\"dispatch_sync\",\"dispatch_async\",\"dispatch_once\"],o={$pattern:_,keyword:i,literal:t,built_in:a},s={$pattern:_,keyword:[\"@interface\",\"@class\",\"@protocol\",\"@implementation\"]};return{name:\"Objective-C\",aliases:[\"mm\",\"objc\",\"obj-c\",\"obj-c++\",\"objective-c++\"],keywords:o,illegal:\"</\",contains:[n,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{className:\"string\",variants:[{begin:'@\"',end:'\"',illegal:\"\\\\n\",contains:[e.BACKSLASH_ESCAPE]}]},{className:\"meta\",begin:/#\\s*[a-z]+\\b/,end:/$/,keywords:{keyword:\"if else elif endif define undef warning error line pragma ifdef ifndef include\"},contains:[{begin:/\\\\\\n/,relevance:0},e.inherit(e.QUOTE_STRING_MODE,{className:\"string\"}),{className:\"string\",begin:/<.*?>/,end:/$/,illegal:\"\\\\n\"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:\"class\",begin:\"(\"+s.keyword.join(\"|\")+\")\\\\b\",end:/(\\{|$)/,excludeEnd:!0,keywords:s,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:\"\\\\.\"+e.UNDERSCORE_IDENT_RE,relevance:0}]}}e.exports=_}}]);"
  },
  {
    "path": "docs/js/highlight-js-perl.757d7b6f.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-perl\"],{\"6a51\":function(e,n){function t(e){const n=e.regex,t=[\"abs\",\"accept\",\"alarm\",\"and\",\"atan2\",\"bind\",\"binmode\",\"bless\",\"break\",\"caller\",\"chdir\",\"chmod\",\"chomp\",\"chop\",\"chown\",\"chr\",\"chroot\",\"close\",\"closedir\",\"connect\",\"continue\",\"cos\",\"crypt\",\"dbmclose\",\"dbmopen\",\"defined\",\"delete\",\"die\",\"do\",\"dump\",\"each\",\"else\",\"elsif\",\"endgrent\",\"endhostent\",\"endnetent\",\"endprotoent\",\"endpwent\",\"endservent\",\"eof\",\"eval\",\"exec\",\"exists\",\"exit\",\"exp\",\"fcntl\",\"fileno\",\"flock\",\"for\",\"foreach\",\"fork\",\"format\",\"formline\",\"getc\",\"getgrent\",\"getgrgid\",\"getgrnam\",\"gethostbyaddr\",\"gethostbyname\",\"gethostent\",\"getlogin\",\"getnetbyaddr\",\"getnetbyname\",\"getnetent\",\"getpeername\",\"getpgrp\",\"getpriority\",\"getprotobyname\",\"getprotobynumber\",\"getprotoent\",\"getpwent\",\"getpwnam\",\"getpwuid\",\"getservbyname\",\"getservbyport\",\"getservent\",\"getsockname\",\"getsockopt\",\"given\",\"glob\",\"gmtime\",\"goto\",\"grep\",\"gt\",\"hex\",\"if\",\"index\",\"int\",\"ioctl\",\"join\",\"keys\",\"kill\",\"last\",\"lc\",\"lcfirst\",\"length\",\"link\",\"listen\",\"local\",\"localtime\",\"log\",\"lstat\",\"lt\",\"ma\",\"map\",\"mkdir\",\"msgctl\",\"msgget\",\"msgrcv\",\"msgsnd\",\"my\",\"ne\",\"next\",\"no\",\"not\",\"oct\",\"open\",\"opendir\",\"or\",\"ord\",\"our\",\"pack\",\"package\",\"pipe\",\"pop\",\"pos\",\"print\",\"printf\",\"prototype\",\"push\",\"q|0\",\"qq\",\"quotemeta\",\"qw\",\"qx\",\"rand\",\"read\",\"readdir\",\"readline\",\"readlink\",\"readpipe\",\"recv\",\"redo\",\"ref\",\"rename\",\"require\",\"reset\",\"return\",\"reverse\",\"rewinddir\",\"rindex\",\"rmdir\",\"say\",\"scalar\",\"seek\",\"seekdir\",\"select\",\"semctl\",\"semget\",\"semop\",\"send\",\"setgrent\",\"sethostent\",\"setnetent\",\"setpgrp\",\"setpriority\",\"setprotoent\",\"setpwent\",\"setservent\",\"setsockopt\",\"shift\",\"shmctl\",\"shmget\",\"shmread\",\"shmwrite\",\"shutdown\",\"sin\",\"sleep\",\"socket\",\"socketpair\",\"sort\",\"splice\",\"split\",\"sprintf\",\"sqrt\",\"srand\",\"stat\",\"state\",\"study\",\"sub\",\"substr\",\"symlink\",\"syscall\",\"sysopen\",\"sysread\",\"sysseek\",\"system\",\"syswrite\",\"tell\",\"telldir\",\"tie\",\"tied\",\"time\",\"times\",\"tr\",\"truncate\",\"uc\",\"ucfirst\",\"umask\",\"undef\",\"unless\",\"unlink\",\"unpack\",\"unshift\",\"untie\",\"until\",\"use\",\"utime\",\"values\",\"vec\",\"wait\",\"waitpid\",\"wantarray\",\"warn\",\"when\",\"while\",\"write\",\"x|0\",\"xor\",\"y|0\"],s=/[dualxmsipngr]{0,12}/,r={$pattern:/[\\w.]+/,keyword:t.join(\" \")},i={className:\"subst\",begin:\"[$@]\\\\{\",end:\"\\\\}\",keywords:r},a={begin:/->\\{/,end:/\\}/},o={variants:[{begin:/\\$\\d/},{begin:n.concat(/[$%@](\\^\\w\\b|#\\w+(::\\w+)*|\\{\\w+\\}|\\w+(::\\w*)*)/,\"(?![A-Za-z])(?![@$%])\")},{begin:/[$%@][^\\s\\w{]/,relevance:0}]},c=[e.BACKSLASH_ESCAPE,i,o],g=[/!/,/\\//,/\\|/,/\\?/,/'/,/\"/,/#/],l=(e,t,r=\"\\\\1\")=>{const i=\"\\\\1\"===r?r:n.concat(r,t);return n.concat(n.concat(\"(?:\",e,\")\"),t,/(?:\\\\.|[^\\\\\\/])*?/,i,/(?:\\\\.|[^\\\\\\/])*?/,r,s)},d=(e,t,r)=>n.concat(n.concat(\"(?:\",e,\")\"),t,/(?:\\\\.|[^\\\\\\/])*?/,r,s),p=[o,e.HASH_COMMENT_MODE,e.COMMENT(/^=\\w/,/=cut/,{endsWithParent:!0}),a,{className:\"string\",contains:c,variants:[{begin:\"q[qwxr]?\\\\s*\\\\(\",end:\"\\\\)\",relevance:5},{begin:\"q[qwxr]?\\\\s*\\\\[\",end:\"\\\\]\",relevance:5},{begin:\"q[qwxr]?\\\\s*\\\\{\",end:\"\\\\}\",relevance:5},{begin:\"q[qwxr]?\\\\s*\\\\|\",end:\"\\\\|\",relevance:5},{begin:\"q[qwxr]?\\\\s*<\",end:\">\",relevance:5},{begin:\"qw\\\\s+q\",end:\"q\",relevance:5},{begin:\"'\",end:\"'\",contains:[e.BACKSLASH_ESCAPE]},{begin:'\"',end:'\"'},{begin:\"`\",end:\"`\",contains:[e.BACKSLASH_ESCAPE]},{begin:/\\{\\w+\\}/,relevance:0},{begin:\"-?\\\\w+\\\\s*=>\",relevance:0}]},{className:\"number\",begin:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",relevance:0},{begin:\"(\\\\/\\\\/|\"+e.RE_STARTERS_RE+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",keywords:\"split return print reverse grep\",relevance:0,contains:[e.HASH_COMMENT_MODE,{className:\"regexp\",variants:[{begin:l(\"s|tr|y\",n.either(...g,{capture:!0}))},{begin:l(\"s|tr|y\",\"\\\\(\",\"\\\\)\")},{begin:l(\"s|tr|y\",\"\\\\[\",\"\\\\]\")},{begin:l(\"s|tr|y\",\"\\\\{\",\"\\\\}\")}],relevance:2},{className:\"regexp\",variants:[{begin:/(m|qr)\\/\\//,relevance:0},{begin:d(\"(?:m|qr)?\",/\\//,/\\//)},{begin:d(\"m|qr\",n.either(...g,{capture:!0}),/\\1/)},{begin:d(\"m|qr\",/\\(/,/\\)/)},{begin:d(\"m|qr\",/\\[/,/\\]/)},{begin:d(\"m|qr\",/\\{/,/\\}/)}]}]},{className:\"function\",beginKeywords:\"sub\",end:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{begin:\"-\\\\w\\\\b\",relevance:0},{begin:\"^__DATA__$\",end:\"^__END__$\",subLanguage:\"mojolicious\",contains:[{begin:\"^@@.*\",end:\"$\",className:\"comment\"}]}];return i.contains=p,a.contains=p,{name:\"Perl\",aliases:[\"pl\",\"pm\"],keywords:r,contains:p}}e.exports=t}}]);"
  },
  {
    "path": "docs/js/highlight-js-php.cc8d6c27.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-php\"],{2907:function(e,r){function t(e){const r={className:\"variable\",begin:\"\\\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*(?![A-Za-z0-9])(?![$])\"},t={className:\"meta\",variants:[{begin:/<\\?php/,relevance:10},{begin:/<\\?[=]?/},{begin:/\\?>/}]},a={className:\"subst\",variants:[{begin:/\\$\\w+/},{begin:/\\{\\$/,end:/\\}/}]},n=e.inherit(e.APOS_STRING_MODE,{illegal:null}),i=e.inherit(e.QUOTE_STRING_MODE,{illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(a)}),o=e.END_SAME_AS_BEGIN({begin:/<<<[ \\t]*(\\w+)\\n/,end:/[ \\t]*(\\w+)\\b/,contains:e.QUOTE_STRING_MODE.contains.concat(a)}),l={className:\"string\",contains:[e.BACKSLASH_ESCAPE,t],variants:[e.inherit(n,{begin:\"b'\",end:\"'\"}),e.inherit(i,{begin:'b\"',end:'\"'}),i,n,o]},c={className:\"number\",variants:[{begin:\"\\\\b0b[01]+(?:_[01]+)*\\\\b\"},{begin:\"\\\\b0o[0-7]+(?:_[0-7]+)*\\\\b\"},{begin:\"\\\\b0x[\\\\da-f]+(?:_[\\\\da-f]+)*\\\\b\"},{begin:\"(?:\\\\b\\\\d+(?:_\\\\d+)*(\\\\.(?:\\\\d+(?:_\\\\d+)*))?|\\\\B\\\\.\\\\d+)(?:e[+-]?\\\\d+)?\"}],relevance:0},s={keyword:\"__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile enum eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 mixed new object or private protected public real return string switch throw trait try unset use var void while xor yield\",literal:\"false null true\",built_in:\"Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException UnhandledMatchError ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Stringable Throwable Traversable WeakReference WeakMap Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass\"};return{case_insensitive:!0,keywords:s,contains:[e.HASH_COMMENT_MODE,e.COMMENT(\"//\",\"$\",{contains:[t]}),e.COMMENT(\"/\\\\*\",\"\\\\*/\",{contains:[{className:\"doctag\",begin:\"@[A-Za-z]+\"}]}),e.COMMENT(\"__halt_compiler.+?;\",!1,{endsWithParent:!0,keywords:\"__halt_compiler\"}),t,{className:\"keyword\",begin:/\\$this\\b/},r,{begin:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{className:\"function\",relevance:0,beginKeywords:\"fn function\",end:/[;{]/,excludeEnd:!0,illegal:\"[$%\\\\[]\",contains:[{beginKeywords:\"use\"},e.UNDERSCORE_TITLE_MODE,{begin:\"=>\",endsParent:!0},{className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",excludeBegin:!0,excludeEnd:!0,keywords:s,contains:[\"self\",r,e.C_BLOCK_COMMENT_MODE,l,c]}]},{className:\"class\",variants:[{beginKeywords:\"enum\",illegal:/[($\"]/},{beginKeywords:\"class interface trait\",illegal:/[:($\"]/}],relevance:0,end:/\\{/,excludeEnd:!0,contains:[{beginKeywords:\"extends implements\"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:\"namespace\",relevance:0,end:\";\",illegal:/[.']/,contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:\"use\",relevance:0,end:\";\",contains:[e.UNDERSCORE_TITLE_MODE]},l,c]}}e.exports=t}}]);"
  },
  {
    "path": "docs/js/highlight-js-python.c214ed92.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-python\"],{9510:function(e,n){function a(e){const n=e.regex,a=/[\\p{XID_Start}_]\\p{XID_Continue}*/u,i=[\"and\",\"as\",\"assert\",\"async\",\"await\",\"break\",\"class\",\"continue\",\"def\",\"del\",\"elif\",\"else\",\"except\",\"finally\",\"for\",\"from\",\"global\",\"if\",\"import\",\"in\",\"is\",\"lambda\",\"nonlocal|10\",\"not\",\"or\",\"pass\",\"raise\",\"return\",\"try\",\"while\",\"with\",\"yield\"],s=[\"__import__\",\"abs\",\"all\",\"any\",\"ascii\",\"bin\",\"bool\",\"breakpoint\",\"bytearray\",\"bytes\",\"callable\",\"chr\",\"classmethod\",\"compile\",\"complex\",\"delattr\",\"dict\",\"dir\",\"divmod\",\"enumerate\",\"eval\",\"exec\",\"filter\",\"float\",\"format\",\"frozenset\",\"getattr\",\"globals\",\"hasattr\",\"hash\",\"help\",\"hex\",\"id\",\"input\",\"int\",\"isinstance\",\"issubclass\",\"iter\",\"len\",\"list\",\"locals\",\"map\",\"max\",\"memoryview\",\"min\",\"next\",\"object\",\"oct\",\"open\",\"ord\",\"pow\",\"print\",\"property\",\"range\",\"repr\",\"reversed\",\"round\",\"set\",\"setattr\",\"slice\",\"sorted\",\"staticmethod\",\"str\",\"sum\",\"super\",\"tuple\",\"type\",\"vars\",\"zip\"],t=[\"__debug__\",\"Ellipsis\",\"False\",\"None\",\"NotImplemented\",\"True\"],r=[\"Any\",\"Callable\",\"Coroutine\",\"Dict\",\"List\",\"Literal\",\"Generic\",\"Optional\",\"Sequence\",\"Set\",\"Tuple\",\"Type\",\"Union\"],l={$pattern:/[A-Za-z]\\w+|__\\w+__/,keyword:i,built_in:s,literal:t,type:r},o={className:\"meta\",begin:/^(>>>|\\.\\.\\.) /},b={className:\"subst\",begin:/\\{/,end:/\\}/,keywords:l,illegal:/#/},c={begin:/\\{\\{/,relevance:0},d={className:\"string\",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,o],relevance:10},{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?\"\"\"/,end:/\"\"\"/,contains:[e.BACKSLASH_ESCAPE,o],relevance:10},{begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,o,c,b]},{begin:/([fF][rR]|[rR][fF]|[fF])\"\"\"/,end:/\"\"\"/,contains:[e.BACKSLASH_ESCAPE,o,c,b]},{begin:/([uU]|[rR])'/,end:/'/,relevance:10},{begin:/([uU]|[rR])\"/,end:/\"/,relevance:10},{begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])\"/,end:/\"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,c,b]},{begin:/([fF][rR]|[rR][fF]|[fF])\"/,end:/\"/,contains:[e.BACKSLASH_ESCAPE,c,b]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},p=\"[0-9](_?[0-9])*\",g=`(\\\\b(${p}))?\\\\.(${p})|\\\\b(${p})\\\\.`,m={className:\"number\",relevance:0,variants:[{begin:`(\\\\b(${p})|(${g}))[eE][+-]?(${p})[jJ]?\\\\b`},{begin:`(${g})[jJ]?`},{begin:\"\\\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?\\\\b\"},{begin:\"\\\\b0[bB](_?[01])+[lL]?\\\\b\"},{begin:\"\\\\b0[oO](_?[0-7])+[lL]?\\\\b\"},{begin:\"\\\\b0[xX](_?[0-9a-fA-F])+[lL]?\\\\b\"},{begin:`\\\\b(${p})[jJ]\\\\b`}]},_={className:\"comment\",begin:n.lookahead(/# type:/),end:/$/,keywords:l,contains:[{begin:/# type:/},{begin:/#/,end:/\\b\\B/,endsWithParent:!0}]},u={className:\"params\",variants:[{className:\"\",begin:/\\(\\s*\\)/,skip:!0},{begin:/\\(/,end:/\\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:[\"self\",o,m,d,e.HASH_COMMENT_MODE]}]};return b.contains=[d,m,o],{name:\"Python\",aliases:[\"py\",\"gyp\",\"ipython\"],unicodeRegex:!0,keywords:l,illegal:/(<\\/|->|\\?)|=>/,contains:[o,m,{begin:/\\bself\\b/},{beginKeywords:\"if\",relevance:0},d,_,e.HASH_COMMENT_MODE,{match:[/def/,/\\s+/,a],scope:{1:\"keyword\",3:\"title.function\"},contains:[u]},{variants:[{match:[/class/,/\\s+/,a,/\\s*/,/\\(\\s*/,a,/\\s*\\)/]},{match:[/class/,/\\s+/,a]}],scope:{1:\"keyword\",3:\"title.class\",6:\"title.class.inherited\"}},{className:\"meta\",begin:/^[\\t ]*@/,end:/(?=#)|$/,contains:[m,u,d]}]}}e.exports=a}}]);"
  },
  {
    "path": "docs/js/highlight-js-ruby.f889d392.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-ruby\"],{\"82cb\":function(e,n){function a(e){const n=e.regex,a=\"([a-zA-Z_]\\\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?)\",i={keyword:\"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor __FILE__\",built_in:\"proc lambda\",literal:\"true false nil\"},s={className:\"doctag\",begin:\"@[A-Za-z]+\"},b={begin:\"#<\",end:\">\"},c=[e.COMMENT(\"#\",\"$\",{contains:[s]}),e.COMMENT(\"^=begin\",\"^=end\",{contains:[s],relevance:10}),e.COMMENT(\"^__END__\",\"\\\\n$\")],r={className:\"subst\",begin:/#\\{/,end:/\\}/,keywords:i},d={className:\"string\",contains:[e.BACKSLASH_ESCAPE,r],variants:[{begin:/'/,end:/'/},{begin:/\"/,end:/\"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\\(/,end:/\\)/},{begin:/%[qQwWx]?\\[/,end:/\\]/},{begin:/%[qQwWx]?\\{/,end:/\\}/},{begin:/%[qQwWx]?</,end:/>/},{begin:/%[qQwWx]?\\//,end:/\\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\\|/,end:/\\|/},{begin:/\\B\\?(\\\\\\d{1,3})/},{begin:/\\B\\?(\\\\x[A-Fa-f0-9]{1,2})/},{begin:/\\B\\?(\\\\u\\{?[A-Fa-f0-9]{1,6}\\}?)/},{begin:/\\B\\?(\\\\M-\\\\C-|\\\\M-\\\\c|\\\\c\\\\M-|\\\\M-|\\\\C-\\\\M-)[\\x20-\\x7e]/},{begin:/\\B\\?\\\\(c|C-)[\\x20-\\x7e]/},{begin:/\\B\\?\\\\?\\S/},{begin:n.concat(/<<[-~]?'?/,n.lookahead(/(\\w+)(?=\\W)[^\\n]*\\n(?:[^\\n]*\\n)*?\\s*\\1\\b/)),contains:[e.END_SAME_AS_BEGIN({begin:/(\\w+)/,end:/(\\w+)/,contains:[e.BACKSLASH_ESCAPE,r]})]}]},t=\"[1-9](_?[0-9])*|0\",o=\"[0-9](_?[0-9])*\",g={className:\"number\",relevance:0,variants:[{begin:`\\\\b(${t})(\\\\.(${o}))?([eE][+-]?(${o})|r)?i?\\\\b`},{begin:\"\\\\b0[dD][0-9](_?[0-9])*r?i?\\\\b\"},{begin:\"\\\\b0[bB][0-1](_?[0-1])*r?i?\\\\b\"},{begin:\"\\\\b0[oO][0-7](_?[0-7])*r?i?\\\\b\"},{begin:\"\\\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\\\b\"},{begin:\"\\\\b0(_?[0-7])+r?i?\\\\b\"}]},l={className:\"params\",begin:\"\\\\(\",end:\"\\\\)\",endsParent:!0,keywords:i},_=[d,{className:\"class\",beginKeywords:\"class module\",end:\"$|;\",illegal:/=/,contains:[e.inherit(e.TITLE_MODE,{begin:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|!)?\"}),{begin:\"<\\\\s*\",contains:[{begin:\"(\"+e.IDENT_RE+\"::)?\"+e.IDENT_RE,relevance:0}]}].concat(c)},{className:\"function\",begin:n.concat(/def\\s+/,n.lookahead(a+\"\\\\s*(\\\\(|;|$)\")),relevance:0,keywords:\"def\",end:\"$|;\",contains:[e.inherit(e.TITLE_MODE,{begin:a}),l].concat(c)},{begin:e.IDENT_RE+\"::\"},{className:\"symbol\",begin:e.UNDERSCORE_IDENT_RE+\"(!|\\\\?)?:\",relevance:0},{className:\"symbol\",begin:\":(?!\\\\s)\",contains:[d,{begin:a}],relevance:0},g,{className:\"variable\",begin:\"(\\\\$\\\\W)|((\\\\$|@@?)(\\\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])\"},{className:\"params\",begin:/\\|/,end:/\\|/,relevance:0,keywords:i},{begin:\"(\"+e.RE_STARTERS_RE+\"|unless)\\\\s*\",keywords:\"unless\",contains:[{className:\"regexp\",contains:[e.BACKSLASH_ESCAPE,r],illegal:/\\n/,variants:[{begin:\"/\",end:\"/[a-z]*\"},{begin:/%r\\{/,end:/\\}[a-z]*/},{begin:\"%r\\\\(\",end:\"\\\\)[a-z]*\"},{begin:\"%r!\",end:\"![a-z]*\"},{begin:\"%r\\\\[\",end:\"\\\\][a-z]*\"}]}].concat(b,c),relevance:0}].concat(b,c);r.contains=_,l.contains=_;const w=\"[>?]>\",E=\"[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>\",u=\"(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d+(p\\\\d+)?[^\\\\d][^>]+>\",N=[{begin:/^\\s*=>/,starts:{end:\"$\",contains:_}},{className:\"meta\",begin:\"^(\"+w+\"|\"+E+\"|\"+u+\")(?=[ ])\",starts:{end:\"$\",contains:_}}];return c.unshift(b),{name:\"Ruby\",aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],keywords:i,illegal:/\\/\\*/,contains:[e.SHEBANG({binary:\"ruby\"})].concat(N).concat(c).concat(_)}}e.exports=a}}]);"
  },
  {
    "path": "docs/js/highlight-js-scss.62ee18da.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-scss\"],{6113:function(e,t){const i=e=>({IMPORTANT:{scope:\"meta\",begin:\"!important\"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:\"number\",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\\b/},FUNCTION_DISPATCH:{className:\"built_in\",begin:/[\\w-]+(?=\\()/},ATTRIBUTE_SELECTOR_MODE:{scope:\"selector-attr\",begin:/\\[/,end:/\\]/,illegal:\"$\",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:\"number\",begin:e.NUMBER_RE+\"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",relevance:0},CSS_VARIABLE:{className:\"attr\",begin:/--[A-Za-z][A-Za-z0-9_-]*/}}),o=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"main\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],r=[\"any-hover\",\"any-pointer\",\"aspect-ratio\",\"color\",\"color-gamut\",\"color-index\",\"device-aspect-ratio\",\"device-height\",\"device-width\",\"display-mode\",\"forced-colors\",\"grid\",\"height\",\"hover\",\"inverted-colors\",\"monochrome\",\"orientation\",\"overflow-block\",\"overflow-inline\",\"pointer\",\"prefers-color-scheme\",\"prefers-contrast\",\"prefers-reduced-motion\",\"prefers-reduced-transparency\",\"resolution\",\"scan\",\"scripting\",\"update\",\"width\",\"min-width\",\"max-width\",\"min-height\",\"max-height\"],a=[\"active\",\"any-link\",\"blank\",\"checked\",\"current\",\"default\",\"defined\",\"dir\",\"disabled\",\"drop\",\"empty\",\"enabled\",\"first\",\"first-child\",\"first-of-type\",\"fullscreen\",\"future\",\"focus\",\"focus-visible\",\"focus-within\",\"has\",\"host\",\"host-context\",\"hover\",\"indeterminate\",\"in-range\",\"invalid\",\"is\",\"lang\",\"last-child\",\"last-of-type\",\"left\",\"link\",\"local-link\",\"not\",\"nth-child\",\"nth-col\",\"nth-last-child\",\"nth-last-col\",\"nth-last-of-type\",\"nth-of-type\",\"only-child\",\"only-of-type\",\"optional\",\"out-of-range\",\"past\",\"placeholder-shown\",\"read-only\",\"read-write\",\"required\",\"right\",\"root\",\"scope\",\"target\",\"target-within\",\"user-invalid\",\"valid\",\"visited\",\"where\"],n=[\"after\",\"backdrop\",\"before\",\"cue\",\"cue-region\",\"first-letter\",\"first-line\",\"grammar-error\",\"marker\",\"part\",\"placeholder\",\"selection\",\"slotted\",\"spelling-error\"],l=[\"align-content\",\"align-items\",\"align-self\",\"all\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"caret-color\",\"clear\",\"clip\",\"clip-path\",\"clip-rule\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"contain\",\"content\",\"content-visibility\",\"counter-increment\",\"counter-reset\",\"cue\",\"cue-after\",\"cue-before\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"flow\",\"font\",\"font-display\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-smoothing\",\"font-stretch\",\"font-style\",\"font-synthesis\",\"font-variant\",\"font-variant-caps\",\"font-variant-east-asian\",\"font-variant-ligatures\",\"font-variant-numeric\",\"font-variant-position\",\"font-variation-settings\",\"font-weight\",\"gap\",\"glyph-orientation-vertical\",\"grid\",\"grid-area\",\"grid-auto-columns\",\"grid-auto-flow\",\"grid-auto-rows\",\"grid-column\",\"grid-column-end\",\"grid-column-start\",\"grid-gap\",\"grid-row\",\"grid-row-end\",\"grid-row-start\",\"grid-template\",\"grid-template-areas\",\"grid-template-columns\",\"grid-template-rows\",\"hanging-punctuation\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"isolation\",\"justify-content\",\"left\",\"letter-spacing\",\"line-break\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"mask-border\",\"mask-border-mode\",\"mask-border-outset\",\"mask-border-repeat\",\"mask-border-slice\",\"mask-border-source\",\"mask-border-width\",\"mask-clip\",\"mask-composite\",\"mask-image\",\"mask-mode\",\"mask-origin\",\"mask-position\",\"mask-repeat\",\"mask-size\",\"mask-type\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"mix-blend-mode\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"pause\",\"pause-after\",\"pause-before\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"rest\",\"rest-after\",\"rest-before\",\"right\",\"row-gap\",\"scroll-margin\",\"scroll-margin-block\",\"scroll-margin-block-end\",\"scroll-margin-block-start\",\"scroll-margin-bottom\",\"scroll-margin-inline\",\"scroll-margin-inline-end\",\"scroll-margin-inline-start\",\"scroll-margin-left\",\"scroll-margin-right\",\"scroll-margin-top\",\"scroll-padding\",\"scroll-padding-block\",\"scroll-padding-block-end\",\"scroll-padding-block-start\",\"scroll-padding-bottom\",\"scroll-padding-inline\",\"scroll-padding-inline-end\",\"scroll-padding-inline-start\",\"scroll-padding-left\",\"scroll-padding-right\",\"scroll-padding-top\",\"scroll-snap-align\",\"scroll-snap-stop\",\"scroll-snap-type\",\"shape-image-threshold\",\"shape-margin\",\"shape-outside\",\"speak\",\"speak-as\",\"src\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-all\",\"text-align-last\",\"text-combine-upright\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-emphasis\",\"text-emphasis-color\",\"text-emphasis-position\",\"text-emphasis-style\",\"text-indent\",\"text-justify\",\"text-orientation\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-box\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"voice-balance\",\"voice-duration\",\"voice-family\",\"voice-pitch\",\"voice-range\",\"voice-rate\",\"voice-stress\",\"voice-volume\",\"white-space\",\"widows\",\"width\",\"will-change\",\"word-break\",\"word-spacing\",\"word-wrap\",\"writing-mode\",\"z-index\"].reverse();function s(e){const t=i(e),s=n,d=a,c=\"@[a-z-]+\",p=\"and or not only\",g=\"[a-zA-Z-][a-zA-Z0-9_-]*\",m={className:\"variable\",begin:\"(\\\\$\"+g+\")\\\\b\"};return{name:\"SCSS\",case_insensitive:!0,illegal:\"[=/|']\",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t.CSS_NUMBER_MODE,{className:\"selector-id\",begin:\"#[A-Za-z0-9_-]+\",relevance:0},{className:\"selector-class\",begin:\"\\\\.[A-Za-z0-9_-]+\",relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:\"selector-tag\",begin:\"\\\\b(\"+o.join(\"|\")+\")\\\\b\",relevance:0},{className:\"selector-pseudo\",begin:\":(\"+d.join(\"|\")+\")\"},{className:\"selector-pseudo\",begin:\":(:)?(\"+s.join(\"|\")+\")\"},m,{begin:/\\(/,end:/\\)/,contains:[t.CSS_NUMBER_MODE]},t.CSS_VARIABLE,{className:\"attribute\",begin:\"\\\\b(\"+l.join(\"|\")+\")\\\\b\"},{begin:\"\\\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\\\b\"},{begin:/:/,end:/[;}{]/,contains:[t.BLOCK_COMMENT,m,t.HEXCOLOR,t.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.IMPORTANT]},{begin:\"@(page|font-face)\",keywords:{$pattern:c,keyword:\"@page @font-face\"}},{begin:\"@\",end:\"[{;]\",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,keyword:p,attribute:r.join(\" \")},contains:[{begin:c,className:\"keyword\"},{begin:/[a-z-]+(?=:)/,className:\"attribute\"},m,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.HEXCOLOR,t.CSS_NUMBER_MODE]},t.FUNCTION_DISPATCH]}}e.exports=s}}]);"
  },
  {
    "path": "docs/js/highlight-js-shell.dd7f411f.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-shell\"],{b65b:function(s,n){function e(s){return{name:\"Shell Session\",aliases:[\"console\",\"shellsession\"],contains:[{className:\"meta\",begin:/^\\s{0,3}[/~\\w\\d[\\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\\\](?=\\s*$)/,subLanguage:\"bash\"}}]}}s.exports=e}}]);"
  },
  {
    "path": "docs/js/highlight-js-swift.84f3e88c.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-swift\"],{\"2a39\":function(e,n){function a(e){return e?\"string\"===typeof e?e:e.source:null}function t(e){return i(\"(?=\",e,\")\")}function i(...e){const n=e.map(e=>a(e)).join(\"\");return n}function s(e){const n=e[e.length-1];return\"object\"===typeof n&&n.constructor===Object?(e.splice(e.length-1,1),n):{}}function u(...e){const n=s(e),t=\"(\"+(n.capture?\"\":\"?:\")+e.map(e=>a(e)).join(\"|\")+\")\";return t}const c=e=>i(/\\b/,e,/\\w$/.test(e)?/\\b/:/\\B/),o=[\"Protocol\",\"Type\"].map(c),r=[\"init\",\"self\"].map(c),l=[\"Any\",\"Self\"],m=[\"actor\",\"associatedtype\",\"async\",\"await\",/as\\?/,/as!/,\"as\",\"break\",\"case\",\"catch\",\"class\",\"continue\",\"convenience\",\"default\",\"defer\",\"deinit\",\"didSet\",\"do\",\"dynamic\",\"else\",\"enum\",\"extension\",\"fallthrough\",/fileprivate\\(set\\)/,\"fileprivate\",\"final\",\"for\",\"func\",\"get\",\"guard\",\"if\",\"import\",\"indirect\",\"infix\",/init\\?/,/init!/,\"inout\",/internal\\(set\\)/,\"internal\",\"in\",\"is\",\"isolated\",\"nonisolated\",\"lazy\",\"let\",\"mutating\",\"nonmutating\",/open\\(set\\)/,\"open\",\"operator\",\"optional\",\"override\",\"postfix\",\"precedencegroup\",\"prefix\",/private\\(set\\)/,\"private\",\"protocol\",/public\\(set\\)/,\"public\",\"repeat\",\"required\",\"rethrows\",\"return\",\"set\",\"some\",\"static\",\"struct\",\"subscript\",\"super\",\"switch\",\"throws\",\"throw\",/try\\?/,/try!/,\"try\",\"typealias\",/unowned\\(safe\\)/,/unowned\\(unsafe\\)/,\"unowned\",\"var\",\"weak\",\"where\",\"while\",\"willSet\"],p=[\"false\",\"nil\",\"true\"],d=[\"assignment\",\"associativity\",\"higherThan\",\"left\",\"lowerThan\",\"none\",\"right\"],F=[\"#colorLiteral\",\"#column\",\"#dsohandle\",\"#else\",\"#elseif\",\"#endif\",\"#error\",\"#file\",\"#fileID\",\"#fileLiteral\",\"#filePath\",\"#function\",\"#if\",\"#imageLiteral\",\"#keyPath\",\"#line\",\"#selector\",\"#sourceLocation\",\"#warn_unqualified_access\",\"#warning\"],b=[\"abs\",\"all\",\"any\",\"assert\",\"assertionFailure\",\"debugPrint\",\"dump\",\"fatalError\",\"getVaList\",\"isKnownUniquelyReferenced\",\"max\",\"min\",\"numericCast\",\"pointwiseMax\",\"pointwiseMin\",\"precondition\",\"preconditionFailure\",\"print\",\"readLine\",\"repeatElement\",\"sequence\",\"stride\",\"swap\",\"swift_unboxFromSwiftValueWithType\",\"transcode\",\"type\",\"unsafeBitCast\",\"unsafeDowncast\",\"withExtendedLifetime\",\"withUnsafeMutablePointer\",\"withUnsafePointer\",\"withVaList\",\"withoutActuallyEscaping\",\"zip\"],h=u(/[/=\\-+!*%<>&|^~?]/,/[\\u00A1-\\u00A7]/,/[\\u00A9\\u00AB]/,/[\\u00AC\\u00AE]/,/[\\u00B0\\u00B1]/,/[\\u00B6\\u00BB\\u00BF\\u00D7\\u00F7]/,/[\\u2016-\\u2017]/,/[\\u2020-\\u2027]/,/[\\u2030-\\u203E]/,/[\\u2041-\\u2053]/,/[\\u2055-\\u205E]/,/[\\u2190-\\u23FF]/,/[\\u2500-\\u2775]/,/[\\u2794-\\u2BFF]/,/[\\u2E00-\\u2E7F]/,/[\\u3001-\\u3003]/,/[\\u3008-\\u3020]/,/[\\u3030]/),f=u(h,/[\\u0300-\\u036F]/,/[\\u1DC0-\\u1DFF]/,/[\\u20D0-\\u20FF]/,/[\\uFE00-\\uFE0F]/,/[\\uFE20-\\uFE2F]/),w=i(h,f,\"*\"),y=u(/[a-zA-Z_]/,/[\\u00A8\\u00AA\\u00AD\\u00AF\\u00B2-\\u00B5\\u00B7-\\u00BA]/,/[\\u00BC-\\u00BE\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u00FF]/,/[\\u0100-\\u02FF\\u0370-\\u167F\\u1681-\\u180D\\u180F-\\u1DBF]/,/[\\u1E00-\\u1FFF]/,/[\\u200B-\\u200D\\u202A-\\u202E\\u203F-\\u2040\\u2054\\u2060-\\u206F]/,/[\\u2070-\\u20CF\\u2100-\\u218F\\u2460-\\u24FF\\u2776-\\u2793]/,/[\\u2C00-\\u2DFF\\u2E80-\\u2FFF]/,/[\\u3004-\\u3007\\u3021-\\u302F\\u3031-\\u303F\\u3040-\\uD7FF]/,/[\\uF900-\\uFD3D\\uFD40-\\uFDCF\\uFDF0-\\uFE1F\\uFE30-\\uFE44]/,/[\\uFE47-\\uFEFE\\uFF00-\\uFFFD]/),g=u(y,/\\d/,/[\\u0300-\\u036F\\u1DC0-\\u1DFF\\u20D0-\\u20FF\\uFE20-\\uFE2F]/),E=i(y,g,\"*\"),v=i(/[A-Z]/,g,\"*\"),A=[\"autoclosure\",i(/convention\\(/,u(\"swift\",\"block\",\"c\"),/\\)/),\"discardableResult\",\"dynamicCallable\",\"dynamicMemberLookup\",\"escaping\",\"frozen\",\"GKInspectable\",\"IBAction\",\"IBDesignable\",\"IBInspectable\",\"IBOutlet\",\"IBSegueAction\",\"inlinable\",\"main\",\"nonobjc\",\"NSApplicationMain\",\"NSCopying\",\"NSManaged\",i(/objc\\(/,E,/\\)/),\"objc\",\"objcMembers\",\"propertyWrapper\",\"requires_stored_property_inits\",\"resultBuilder\",\"testable\",\"UIApplicationMain\",\"unknown\",\"usableFromInline\"],N=[\"iOS\",\"iOSApplicationExtension\",\"macOS\",\"macOSApplicationExtension\",\"macCatalyst\",\"macCatalystApplicationExtension\",\"watchOS\",\"watchOSApplicationExtension\",\"tvOS\",\"tvOSApplicationExtension\",\"swift\"];function C(e){const n={match:/\\s+/,relevance:0},a=e.COMMENT(\"/\\\\*\",\"\\\\*/\",{contains:[\"self\"]}),s=[e.C_LINE_COMMENT_MODE,a],h={match:[/\\./,u(...o,...r)],className:{2:\"keyword\"}},y={match:i(/\\./,u(...m)),relevance:0},C=m.filter(e=>\"string\"===typeof e).concat([\"_|0\"]),k=m.filter(e=>\"string\"!==typeof e).concat(l).map(c),D={variants:[{className:\"keyword\",match:u(...k,...r)}]},B={$pattern:u(/\\b\\w+/,/#\\w+/),keyword:C.concat(F),literal:p},_=[h,y,D],S={match:i(/\\./,u(...b)),relevance:0},M={className:\"built_in\",match:i(/\\b/,u(...b),/(?=\\()/)},x=[S,M],$={match:/->/,relevance:0},I={className:\"operator\",relevance:0,variants:[{match:w},{match:`\\\\.(\\\\.|${f})+`}]},O=[$,I],L=\"([0-9]_*)+\",T=\"([0-9a-fA-F]_*)+\",j={className:\"number\",relevance:0,variants:[{match:`\\\\b(${L})(\\\\.(${L}))?([eE][+-]?(${L}))?\\\\b`},{match:`\\\\b0x(${T})(\\\\.(${T}))?([pP][+-]?(${L}))?\\\\b`},{match:/\\b0o([0-7]_*)+\\b/},{match:/\\b0b([01]_*)+\\b/}]},P=(e=\"\")=>({className:\"subst\",variants:[{match:i(/\\\\/,e,/[0\\\\tnr\"']/)},{match:i(/\\\\/,e,/u\\{[0-9a-fA-F]{1,8}\\}/)}]}),K=(e=\"\")=>({className:\"subst\",match:i(/\\\\/,e,/[\\t ]*(?:[\\r\\n]|\\r\\n)/)}),z=(e=\"\")=>({className:\"subst\",label:\"interpol\",begin:i(/\\\\/,e,/\\(/),end:/\\)/}),q=(e=\"\")=>({begin:i(e,/\"\"\"/),end:i(/\"\"\"/,e),contains:[P(e),K(e),z(e)]}),U=(e=\"\")=>({begin:i(e,/\"/),end:i(/\"/,e),contains:[P(e),z(e)]}),Z={className:\"string\",variants:[q(),q(\"#\"),q(\"##\"),q(\"###\"),U(),U(\"#\"),U(\"##\"),U(\"###\")]},V={match:i(/`/,E,/`/)},W={className:\"variable\",match:/\\$\\d+/},G={className:\"variable\",match:`\\\\$${g}+`},J=[V,W,G],R={match:/(@|#)available/,className:\"keyword\",starts:{contains:[{begin:/\\(/,end:/\\)/,keywords:N,contains:[...O,j,Z]}]}},X={className:\"keyword\",match:i(/@/,u(...A))},H={className:\"meta\",match:i(/@/,E)},Q=[R,X,H],Y={match:t(/\\b[A-Z]/),relevance:0,contains:[{className:\"type\",match:i(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,g,\"+\")},{className:\"type\",match:v,relevance:0},{match:/[?!]+/,relevance:0},{match:/\\.\\.\\./,relevance:0},{match:i(/\\s+&\\s+/,t(v)),relevance:0}]},ee={begin:/</,end:/>/,keywords:B,contains:[...s,..._,...Q,$,Y]};Y.contains.push(ee);const ne={match:i(E,/\\s*:/),keywords:\"_|0\",relevance:0},ae={begin:/\\(/,end:/\\)/,relevance:0,keywords:B,contains:[\"self\",ne,...s,..._,...x,...O,j,Z,...J,...Q,Y]},te={begin:/</,end:/>/,contains:[...s,Y]},ie={begin:u(t(i(E,/\\s*:/)),t(i(E,/\\s+/,E,/\\s*:/))),end:/:/,relevance:0,contains:[{className:\"keyword\",match:/\\b_\\b/},{className:\"params\",match:E}]},se={begin:/\\(/,end:/\\)/,keywords:B,contains:[ie,...s,..._,...O,j,Z,...Q,Y,ae],endsParent:!0,illegal:/[\"']/},ue={match:[/func/,/\\s+/,u(V.match,E,w)],className:{1:\"keyword\",3:\"title.function\"},contains:[te,se,n],illegal:[/\\[/,/%/]},ce={match:[/\\b(?:subscript|init[?!]?)/,/\\s*(?=[<(])/],className:{1:\"keyword\"},contains:[te,se,n],illegal:/\\[|%/},oe={match:[/operator/,/\\s+/,w],className:{1:\"keyword\",3:\"title\"}},re={begin:[/precedencegroup/,/\\s+/,v],className:{1:\"keyword\",3:\"title\"},contains:[Y],keywords:[...d,...p],end:/}/};for(const t of Z.variants){const e=t.contains.find(e=>\"interpol\"===e.label);e.keywords=B;const n=[..._,...x,...O,j,Z,...J];e.contains=[...n,{begin:/\\(/,end:/\\)/,contains:[\"self\",...n]}]}return{name:\"Swift\",keywords:B,contains:[...s,ue,ce,{beginKeywords:\"struct protocol class extension enum actor\",end:\"\\\\{\",excludeEnd:!0,keywords:B,contains:[e.inherit(e.TITLE_MODE,{className:\"title.class\",begin:/[A-Za-z$_][\\u00C0-\\u02B80-9A-Za-z$_]*/}),..._]},oe,re,{beginKeywords:\"import\",end:/$/,contains:[...s],relevance:0},..._,...x,...O,j,Z,...J,...Q,Y,ae]}}e.exports=C}}]);"
  },
  {
    "path": "docs/js/highlight-js-xml.9c3688c7.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"highlight-js-xml\"],{\"8dcb\":function(e,n){function a(e){const n=e.regex,a=n.concat(/[A-Z_]/,n.optional(/[A-Z0-9_.-]*:/),/[A-Z0-9_.-]*/),s=/[A-Za-z0-9._:-]+/,t={className:\"symbol\",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},i={begin:/\\s/,contains:[{className:\"keyword\",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\\n/}]},c=e.inherit(i,{begin:/\\(/,end:/\\)/}),l=e.inherit(e.APOS_STRING_MODE,{className:\"string\"}),r=e.inherit(e.QUOTE_STRING_MODE,{className:\"string\"}),g={endsWithParent:!0,illegal:/</,relevance:0,contains:[{className:\"attr\",begin:s,relevance:0},{begin:/=\\s*/,relevance:0,contains:[{className:\"string\",endsParent:!0,variants:[{begin:/\"/,end:/\"/,contains:[t]},{begin:/'/,end:/'/,contains:[t]},{begin:/[^\\s\"'=<>`]+/}]}]}]};return{name:\"HTML, XML\",aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xjb\",\"xsd\",\"xsl\",\"plist\",\"wsf\",\"svg\"],case_insensitive:!0,contains:[{className:\"meta\",begin:/<![a-z]/,end:/>/,relevance:10,contains:[i,r,l,c,{begin:/\\[/,end:/\\]/,contains:[{className:\"meta\",begin:/<![a-z]/,end:/>/,contains:[i,c,r,l]}]}]},e.COMMENT(/<!--/,/-->/,{relevance:10}),{begin:/<!\\[CDATA\\[/,end:/\\]\\]>/,relevance:10},t,{className:\"meta\",begin:/<\\?xml/,end:/\\?>/,relevance:10},{className:\"tag\",begin:/<style(?=\\s|>)/,end:/>/,keywords:{name:\"style\"},contains:[g],starts:{end:/<\\/style>/,returnEnd:!0,subLanguage:[\"css\",\"xml\"]}},{className:\"tag\",begin:/<script(?=\\s|>)/,end:/>/,keywords:{name:\"script\"},contains:[g],starts:{end:/<\\/script>/,returnEnd:!0,subLanguage:[\"javascript\",\"handlebars\",\"xml\"]}},{className:\"tag\",begin:/<>|<\\/>/},{className:\"tag\",begin:n.concat(/</,n.lookahead(n.concat(a,n.either(/\\/>/,/>/,/\\s/)))),end:/\\/?>/,contains:[{className:\"name\",begin:a,relevance:0,starts:g}]},{className:\"tag\",begin:n.concat(/<\\//,n.lookahead(n.concat(a,/>/))),contains:[{className:\"name\",begin:a,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}}e.exports=a}}]);"
  },
  {
    "path": "docs/js/index.58e30ec4.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */(function(e){function t(t){for(var o,i,c=t[0],h=t[1],a=t[2],l=0,u=[];l<c.length;l++)i=c[l],Object.prototype.hasOwnProperty.call(r,i)&&r[i]&&u.push(r[i][0]),r[i]=0;for(o in h)Object.prototype.hasOwnProperty.call(h,o)&&(e[o]=h[o]);d&&d(t);while(u.length)u.shift()();return s.push.apply(s,a||[]),n()}function n(){for(var e,t=0;t<s.length;t++){for(var n=s[t],o=!0,i=1;i<n.length;i++){var c=n[i];0!==r[c]&&(o=!1)}o&&(s.splice(t--,1),e=h(h.s=n[0]))}return e}var o={},i={index:0},r={index:0},s=[];function c(e){return h.p+\"js/\"+({\"documentation-topic~topic~tutorials-overview\":\"documentation-topic~topic~tutorials-overview\",\"documentation-topic\":\"documentation-topic\",topic:\"topic\",\"tutorials-overview\":\"tutorials-overview\",\"highlight-js-bash\":\"highlight-js-bash\",\"highlight-js-c\":\"highlight-js-c\",\"highlight-js-cpp\":\"highlight-js-cpp\",\"highlight-js-css\":\"highlight-js-css\",\"highlight-js-custom-markdown\":\"highlight-js-custom-markdown\",\"highlight-js-custom-swift\":\"highlight-js-custom-swift\",\"highlight-js-diff\":\"highlight-js-diff\",\"highlight-js-http\":\"highlight-js-http\",\"highlight-js-java\":\"highlight-js-java\",\"highlight-js-javascript\":\"highlight-js-javascript\",\"highlight-js-json\":\"highlight-js-json\",\"highlight-js-llvm\":\"highlight-js-llvm\",\"highlight-js-markdown\":\"highlight-js-markdown\",\"highlight-js-objectivec\":\"highlight-js-objectivec\",\"highlight-js-perl\":\"highlight-js-perl\",\"highlight-js-php\":\"highlight-js-php\",\"highlight-js-python\":\"highlight-js-python\",\"highlight-js-ruby\":\"highlight-js-ruby\",\"highlight-js-scss\":\"highlight-js-scss\",\"highlight-js-shell\":\"highlight-js-shell\",\"highlight-js-swift\":\"highlight-js-swift\",\"highlight-js-xml\":\"highlight-js-xml\"}[e]||e)+\".\"+{\"documentation-topic~topic~tutorials-overview\":\"8e36e44f\",\"documentation-topic\":\"f62098b6\",topic:\"6a1c7b7f\",\"tutorials-overview\":\"c8178b83\",\"chunk-2d0d3105\":\"cd72cc8e\",\"highlight-js-bash\":\"1b52852f\",\"highlight-js-c\":\"d1db3f17\",\"highlight-js-cpp\":\"eaddddbe\",\"highlight-js-css\":\"75eab1fe\",\"highlight-js-custom-markdown\":\"7cffc4b3\",\"highlight-js-custom-swift\":\"5cda5c20\",\"highlight-js-diff\":\"62d66733\",\"highlight-js-http\":\"163e45b6\",\"highlight-js-java\":\"8326d9d8\",\"highlight-js-javascript\":\"acb8a8eb\",\"highlight-js-json\":\"471128d2\",\"highlight-js-llvm\":\"6100b125\",\"highlight-js-markdown\":\"90077643\",\"highlight-js-objectivec\":\"bcdf5156\",\"highlight-js-perl\":\"757d7b6f\",\"highlight-js-php\":\"cc8d6c27\",\"highlight-js-python\":\"c214ed92\",\"highlight-js-ruby\":\"f889d392\",\"highlight-js-scss\":\"62ee18da\",\"highlight-js-shell\":\"dd7f411f\",\"highlight-js-swift\":\"84f3e88c\",\"highlight-js-xml\":\"9c3688c7\"}[e]+\".js\"}function h(t){if(o[t])return o[t].exports;var n=o[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,h),n.l=!0,n.exports}h.e=function(e){var t=[],n={\"documentation-topic~topic~tutorials-overview\":1,\"documentation-topic\":1,topic:1,\"tutorials-overview\":1};i[e]?t.push(i[e]):0!==i[e]&&n[e]&&t.push(i[e]=new Promise((function(t,n){for(var o=\"css/\"+({\"documentation-topic~topic~tutorials-overview\":\"documentation-topic~topic~tutorials-overview\",\"documentation-topic\":\"documentation-topic\",topic:\"topic\",\"tutorials-overview\":\"tutorials-overview\",\"highlight-js-bash\":\"highlight-js-bash\",\"highlight-js-c\":\"highlight-js-c\",\"highlight-js-cpp\":\"highlight-js-cpp\",\"highlight-js-css\":\"highlight-js-css\",\"highlight-js-custom-markdown\":\"highlight-js-custom-markdown\",\"highlight-js-custom-swift\":\"highlight-js-custom-swift\",\"highlight-js-diff\":\"highlight-js-diff\",\"highlight-js-http\":\"highlight-js-http\",\"highlight-js-java\":\"highlight-js-java\",\"highlight-js-javascript\":\"highlight-js-javascript\",\"highlight-js-json\":\"highlight-js-json\",\"highlight-js-llvm\":\"highlight-js-llvm\",\"highlight-js-markdown\":\"highlight-js-markdown\",\"highlight-js-objectivec\":\"highlight-js-objectivec\",\"highlight-js-perl\":\"highlight-js-perl\",\"highlight-js-php\":\"highlight-js-php\",\"highlight-js-python\":\"highlight-js-python\",\"highlight-js-ruby\":\"highlight-js-ruby\",\"highlight-js-scss\":\"highlight-js-scss\",\"highlight-js-shell\":\"highlight-js-shell\",\"highlight-js-swift\":\"highlight-js-swift\",\"highlight-js-xml\":\"highlight-js-xml\"}[e]||e)+\".\"+{\"documentation-topic~topic~tutorials-overview\":\"82acfe22\",\"documentation-topic\":\"3bca6578\",topic:\"ee15af52\",\"tutorials-overview\":\"06e8bcf7\",\"chunk-2d0d3105\":\"31d6cfe0\",\"highlight-js-bash\":\"31d6cfe0\",\"highlight-js-c\":\"31d6cfe0\",\"highlight-js-cpp\":\"31d6cfe0\",\"highlight-js-css\":\"31d6cfe0\",\"highlight-js-custom-markdown\":\"31d6cfe0\",\"highlight-js-custom-swift\":\"31d6cfe0\",\"highlight-js-diff\":\"31d6cfe0\",\"highlight-js-http\":\"31d6cfe0\",\"highlight-js-java\":\"31d6cfe0\",\"highlight-js-javascript\":\"31d6cfe0\",\"highlight-js-json\":\"31d6cfe0\",\"highlight-js-llvm\":\"31d6cfe0\",\"highlight-js-markdown\":\"31d6cfe0\",\"highlight-js-objectivec\":\"31d6cfe0\",\"highlight-js-perl\":\"31d6cfe0\",\"highlight-js-php\":\"31d6cfe0\",\"highlight-js-python\":\"31d6cfe0\",\"highlight-js-ruby\":\"31d6cfe0\",\"highlight-js-scss\":\"31d6cfe0\",\"highlight-js-shell\":\"31d6cfe0\",\"highlight-js-swift\":\"31d6cfe0\",\"highlight-js-xml\":\"31d6cfe0\"}[e]+\".css\",r=h.p+o,s=document.getElementsByTagName(\"link\"),c=0;c<s.length;c++){var a=s[c],l=a.getAttribute(\"data-href\")||a.getAttribute(\"href\");if(\"stylesheet\"===a.rel&&(l===o||l===r))return t()}var u=document.getElementsByTagName(\"style\");for(c=0;c<u.length;c++){a=u[c],l=a.getAttribute(\"data-href\");if(l===o||l===r)return t()}var d=document.createElement(\"link\");d.rel=\"stylesheet\",d.type=\"text/css\",d.onload=t,d.onerror=function(t){var o=t&&t.target&&t.target.src||r,s=new Error(\"Loading CSS chunk \"+e+\" failed.\\n(\"+o+\")\");s.code=\"CSS_CHUNK_LOAD_FAILED\",s.request=o,delete i[e],d.parentNode.removeChild(d),n(s)},d.href=r;var g=document.getElementsByTagName(\"head\")[0];g.appendChild(d)})).then((function(){i[e]=0})));var o=r[e];if(0!==o)if(o)t.push(o[2]);else{var s=new Promise((function(t,n){o=r[e]=[t,n]}));t.push(o[2]=s);var a,l=document.createElement(\"script\");l.charset=\"utf-8\",l.timeout=120,h.nc&&l.setAttribute(\"nonce\",h.nc),l.src=c(e);var u=new Error;a=function(t){l.onerror=l.onload=null,clearTimeout(d);var n=r[e];if(0!==n){if(n){var o=t&&(\"load\"===t.type?\"missing\":t.type),i=t&&t.target&&t.target.src;u.message=\"Loading chunk \"+e+\" failed.\\n(\"+o+\": \"+i+\")\",u.name=\"ChunkLoadError\",u.type=o,u.request=i,n[1](u)}r[e]=void 0}};var d=setTimeout((function(){a({type:\"timeout\",target:l})}),12e4);l.onerror=l.onload=a,document.head.appendChild(l)}return Promise.all(t)},h.m=e,h.c=o,h.d=function(e,t,n){h.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},h.r=function(e){\"undefined\"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},h.t=function(e,t){if(1&t&&(e=h(e)),8&t)return e;if(4&t&&\"object\"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(h.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var o in e)h.d(n,o,function(t){return e[t]}.bind(null,o));return n},h.n=function(e){var t=e&&e.__esModule?function(){return e[\"default\"]}:function(){return e};return h.d(t,\"a\",t),t},h.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},h.p=\"{{BASE_PATH}}/\",h.oe=function(e){throw console.error(e),e};var a=window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[],l=a.push.bind(a);a.push=t,a=a.slice();for(var u=0;u<a.length;u++)t(a[u]);var d=l;s.push([0,\"chunk-vendors\"]),n()})({0:function(e,t,n){e.exports=n(\"f161\")},\"002d\":function(e,t,n){\"use strict\";n.d(t,\"a\",(function(){return s})),n.d(t,\"c\",(function(){return c})),n.d(t,\"g\",(function(){return l})),n.d(t,\"b\",(function(){return u})),n.d(t,\"d\",(function(){return d})),n.d(t,\"h\",(function(){return g})),n.d(t,\"f\",(function(){return f})),n.d(t,\"e\",(function(){return m}));n(\"e7a5\");const o=/(?:\\s+|[`\"<>])/g,i=/^-+/,r=/[\"'&<>]/g;function s(e){return e.trim().replace(o,\"-\").replace(i,\"\").toLowerCase()}function c(e){const t=e=>({'\"':\"&quot;\",\"'\":\"&apos;\",\"&\":\"&amp;\",\"<\":\"&lt;\",\">\":\"&gt;\"}[e]||e);return e.replace(r,t)}const h={zero:\"zero\",one:\"one\",two:\"two\",few:\"few\",many:\"many\",other:\"other\"},a={cardinal:\"cardinal\",ordinal:\"ordinal\"};function l(e,t){const{cardinal:n}=a,{one:o,other:i}=h,r=\"en\",s=1===t?o:i;if(!e[r]||!e[r][s])throw new Error(\"No default choices provided to pluralize using default locale \"+r);let c=r,l=s;if(\"Intl\"in window&&\"PluralRules\"in window.Intl){const o=navigator.languages?navigator.languages:[navigator.language],i=new Intl.PluralRules(o,{type:n}),r=i.select(t),s=i.resolvedOptions().locale;e[s]&&e[s][r]&&(c=s,l=r)}return e[c][l]}function u(e){return e.replace(/#(.*)/,(e,t)=>\"#\"+CSS.escape(t))}function d(e){return e.replace(/[.*+\\-?^${}()|[\\]\\\\]/g,\"\\\\$&\")}function g(e){let t,n;const o=\"\\\\s*\",i=\" \",r=e.trim(),s=r.length;if(!s)return i;const c=[];for(t=0;t<s;t+=1)n=r[t],\"\\\\\"===n?(c.push(`${0===t?\"\":o}${n}`),c.push(r[t+1]),t+=1):0===t?c.push(n):n!==i&&c.push(`${o}${n}`);return c.join(\"\")}function f(e,t,n=0){return`${e.slice(0,n)}${t}${e.slice(n)}`}function m(e){const t=e.split(/(?:\\r?\\n)+/);return t[0]}},\"2be1\":function(e,t,n){\"use strict\";n(\"9b4f\")},\"2de0\":function(e,t,n){\"use strict\";n(\"fb1e\")},3908:function(e,t,n){\"use strict\";function o(e){let t=null,n=e-1;const o=new Promise(e=>{t=e});return requestAnimationFrame((function e(){n-=1,n<=0?t():requestAnimationFrame(e)})),o}function i(e){return new Promise(t=>{setTimeout(t,e)})}n.d(t,\"b\",(function(){return o})),n.d(t,\"a\",(function(){return i}))},\"3e80\":function(e,t,n){\"use strict\";n(\"bb9e\")},\"48b1\":function(e,t,n){\"use strict\";n(\"e487\")},\"5c0b\":function(e,t,n){\"use strict\";n(\"9c0c\")},\"5d2d\":function(e,t,n){\"use strict\";n.d(t,\"a\",(function(){return s})),n.d(t,\"c\",(function(){return h})),n.d(t,\"b\",(function(){return a}));const o=\"developer.setting.\";function i(e=localStorage){return{getItem:t=>{try{return e.getItem(t)}catch(n){return null}},setItem:(t,n)=>{try{e.setItem(t,n)}catch(o){}},removeItem:t=>{try{e.removeItem(t)}catch(n){}}}}function r(e){return{get:(t,n)=>{const i=JSON.parse(e.getItem(o+t));return null!==i?i:n},set:(t,n)=>e.setItem(o+t,JSON.stringify(n)),remove:t=>e.removeItem(o+t)}}const s=i(window.localStorage),c=i(window.sessionStorage),h=r(s),a=r(c)},\"63b8\":function(e,t,n){\"use strict\";n.d(t,\"b\",(function(){return o})),n.d(t,\"c\",(function(){return i})),n.d(t,\"a\",(function(){return r})),n.d(t,\"d\",(function(){return c}));const o={large:\"large\",medium:\"medium\",small:\"small\"},i={default:\"default\",nav:\"nav\"},r={[i.default]:{[o.large]:{minWidth:1069,contentWidth:980},[o.medium]:{minWidth:736,maxWidth:1068,contentWidth:692},[o.small]:{minWidth:320,maxWidth:735,contentWidth:280}},[i.nav]:{[o.large]:{minWidth:1024},[o.medium]:{minWidth:768,maxWidth:1023},[o.small]:{minWidth:320,maxWidth:767}}},s={[o.small]:0,[o.medium]:1,[o.large]:2};function c(e,t){return s[e]>s[t]}},6842:function(e,t,n){\"use strict\";function o(e,t,n){let o,i=e,r=t;for(\"string\"===typeof r&&(r=[r]),o=0;o<r.length;o+=1){if(\"undefined\"===typeof i[r[o]])return n;i=i[r[o]]}return i}n.d(t,\"d\",(function(){return i})),n.d(t,\"a\",(function(){return r})),n.d(t,\"b\",(function(){return s})),n.d(t,\"c\",(function(){return c}));const i={meta:{},theme:{},features:{}},{baseUrl:r}=window;async function s(){const e=new URL(r+\"theme-settings.json\",window.location.href);return fetch(e.href).then(e=>e.json()).catch(()=>({}))}const c=(e,t)=>o(i,e,t)},7138:function(e,t,n){\"use strict\";n(\"813c\")},\"748c\":function(e,t,n){\"use strict\";n.d(t,\"d\",(function(){return i})),n.d(t,\"a\",(function(){return r})),n.d(t,\"c\",(function(){return s})),n.d(t,\"b\",(function(){return c}));var o=n(\"6842\");function i(e){return e.reduce((e,t)=>(t.traits.includes(\"dark\")?e.dark.push(t):e.light.push(t),e),{light:[],dark:[]})}function r(e){const t=[\"1x\",\"2x\",\"3x\"];return t.reduce((t,n)=>{const o=e.find(e=>e.traits.includes(n));return o?t.concat({density:n,src:o.url,size:o.size}):t},[])}function s(e){const t=\"/\",n=new RegExp(t+\"+\",\"g\");return e.join(t).replace(n,t)}function c(e){return e&&\"string\"===typeof e&&!e.startsWith(o[\"a\"])&&e.startsWith(\"/\")?s([o[\"a\"],e]):e}},\"813c\":function(e,t,n){},\"821b\":function(e,t,n){\"use strict\";t[\"a\"]={auto:{label:\"Auto\",value:\"auto\"},dark:{label:\"Dark\",value:\"dark\"},light:{label:\"Light\",value:\"light\"}}},\"942d\":function(e,t,n){\"use strict\";n.d(t,\"b\",(function(){return o})),n.d(t,\"c\",(function(){return i})),n.d(t,\"d\",(function(){return r})),n.d(t,\"a\",(function(){return s}));const o=52,i=48,r=\"nav-sticky-anchor\",s={noClose:\"noclose\"}},9895:function(e,t,n){\"use strict\";n.d(t,\"b\",(function(){return o})),n.d(t,\"a\",(function(){return i}));const o=\"not-found\",i=\"documentation-topic\"},\"9b4f\":function(e,t,n){},\"9c0c\":function(e,t,n){},bb9e:function(e,t,n){},d26a:function(e,t,n){\"use strict\";n.d(t,\"c\",(function(){return r})),n.d(t,\"b\",(function(){return s})),n.d(t,\"a\",(function(){return c})),n.d(t,\"d\",(function(){return h}));var o=n(\"748c\"),i={input:\"input\",tags:\"tags\"};function r(e={}){return Object.entries(e).reduce((e,[t,n])=>n?e.concat(`${encodeURIComponent(t)}=${encodeURIComponent(n)}`):e,[]).join(\"&\")}function s(e,{changes:t,language:n,context:o}={}){const[i,s]=e.split(\"#\"),c=i.match(/\\?.*/),h=r({changes:t,language:n,context:o}),a=c?\"&\":\"?\",l=s?i:e,u=h?`${a}${h}`:\"\",d=s?\"#\"+s:\"\";return`${l}${u}${d}`}function c(e,t){const{query:{changes:n,[i.input]:o,[i.tags]:r,...s}={}}=e,{query:{changes:c,[i.input]:h,[i.tags]:a,...l}={}}=t;return e.name===t.name&&JSON.stringify({path:e.path,query:s})===JSON.stringify({path:t.path,query:l})}function h(e,t=window.location.origin){return new URL(Object(o[\"b\"])(e),t).href}},d369:function(e,t,n){\"use strict\";var o=n(\"5d2d\");const i={preferredColorScheme:\"developer.setting.preferredColorScheme\",preferredLanguage:\"docs.setting.preferredLanguage\"},r={preferredColorScheme:\"docs.setting.preferredColorScheme\"};t[\"a\"]=Object.defineProperties({},Object.keys(i).reduce((e,t)=>({...e,[t]:{get:()=>{const e=r[t],n=o[\"a\"].getItem(i[t]);return e?n||o[\"a\"].getItem(e):n},set:e=>o[\"a\"].setItem(i[t],e)}}),{}))},e425:function(e,t,n){\"use strict\";var o=n(\"821b\"),i=n(\"d369\");const r=\"undefined\"!==typeof window.matchMedia&&[o[\"a\"].light.value,o[\"a\"].dark.value,\"no-preference\"].some(e=>window.matchMedia(`(prefers-color-scheme: ${e})`).matches),s=r?o[\"a\"].auto:o[\"a\"].light;t[\"a\"]={state:{preferredColorScheme:i[\"a\"].preferredColorScheme||s.value,supportsAutoColorScheme:r,systemColorScheme:o[\"a\"].light.value},setPreferredColorScheme(e){this.state.preferredColorScheme=e,i[\"a\"].preferredColorScheme=e},setSystemColorScheme(e){this.state.systemColorScheme=e},syncPreferredColorScheme(){i[\"a\"].preferredColorScheme&&i[\"a\"].preferredColorScheme!==this.state.preferredColorScheme&&(this.state.preferredColorScheme=i[\"a\"].preferredColorScheme)}}},e487:function(e,t,n){},ed96:function(e,t,n){n.p=window.baseUrl},f161:function(e,t,n){\"use strict\";n.r(t);n(\"ed96\");var o=n(\"2b0e\"),i=n(\"8c4f\"),r=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{class:{fromkeyboard:e.fromKeyboard,hascustomheader:e.hasCustomHeader},attrs:{id:\"app\"}},[n(\"a\",{attrs:{href:\"#main\",id:\"skip-nav\"}},[e._v(\"Skip Navigation\")]),n(\"InitialLoadingPlaceholder\"),e._t(\"header\",(function(){return[e.hasCustomHeader?n(\"custom-header\",{attrs:{\"data-color-scheme\":e.preferredColorScheme}}):e._e()]}),{isTargetIDE:e.isTargetIDE}),n(\"div\",{attrs:{id:e.baseNavStickyAnchorId}}),e._t(\"default\",(function(){return[n(\"router-view\"),e.hasCustomFooter?n(\"custom-footer\",{attrs:{\"data-color-scheme\":e.preferredColorScheme}}):e.isTargetIDE?e._e():n(\"Footer\")]}),{isTargetIDE:e.isTargetIDE}),e._t(\"footer\",null,{isTargetIDE:e.isTargetIDE})],2)},s=[],c=n(\"e425\"),h=n(\"821b\"),a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"footer\",{staticClass:\"footer\"},[n(\"div\",{staticClass:\"row\"},[n(\"ColorSchemeToggle\")],1)])},l=[],u=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"color-scheme-toggle\",attrs:{\"aria-label\":\"Select a color scheme preference\",role:\"radiogroup\",tabindex:\"0\"}},e._l(e.options,(function(t){return n(\"label\",{key:t.value},[n(\"input\",{attrs:{type:\"radio\"},domProps:{checked:t.value==e.preferredColorScheme,value:t.value},on:{input:e.setPreferredColorScheme}}),n(\"div\",{staticClass:\"text\"},[e._v(e._s(t.label))])])})),0)},d=[],g={name:\"ColorSchemeToggle\",data:()=>({appState:c[\"a\"].state}),computed:{options:({supportsAutoColorScheme:e})=>[h[\"a\"].light,h[\"a\"].dark,...e?[h[\"a\"].auto]:[]],preferredColorScheme:({appState:e})=>e.preferredColorScheme,supportsAutoColorScheme:({appState:e})=>e.supportsAutoColorScheme},methods:{setPreferredColorScheme:e=>{c[\"a\"].setPreferredColorScheme(e.target.value)}},watch:{preferredColorScheme:{immediate:!0,handler(e){document.body.dataset.colorScheme=e}}}},f=g,m=(n(\"2be1\"),n(\"2877\")),p=Object(m[\"a\"])(f,u,d,!1,null,\"4472ec1e\",null),j=p.exports,v={name:\"Footer\",components:{ColorSchemeToggle:j}},w=v,b=(n(\"2de0\"),Object(m[\"a\"])(w,a,l,!1,null,\"72f2e2dc\",null)),y=b.exports,S=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.loaded?e._e():n(\"div\",{staticClass:\"InitialLoadingPlaceholder\",attrs:{id:\"loading-placeholder\"}})},E=[],C={name:\"InitialLoadingPlaceholder\",data(){return{loaded:!1}},created(){const e=()=>{this.loaded=!0};this.$router.onReady(e,e)}},_=C,P=(n(\"48b1\"),Object(m[\"a\"])(_,S,E,!1,null,\"35c356b6\",null)),T=P.exports,k=n(\"942d\"),O=n(\"6842\");function A(e,t){return e&&\"object\"===typeof e&&Object.prototype.hasOwnProperty.call(e,t)&&\"string\"===typeof e[t]}function x(e,t,n,o){if(!t||\"object\"!==typeof t||o&&(A(t,\"light\")||A(t,\"dark\"))){let i=t;if(A(t,o)&&(i=t[o]),\"object\"===typeof i)return;n[e]=i}else Object.entries(t).forEach(([t,i])=>{const r=[e,t].join(\"-\");x(r,i,n,o)})}function I(e,t=\"light\"){const n={},o=e||{};return x(\"-\",o,n,t),n}var L={name:\"CoreApp\",components:{Footer:y,InitialLoadingPlaceholder:T},provide(){return{isTargetIDE:this.isTargetIDE,performanceMetricsEnabled:\"true\"===Object({NODE_ENV:\"production\",VUE_APP_TITLE:\"Documentation\",BASE_URL:\"{{BASE_PATH}}/\"}).VUE_APP_PERFORMANCE_ENABLED}},data(){return{appState:c[\"a\"].state,fromKeyboard:!1,isTargetIDE:\"ide\"===Object({NODE_ENV:\"production\",VUE_APP_TITLE:\"Documentation\",BASE_URL:\"{{BASE_PATH}}/\"}).VUE_APP_TARGET,themeSettings:O[\"d\"],baseNavStickyAnchorId:k[\"d\"]}},computed:{currentColorScheme:({appState:e})=>e.systemColorScheme,preferredColorScheme:({appState:e})=>e.preferredColorScheme,CSSCustomProperties:({themeSettings:e,currentColorScheme:t})=>I(e.theme,t),hasCustomHeader:()=>!!window.customElements.get(\"custom-header\"),hasCustomFooter:()=>!!window.customElements.get(\"custom-footer\")},props:{enableThemeSettings:{type:Boolean,default:!0}},watch:{CSSCustomProperties:{immediate:!0,handler(e){this.detachStylesFromRoot(e),this.attachStylesToRoot(e)}}},async created(){window.addEventListener(\"keydown\",this.onKeyDown),this.$bridge.on(\"navigation\",this.handleNavigationRequest),this.enableThemeSettings&&Object.assign(this.themeSettings,await Object(O[\"b\"])()),window.addEventListener(\"pageshow\",this.syncPreferredColorScheme),this.$once(\"hook:beforeDestroy\",()=>{window.removeEventListener(\"pageshow\",this.syncPreferredColorScheme)})},mounted(){(document.querySelector(\".footer-current-year\")||{}).innerText=(new Date).getFullYear(),this.attachColorSchemeListeners()},beforeDestroy(){this.fromKeyboard?window.removeEventListener(\"mousedown\",this.onMouseDown):window.removeEventListener(\"keydown\",this.onKeyDown),this.$bridge.off(\"navigation\",this.handleNavigationRequest),this.detachStylesFromRoot(this.CSSCustomProperties)},methods:{onKeyDown(){this.fromKeyboard=!0,window.addEventListener(\"mousedown\",this.onMouseDown),window.removeEventListener(\"keydown\",this.onKeyDown)},onMouseDown(){this.fromKeyboard=!1,window.addEventListener(\"keydown\",this.onKeyDown),window.removeEventListener(\"mousedown\",this.onMouseDown)},handleNavigationRequest(e){this.$router.push(e)},attachColorSchemeListeners(){if(!window.matchMedia)return;const e=window.matchMedia(\"(prefers-color-scheme: dark)\");e.addListener(this.onColorSchemePreferenceChange),this.$once(\"hook:beforeDestroy\",()=>{e.removeListener(this.onColorSchemePreferenceChange)}),this.onColorSchemePreferenceChange(e)},onColorSchemePreferenceChange({matches:e}){const t=e?h[\"a\"].dark:h[\"a\"].light;c[\"a\"].setSystemColorScheme(t.value)},attachStylesToRoot(e){const t=document.documentElement;Object.entries(e).filter(([,e])=>Boolean(e)).forEach(([e,n])=>{t.style.setProperty(e,n)})},detachStylesFromRoot(e){const t=document.documentElement;Object.entries(e).forEach(([e])=>{t.style.removeProperty(e)})},syncPreferredColorScheme(){c[\"a\"].syncPreferredColorScheme()}}},$=L,D=(n(\"5c0b\"),n(\"3e80\"),Object(m[\"a\"])($,r,s,!1,null,\"6f639c59\",null)),N=D.exports;class R{constructor(){this.$send=()=>{}}send(e){this.$send(e)}}class U{constructor(){const{webkit:{messageHandlers:{bridge:e={}}={}}={}}=window;this.bridge=e;const{postMessage:t=(()=>{})}=e;this.$send=t.bind(e)}send(e){this.$send(e)}}class M{constructor(e=new R){this.backend=e,this.listeners={}}send(e){this.backend.send(e)}receive(e){this.emit(e.type,e.data)}emit(e,t){this.listeners[e]&&this.listeners[e].forEach(e=>e(t))}on(e,t){this.listeners[e]||(this.listeners[e]=new Set),this.listeners[e].add(t)}off(e,t){this.listeners[e]&&this.listeners[e].delete(t)}}var B={install(e,t){let n;n=t.performanceMetricsEnabled||\"ide\"===t.appTarget?new U:new R,e.prototype.$bridge=new M(n)}};function W(e){return\"custom-\"+e}function V(e){return class extends HTMLElement{constructor(){super();const t=this.attachShadow({mode:\"open\"}),n=e.content.cloneNode(!0);t.appendChild(n)}}}function q(e){const t=W(e),n=document.getElementById(t);n&&window.customElements.define(t,V(n))}function F(e,t={names:[\"header\",\"footer\"]}){const{names:n}=t;e.config.ignoredElements=/^custom-/,n.forEach(q)}function H(e,t){const{value:n=!1}=t;e.style.display=n?\"none\":\"\"}var K={hide:H};function G(e,{performanceMetrics:t=!1}={}){e.config.productionTip=!1,e.use(F),e.directive(\"hide\",K.hide),e.use(B,{appTarget:Object({NODE_ENV:\"production\",VUE_APP_TITLE:\"Documentation\",BASE_URL:\"{{BASE_PATH}}/\"}).VUE_APP_TARGET,performanceMetricsEnabled:t}),window.bridge=e.prototype.$bridge,e.config.performance=t}var J=n(\"9895\"),z=n(\"63b8\"),Y=n(\"3908\"),X=n(\"002d\"),Q=n(\"d26a\");function Z(){const{location:e}=window;return e.pathname+e.search+e.hash}function ee(){const e=Math.max(document.documentElement.clientWidth||0,window.innerWidth||0);return e<z[\"a\"].nav.small.maxWidth?k[\"c\"]:k[\"b\"]}async function te(e,t,n){if(n)return await this.app.$nextTick(),n;if(e.hash){const{name:t,query:n,hash:o}=e,i=t.includes(J[\"a\"]),r=!!n.changes,s=ee(),c=i&&r?s:0,h=s+c,a=\"ide\"===Object({NODE_ENV:\"production\",VUE_APP_TITLE:\"Documentation\",BASE_URL:\"{{BASE_PATH}}/\"}).VUE_APP_TARGET?0:h;return{selector:Object(X[\"b\"])(o),offset:{x:0,y:a}}}return!Object(Q[\"a\"])(e,t)&&{x:0,y:0}}async function ne(){let e=window.sessionStorage.getItem(\"scrollPosition\");if(e){try{e=JSON.parse(e)}catch(t){return void console.error(\"Error parsing scrollPosition from sessionStorage\",t)}Z()===e.location&&(await Object(Y[\"b\"])(2),window.scrollTo(e.x,e.y))}}function oe(){window.location.hash||sessionStorage.setItem(\"scrollPosition\",JSON.stringify({x:window.pageXOffset,y:window.pageYOffset,location:Z()}))}var ie=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"GenericError\")},re=[],se=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"generic-error\"},[n(\"div\",{staticClass:\"container\"},[n(\"h1\",{staticClass:\"title error-content\"},[e._v(e._s(e.message))]),e._t(\"default\")],2)])},ce=[],he={name:\"GenericError\",props:{message:{type:String,default:\"An unknown error occurred.\"}}},ae=he,le=(n(\"7138\"),Object(m[\"a\"])(ae,se,ce,!1,null,\"790053de\",null)),ue=le.exports,de={name:\"ServerError\",components:{GenericError:ue}},ge=de,fe=Object(m[\"a\"])(ge,ie,re,!1,null,null,null),me=fe.exports,pe=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"GenericError\",{attrs:{message:\"The page you’re looking for can’t be found.\"}},[e._t(\"default\")],2)},je=[],ve={name:\"NotFound\",components:{GenericError:ue}},we=ve,be=Object(m[\"a\"])(we,pe,je,!1,null,null,null),ye=be.exports,Se=[{path:\"/tutorials/:id\",name:\"tutorials-overview\",component:()=>Promise.all([n.e(\"documentation-topic~topic~tutorials-overview\"),n.e(\"tutorials-overview\")]).then(n.bind(null,\"f025\"))},{path:\"/tutorials/:id/*\",name:\"topic\",component:()=>Promise.all([n.e(\"documentation-topic~topic~tutorials-overview\"),n.e(\"topic\")]).then(n.bind(null,\"3213\"))},{path:\"/documentation/*\",name:J[\"a\"],component:()=>Promise.all([n.e(\"documentation-topic~topic~tutorials-overview\"),n.e(\"documentation-topic\")]).then(n.bind(null,\"f8ac\"))},{path:\"*\",name:J[\"b\"],component:ye},{path:\"*\",name:\"server-error\",component:me}];function Ee(e={}){const t=new i[\"a\"]({mode:\"history\",base:O[\"a\"],scrollBehavior:te,...e,routes:e.routes||Se});return t.onReady(()=>{\"scrollRestoration\"in window.history&&(window.history.scrollRestoration=\"manual\"),ne()}),\"ide\"!==Object({NODE_ENV:\"production\",VUE_APP_TITLE:\"Documentation\",BASE_URL:\"{{BASE_PATH}}/\"}).VUE_APP_TARGET&&t.onError(e=>{const{route:n={path:\"/\"}}=e;t.replace({name:\"server-error\",params:[n.path]})}),window.addEventListener(\"unload\",oe),t}o[\"default\"].use(G),o[\"default\"].use(i[\"a\"]),new o[\"default\"]({router:Ee(),render:e=>e(N)}).$mount(\"#app\")},fb1e:function(e,t,n){}});"
  },
  {
    "path": "docs/js/topic.6a1c7b7f.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"topic\"],{\"00f4\":function(e,t,n){\"use strict\";n(\"282f\")},\"0466\":function(e,t,n){},\"0530\":function(e,t,n){\"use strict\";n(\"dbeb\")},\"0b61\":function(e,t,n){},1006:function(e,t,n){\"use strict\";n(\"a95e\")},\"14b7\":function(e,t,n){},\"1a91\":function(e,t,n){\"use strict\";n(\"db87\")},\"1aae\":function(e,t,n){},\"1dd5\":function(e,t,n){\"use strict\";n(\"7b17\")},\"282f\":function(e,t,n){},\"2b86\":function(e,t,n){},\"2b88\":function(e,t,n){\"use strict\";\n/*! \n  * portal-vue © Thorsten Lünborg, 2019 \n  * \n  * Version: 2.1.7\n  * \n  * LICENCE: MIT \n  * \n  * https://github.com/linusborg/portal-vue\n  * \n */function s(e){return e&&\"object\"===typeof e&&\"default\"in e?e[\"default\"]:e}Object.defineProperty(t,\"__esModule\",{value:!0});var i=s(n(\"2b0e\"));function r(e){return r=\"function\"===typeof Symbol&&\"symbol\"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},r(e)}function o(e){return a(e)||l(e)||c()}function a(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t<e.length;t++)n[t]=e[t];return n}}function l(e){if(Symbol.iterator in Object(e)||\"[object Arguments]\"===Object.prototype.toString.call(e))return Array.from(e)}function c(){throw new TypeError(\"Invalid attempt to spread non-iterable instance\")}var u=\"undefined\"!==typeof window;function d(e){return Array.isArray(e)||\"object\"===r(e)?Object.freeze(e):e}function p(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return e.reduce((function(e,n){var s=n.passengers[0],i=\"function\"===typeof s?s(t):n.passengers;return e.concat(i)}),[])}function h(e,t){return e.map((function(e,t){return[t,e]})).sort((function(e,n){return t(e[1],n[1])||e[0]-n[0]})).map((function(e){return e[1]}))}function m(e,t){return t.reduce((function(t,n){return e.hasOwnProperty(n)&&(t[n]=e[n]),t}),{})}var f={},v={},g={},y=i.extend({data:function(){return{transports:f,targets:v,sources:g,trackInstances:u}},methods:{open:function(e){if(u){var t=e.to,n=e.from,s=e.passengers,r=e.order,o=void 0===r?1/0:r;if(t&&n&&s){var a={to:t,from:n,passengers:d(s),order:o},l=Object.keys(this.transports);-1===l.indexOf(t)&&i.set(this.transports,t,[]);var c=this.$_getTransportIndex(a),p=this.transports[t].slice(0);-1===c?p.push(a):p[c]=a,this.transports[t]=h(p,(function(e,t){return e.order-t.order}))}}},close:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=e.to,s=e.from;if(n&&(s||!1!==t)&&this.transports[n])if(t)this.transports[n]=[];else{var i=this.$_getTransportIndex(e);if(i>=0){var r=this.transports[n].slice(0);r.splice(i,1),this.transports[n]=r}}},registerTarget:function(e,t,n){u&&(this.trackInstances&&!n&&this.targets[e]&&console.warn(\"[portal-vue]: Target \".concat(e,\" already exists\")),this.$set(this.targets,e,Object.freeze([t])))},unregisterTarget:function(e){this.$delete(this.targets,e)},registerSource:function(e,t,n){u&&(this.trackInstances&&!n&&this.sources[e]&&console.warn(\"[portal-vue]: source \".concat(e,\" already exists\")),this.$set(this.sources,e,Object.freeze([t])))},unregisterSource:function(e){this.$delete(this.sources,e)},hasTarget:function(e){return!(!this.targets[e]||!this.targets[e][0])},hasSource:function(e){return!(!this.sources[e]||!this.sources[e][0])},hasContentFor:function(e){return!!this.transports[e]&&!!this.transports[e].length},$_getTransportIndex:function(e){var t=e.to,n=e.from;for(var s in this.transports[t])if(this.transports[t][s].from===n)return+s;return-1}}}),b=new y(f),C=1,w=i.extend({name:\"portal\",props:{disabled:{type:Boolean},name:{type:String,default:function(){return String(C++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:\"DIV\"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}}},created:function(){var e=this;this.$nextTick((function(){b.registerSource(e.name,e)}))},mounted:function(){this.disabled||this.sendUpdate()},updated:function(){this.disabled?this.clear():this.sendUpdate()},beforeDestroy:function(){b.unregisterSource(this.name),this.clear()},watch:{to:function(e,t){t&&t!==e&&this.clear(t),this.sendUpdate()}},methods:{clear:function(e){var t={from:this.name,to:e||this.to};b.close(t)},normalizeSlots:function(){return this.$scopedSlots.default?[this.$scopedSlots.default]:this.$slots.default},normalizeOwnChildren:function(e){return\"function\"===typeof e?e(this.slotProps):e},sendUpdate:function(){var e=this.normalizeSlots();if(e){var t={from:this.name,to:this.to,passengers:o(e),order:this.order};b.open(t)}else this.clear()}},render:function(e){var t=this.$slots.default||this.$scopedSlots.default||[],n=this.tag;return t&&this.disabled?t.length<=1&&this.slim?this.normalizeOwnChildren(t)[0]:e(n,[this.normalizeOwnChildren(t)]):this.slim?e():e(n,{class:{\"v-portal\":!0},style:{display:\"none\"},key:\"v-portal-placeholder\"})}}),_=i.extend({name:\"portalTarget\",props:{multiple:{type:Boolean,default:!1},name:{type:String,required:!0},slim:{type:Boolean,default:!1},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:\"div\"},transition:{type:[String,Object,Function]}},data:function(){return{transports:b.transports,firstRender:!0}},created:function(){var e=this;this.$nextTick((function(){b.registerTarget(e.name,e)}))},watch:{ownTransports:function(){this.$emit(\"change\",this.children().length>0)},name:function(e,t){b.unregisterTarget(t),b.registerTarget(e,this)}},mounted:function(){var e=this;this.transition&&this.$nextTick((function(){e.firstRender=!1}))},beforeDestroy:function(){b.unregisterTarget(this.name)},computed:{ownTransports:function(){var e=this.transports[this.name]||[];return this.multiple?e:0===e.length?[]:[e[e.length-1]]},passengers:function(){return p(this.ownTransports,this.slotProps)}},methods:{children:function(){return 0!==this.passengers.length?this.passengers:this.$scopedSlots.default?this.$scopedSlots.default(this.slotProps):this.$slots.default||[]},noWrapper:function(){var e=this.slim&&!this.transition;return e&&this.children().length>1&&console.warn(\"[portal-vue]: PortalTarget with `slim` option received more than one child element.\"),e}},render:function(e){var t=this.noWrapper(),n=this.children(),s=this.transition||this.tag;return t?n[0]:this.slim&&!s?e():e(s,{props:{tag:this.transition&&this.tag?this.tag:void 0},class:{\"vue-portal-target\":!0}},n)}}),S=0,k=[\"disabled\",\"name\",\"order\",\"slim\",\"slotProps\",\"tag\",\"to\"],x=[\"multiple\",\"transition\"],T=i.extend({name:\"MountingPortal\",inheritAttrs:!1,props:{append:{type:[Boolean,String]},bail:{type:Boolean},mountTo:{type:String,required:!0},disabled:{type:Boolean},name:{type:String,default:function(){return\"mounted_\"+String(S++)}},order:{type:Number,default:0},slim:{type:Boolean},slotProps:{type:Object,default:function(){return{}}},tag:{type:String,default:\"DIV\"},to:{type:String,default:function(){return String(Math.round(1e7*Math.random()))}},multiple:{type:Boolean,default:!1},targetSlim:{type:Boolean},targetSlotProps:{type:Object,default:function(){return{}}},targetTag:{type:String,default:\"div\"},transition:{type:[String,Object,Function]}},created:function(){if(\"undefined\"!==typeof document){var e=document.querySelector(this.mountTo);if(e){var t=this.$props;if(b.targets[t.name])t.bail?console.warn(\"[portal-vue]: Target \".concat(t.name,\" is already mounted.\\n        Aborting because 'bail: true' is set\")):this.portalTarget=b.targets[t.name];else{var n=t.append;if(n){var s=\"string\"===typeof n?n:\"DIV\",i=document.createElement(s);e.appendChild(i),e=i}var r=m(this.$props,x);r.slim=this.targetSlim,r.tag=this.targetTag,r.slotProps=this.targetSlotProps,r.name=this.to,this.portalTarget=new _({el:e,parent:this.$parent||this,propsData:r})}}else console.error(\"[portal-vue]: Mount Point '\".concat(this.mountTo,\"' not found in document\"))}},beforeDestroy:function(){var e=this.portalTarget;if(this.append){var t=e.$el;t.parentNode.removeChild(t)}e.$destroy()},render:function(e){if(!this.portalTarget)return console.warn(\"[portal-vue] Target wasn't mounted\"),e();if(!this.$scopedSlots.manual){var t=m(this.$props,k);return e(w,{props:t,attrs:this.$attrs,on:this.$listeners,scopedSlots:this.$scopedSlots},this.$slots.default)}var n=this.$scopedSlots.manual({to:this.to});return Array.isArray(n)&&(n=n[0]),n||e()}});function A(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};e.component(t.portalName||\"Portal\",w),e.component(t.portalTargetName||\"PortalTarget\",_),e.component(t.MountingPortalName||\"MountingPortal\",T)}var I={install:A};t.default=I,t.Portal=w,t.PortalTarget=_,t.MountingPortal=T,t.Wormhole=b},\"2f9d\":function(e,t,n){\"use strict\";n(\"525c\")},\"311e\":function(e,t,n){},3213:function(e,t,n){\"use strict\";n.r(t);var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",[e.topicData?n(e.componentFor(e.topicData),e._b({key:e.topicKey,tag:\"component\",attrs:{hierarchy:e.hierarchy}},\"component\",e.propsFor(e.topicData),!1)):e._e()],1)},i=[],r=n(\"25a9\"),o=n(\"a97e\");const{BreakpointName:a}=o[\"a\"].constants;var l,c,u={state:{linkableSections:[],breakpoint:a.large},addLinkableSection(e){const t={...e,visibility:0};t.sectionNumber=this.state.linkableSections.length,this.state.linkableSections.push(t)},reset(){this.state.linkableSections=[],this.state.breakpoint=a.large},updateLinkableSection(e){this.state.linkableSections=this.state.linkableSections.map(t=>e.anchor===t.anchor?{...t,visibility:e.visibility}:t)},updateBreakpoint(e){this.state.breakpoint=e}},d=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"article\"},[e.isTargetIDE?e._e():n(\"NavigationBar\",{attrs:{chapters:e.hierarchy.modules,technology:e.metadata.category,topic:e.heroTitle||\"\",rootReference:e.hierarchy.reference,identifierUrl:e.identifierUrl}}),n(\"main\",{attrs:{id:\"main\",role:\"main\",tabindex:\"0\"}},[e._t(\"above-hero\"),e._l(e.sections,(function(t,s){return n(e.componentFor(t),e._b({key:s,tag:\"component\"},\"component\",e.propsFor(t),!1))}))],2),n(\"PortalTarget\",{attrs:{name:\"modal-destination\",multiple:\"\"}})],1)},p=[],h=n(\"2b88\"),m=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"NavBase\",{attrs:{id:\"nav\",\"aria-label\":e.technology,hasSolidBackground:\"\"}},[n(\"template\",{slot:\"default\"},[n(\"ReferenceUrlProvider\",{attrs:{reference:e.rootReference},scopedSlots:e._u([{key:\"default\",fn:function(t){var s=t.urlWithParams;return n(\"NavTitleContainer\",{attrs:{to:s}},[n(\"template\",{slot:\"default\"},[e._v(e._s(e.technology))]),n(\"template\",{slot:\"subhead\"},[e._v(\"Tutorials\")])],2)}}])})],1),n(\"template\",{slot:\"after-title\"},[n(\"div\",{staticClass:\"separator\"})]),n(\"template\",{slot:\"tray\"},[n(\"div\",{staticClass:\"mobile-dropdown-container\"},[n(\"MobileDropdown\",{attrs:{options:e.chapters,sections:e.optionsForSections,currentOption:e.currentSection?e.currentSection.title:\"\"},on:{\"select-section\":e.onSelectSection}})],1),n(\"div\",{staticClass:\"dropdown-container\"},[n(\"PrimaryDropdown\",{staticClass:\"primary-dropdown\",attrs:{options:e.chapters,currentOption:e.topic}}),n(\"ChevronIcon\",{staticClass:\"icon-inline\"}),e.currentSection?n(\"SecondaryDropdown\",{staticClass:\"secondary-dropdown\",attrs:{options:e.optionsForSections,currentOption:e.currentSection.title,sectionTracker:e.sectionIndicatorText},on:{\"select-section\":e.onSelectSection}}):e._e()],1),e._t(\"tray\",null,{siblings:e.chapters.length+e.optionsForSections.length})],2)],2)},f=[],v=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"chevron-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M3.22 1.184l0.325-0.38 7.235 6.201-7.235 6.19-0.325-0.38 6.792-5.811-6.792-5.82z\"}})])},g=[],y=n(\"be08\"),b={name:\"ChevronIcon\",components:{SVGIcon:y[\"a\"]}},C=b,w=n(\"2877\"),_=Object(w[\"a\"])(C,v,g,!1,null,null,null),S=_.exports,k=n(\"d26a\"),x={name:\"ReferenceUrlProvider\",inject:{references:{default:()=>({})}},props:{reference:{type:String,required:!0}},computed:{resolvedReference:({references:e,reference:t})=>e[t]||{},url:({resolvedReference:e})=>e.url,title:({resolvedReference:e})=>e.title},render(){return this.$scopedSlots.default({url:this.url,urlWithParams:Object(k[\"b\"])(this.url,this.$route.query),title:this.title,reference:this.resolvedReference})}},T=x,A=Object(w[\"a\"])(T,l,c,!1,null,null,null),I=A.exports,$=n(\"8a61\"),O=n(\"cbcf\"),P=n(\"653a\"),j=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"NavMenuItems\",{staticClass:\"mobile-dropdown\"},e._l(e.options,(function(t){return n(\"ReferenceUrlProvider\",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:\"default\",fn:function(s){var i=s.title;return n(\"NavMenuItemBase\",{staticClass:\"chapter-list\",attrs:{role:\"group\"}},[n(\"p\",{staticClass:\"chapter-name\"},[e._v(e._s(i))]),n(\"ul\",{staticClass:\"tutorial-list\"},e._l(t.projects,(function(t){return n(\"ReferenceUrlProvider\",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:\"default\",fn:function(t){var s=t.url,i=t.urlWithParams,r=t.title;return n(\"li\",{staticClass:\"tutorial-list-item\"},[n(\"router-link\",{staticClass:\"option tutorial\",attrs:{to:i,value:r}},[e._v(\" \"+e._s(r)+\" \")]),s===e.$route.path?n(\"ul\",{staticClass:\"section-list\",attrs:{role:\"listbox\"}},e._l(e.sections,(function(t){return n(\"li\",{key:t.title},[n(\"router-link\",{class:e.classesFor(t),attrs:{to:{path:t.path,query:e.$route.query},value:t.title},nativeOn:{click:function(n){return e.onClick(t)}}},[e._v(\" \"+e._s(t.title)+\" \")])],1)})),0):e._e()],1)}}],null,!0)})})),1)])}}],null,!0)})})),1)},N=[],D=n(\"863d\"),B=n(\"9b30\"),M={name:\"MobileDropdown\",components:{NavMenuItems:B[\"a\"],NavMenuItemBase:D[\"a\"],ReferenceUrlProvider:I},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0},sections:{type:Array,required:!1,default:()=>[]}},methods:{classesFor(e){return[\"option\",\"section\",{active:this.currentOption===e.title},this.depthClass(e)]},depthClass(e){const{depth:t=0}=e;return\"depth\"+t},onClick(e){this.$emit(\"select-section\",e.path)}}},q=M,R=(n(\"e688\"),Object(w[\"a\"])(q,j,N,!1,null,\"154acfbd\",null)),E=R.exports,V=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"DropdownCustom\",{staticClass:\"tutorial-dropdown\",attrs:{value:e.currentOption,\"aria-label\":\"Current section\",isSmall:\"\"},scopedSlots:e._u([{key:\"default\",fn:function(t){var s=t.closeAndFocusToggler,i=t.contentClasses,r=t.navigateOverOptions,o=t.OptionClass,a=t.ActiveOptionClass;return[n(\"ul\",{staticClass:\"options\",class:i,attrs:{role:\"listbox\",tabindex:\"0\"}},e._l(e.options,(function(t){return n(\"router-link\",{key:t.title,attrs:{to:{path:t.path,query:e.$route.query},custom:\"\"},scopedSlots:e._u([{key:\"default\",fn:function(i){var l,c=i.navigate;return[n(\"li\",{class:[o,(l={},l[a]=e.currentOption===t.title,l)],attrs:{role:\"option\",value:t.title,\"aria-selected\":e.currentOption===t.title,\"aria-current\":e.ariaCurrent(t.title),tabindex:-1},on:{click:function(n){return e.setActive(t,c,s,n)},keydown:[function(n){return!n.type.indexOf(\"key\")&&e._k(n.keyCode,\"enter\",13,n.key,\"Enter\")?null:e.setActive(t,c,s,n)},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"esc\",27,t.key,[\"Esc\",\"Escape\"])?null:s.apply(null,arguments)},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"tab\",9,t.key,\"Tab\")?null:s.apply(null,arguments)},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"])?null:(t.preventDefault(),r(t,1))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"])?null:(t.preventDefault(),r(t,-1))}]}},[e._v(\" \"+e._s(t.title)+\" \")])]}}],null,!0)})})),1)]}}])},[n(\"template\",{slot:\"toggle-post-content\"},[n(\"span\",{staticClass:\"section-tracker\"},[e._v(e._s(e.sectionTracker))])])],2)},L=[],F=function(){var e,t=this,n=t.$createElement,s=t._self._c||n;return s(\"BaseDropdown\",{staticClass:\"dropdown-custom\",class:(e={},e[t.OpenedClass]=t.isOpen,e[\"dropdown-small\"]=t.isSmall,e),attrs:{value:t.value},scopedSlots:t._u([{key:\"dropdown\",fn:function(e){var n=e.dropdownClasses;return[s(\"span\",{staticClass:\"visuallyhidden\",attrs:{id:\"DropdownLabel_\"+t._uid}},[t._v(t._s(t.ariaLabel))]),s(\"button\",{ref:\"dropdownToggle\",staticClass:\"form-dropdown-toggle\",class:n,attrs:{role:\"button\",id:\"DropdownToggle_\"+t._uid,\"aria-labelledby\":\"DropdownLabel_\"+t._uid+\" DropdownToggle_\"+t._uid,\"aria-expanded\":t.isOpen?\"true\":\"false\",\"aria-haspopup\":\"true\"},on:{click:t.toggleDropdown,keydown:[function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))},function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"esc\",27,e.key,[\"Esc\",\"Escape\"])?null:t.closeAndFocusToggler.apply(null,arguments)},function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"down\",40,e.key,[\"Down\",\"ArrowDown\"])?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))},function(e){return!e.type.indexOf(\"key\")&&t._k(e.keyCode,\"up\",38,e.key,[\"Up\",\"ArrowUp\"])?null:(e.preventDefault(),t.openDropdown.apply(null,arguments))}]}},[s(\"span\",{staticClass:\"form-dropdown-title\"},[t._v(t._s(t.value))]),t._t(\"toggle-post-content\")],2)]}}],null,!0)},[s(\"template\",{slot:\"eyebrow\"},[t._t(\"eyebrow\")],2),s(\"template\",{slot:\"after\"},[t._t(\"default\",null,null,{value:t.value,isOpen:t.isOpen,contentClasses:[\"form-dropdown-content\",{\"is-open\":t.isOpen}],closeDropdown:t.closeDropdown,onChangeAction:t.onChangeAction,closeAndFocusToggler:t.closeAndFocusToggler,navigateOverOptions:t.navigateOverOptions,OptionClass:t.OptionClass,ActiveOptionClass:t.ActiveOptionClass})],2)],2)},z=[],U=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"form-element\"},[e._t(\"dropdown\",(function(){return[n(\"select\",e._b({directives:[{name:\"model\",rawName:\"v-model\",value:e.modelValue,expression:\"modelValue\"}],class:e.dropdownClasses,on:{change:function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){var t=\"_value\"in e?e._value:e.value;return t}));e.modelValue=t.target.multiple?n:n[0]}}},\"select\",e.$attrs,!1),[e._t(\"default\")],2)]}),{dropdownClasses:e.dropdownClasses,value:e.value}),n(\"InlineChevronDownIcon\",{staticClass:\"form-icon\",attrs:{\"aria-hidden\":\"true\"}}),e.$slots.eyebrow?n(\"span\",{staticClass:\"form-label\",attrs:{\"aria-hidden\":\"true\"}},[e._t(\"eyebrow\")],2):e._e(),e._t(\"after\")],2)},H=[],G=n(\"7948\"),W={name:\"BaseDropdown\",inheritAttrs:!1,props:{value:{type:String,default:\"\"}},components:{InlineChevronDownIcon:G[\"a\"]},computed:{modelValue:{get:({value:e})=>e,set(e){this.$emit(\"input\",e)}},dropdownClasses({value:e}){return[\"form-dropdown\",{\"form-dropdown-selectnone\":\"\"===e,\"no-eyebrow\":!this.$slots.eyebrow}]}}},Q=W,K=(n(\"ed71\"),Object(w[\"a\"])(Q,U,H,!1,null,\"998803d8\",null)),X=K.exports;const J=\"is-open\",Y=\"option\",Z=\"option-active\";var ee={name:\"DropdownCustom\",components:{BaseDropdown:X},constants:{OpenedClass:J,OptionClass:Y,ActiveOptionClass:Z},props:{value:{type:String,default:\"\"},ariaLabel:{type:String,default:\"\"},isSmall:{type:Boolean,default:!1}},data(){return{isOpen:!1,OpenedClass:J,OptionClass:Y,ActiveOptionClass:Z}},mounted(){document.addEventListener(\"click\",this.closeOnLoseFocus)},beforeDestroy(){document.removeEventListener(\"click\",this.closeOnLoseFocus)},methods:{onChangeAction(e){this.$emit(\"input\",e)},toggleDropdown(){this.isOpen?this.closeDropdown():this.openDropdown()},async closeAndFocusToggler(){this.closeDropdown(),await this.$nextTick(),this.$refs.dropdownToggle.focus({preventScroll:!0})},closeDropdown(){this.isOpen=!1,this.$emit(\"close\")},openDropdown(){this.isOpen=!0,this.$emit(\"open\"),this.focusActiveLink()},closeOnLoseFocus(e){!this.$el.contains(e.target)&&this.isOpen&&this.closeDropdown()},navigateOverOptions({target:e},t){const n=this.$el.querySelectorAll(\".\"+Y),s=Array.from(n),i=s.indexOf(e),r=s[i+t];r&&r.focus({preventScroll:!0})},async focusActiveLink(){const e=this.$el.querySelector(\".\"+Z);e&&(await this.$nextTick(),e.focus({preventScroll:!0}))}}},te=ee,ne=(n(\"e84c\"),Object(w[\"a\"])(te,F,z,!1,null,\"12dd746a\",null)),se=ne.exports,ie={name:\"SecondaryDropdown\",components:{DropdownCustom:se},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0},sectionTracker:{type:String,required:!1}},methods:{ariaCurrent(e){return this.currentOption===e&&\"section\"},setActive(e,t,n,s){t(s),this.$emit(\"select-section\",e.path),n()}}},re=ie,oe=(n(\"5952\"),Object(w[\"a\"])(re,V,L,!1,null,\"4a151342\",null)),ae=oe.exports,le=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"DropdownCustom\",{staticClass:\"tutorial-dropdown\",attrs:{value:e.currentOption,\"aria-label\":\"Current tutorial\",isSmall:\"\"},scopedSlots:e._u([{key:\"default\",fn:function(t){var s=t.closeAndFocusToggler,i=t.contentClasses,r=t.closeDropdown,o=t.navigateOverOptions,a=t.OptionClass,l=t.ActiveOptionClass;return[n(\"ul\",{staticClass:\"options\",class:i,attrs:{tabindex:\"0\"}},e._l(e.options,(function(t){return n(\"ReferenceUrlProvider\",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:\"default\",fn:function(i){var c=i.title;return n(\"li\",{staticClass:\"chapter-list\",attrs:{role:\"group\"}},[n(\"p\",{staticClass:\"chapter-name\"},[e._v(e._s(c))]),n(\"ul\",{attrs:{role:\"listbox\"}},e._l(t.projects,(function(t){return n(\"ReferenceUrlProvider\",{key:t.reference,attrs:{reference:t.reference},scopedSlots:e._u([{key:\"default\",fn:function(t){var i=t.urlWithParams,c=t.title;return[n(\"router-link\",{attrs:{to:i,custom:\"\"},scopedSlots:e._u([{key:\"default\",fn:function(t){var i,u=t.navigate,d=t.isActive;return[n(\"li\",{class:(i={},i[a]=!0,i[l]=d,i),attrs:{role:\"option\",value:c,\"aria-selected\":d,\"aria-current\":!!d&&\"tutorial\",tabindex:-1},on:{click:function(t){return e.setActive(u,r,t)},keydown:[function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"enter\",13,t.key,\"Enter\")?null:e.setActive(u,r,t)},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"esc\",27,t.key,[\"Esc\",\"Escape\"])?null:s.apply(null,arguments)},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"tab\",9,t.key,\"Tab\")?null:s.apply(null,arguments)},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"down\",40,t.key,[\"Down\",\"ArrowDown\"])?null:(t.preventDefault(),o(t,1))},function(t){return!t.type.indexOf(\"key\")&&e._k(t.keyCode,\"up\",38,t.key,[\"Up\",\"ArrowUp\"])?null:(t.preventDefault(),o(t,-1))}]}},[e._v(\" \"+e._s(c)+\" \")])]}}],null,!0)})]}}],null,!0)})})),1)])}}],null,!0)})})),1)]}}])})},ce=[],ue={name:\"PrimaryDropdown\",components:{DropdownCustom:se,ReferenceUrlProvider:I},props:{options:{type:Array,required:!0},currentOption:{type:String,required:!0}},methods:{setActive(e,t,n){e(n),t()}}},de=ue,pe=(n(\"e4e4\"),Object(w[\"a\"])(de,le,ce,!1,null,\"78dc103f\",null)),he=pe.exports;const me={title:\"Introduction\",url:\"#introduction\",reference:\"introduction\",sectionNumber:0,depth:0};var fe={name:\"NavigationBar\",components:{NavTitleContainer:P[\"a\"],NavBase:O[\"a\"],ReferenceUrlProvider:I,PrimaryDropdown:he,SecondaryDropdown:ae,MobileDropdown:E,ChevronIcon:S},mixins:[$[\"a\"]],inject:[\"store\",\"references\"],props:{chapters:{type:Array,required:!0},technology:{type:String,required:!0},topic:{type:String,required:!0},rootReference:{type:String,required:!0},identifierUrl:{type:String,required:!0}},data(){return{currentSection:me,tutorialState:this.store.state}},watch:{pageSectionWithHighestVisibility(e){e&&(this.currentSection=e)}},computed:{currentProject(){return this.chapters.reduce((e,{projects:t})=>e.concat(t),[]).find(e=>e.reference===this.identifierUrl)},pageSections(){if(!this.currentProject)return[];const e=[me].concat(this.currentProject.sections);return this.tutorialState.linkableSections.map((t,n)=>{const s=e[n],i=this.references[s.reference],{url:r,title:o}=i||s;return{...t,title:o,path:r}})},optionsForSections(){return this.pageSections.map(({depth:e,path:t,title:n})=>({depth:e,path:t,title:n}))},pageSectionWithHighestVisibility(){return[...this.pageSections].sort((e,t)=>t.visibility-e.visibility).find(e=>e.visibility>0)},sectionIndicatorText(){const e=this.tutorialState.linkableSections.length-1,{sectionNumber:t}=this.currentSection||{};if(0!==t)return`(${t} of ${e})`}},methods:{onSelectSection(e){const t=\"#\"+e.split(\"#\")[1];this.scrollToElement(t)}}},ve=fe,ge=(n(\"5241\"),Object(w[\"a\"])(ve,m,f,!1,null,\"26e19f17\",null)),ye=ge.exports,be=n(\"bf08\"),Ce=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"body\"},[n(\"BodyContent\",{attrs:{content:e.content}})],1)},we=[],_e=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"article\",{staticClass:\"body-content\"},e._l(e.content,(function(t,s){return n(e.componentFor(t),e._b({key:s,tag:\"component\",staticClass:\"layout\"},\"component\",e.propsFor(t),!1))})),1)},Se=[],ke=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"columns\",class:e.classes},[e._l(e.columns,(function(t,s){return[n(\"Asset\",{key:t.media,attrs:{identifier:t.media,videoAutoplays:!1}}),t.content?n(\"ContentNode\",{key:s,attrs:{content:t.content}}):e._e()]}))],2)},xe=[],Te=n(\"80e4\"),Ae=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"BaseContentNode\",{attrs:{content:e.articleContent}})},Ie=[],$e=n(\"5677\"),Oe={name:\"ContentNode\",components:{BaseContentNode:$e[\"a\"]},props:$e[\"a\"].props,computed:{articleContent(){return this.map(e=>{switch(e.type){case $e[\"a\"].BlockType.codeListing:return{...e,showLineNumbers:!0};case $e[\"a\"].BlockType.heading:{const{anchor:t,...n}=e;return n}default:return e}})}},methods:$e[\"a\"].methods,BlockType:$e[\"a\"].BlockType,InlineType:$e[\"a\"].InlineType},Pe=Oe,je=(n(\"cb8d\"),Object(w[\"a\"])(Pe,Ae,Ie,!1,null,\"3cfe1c35\",null)),Ne=je.exports,De={name:\"Columns\",components:{Asset:Te[\"a\"],ContentNode:Ne},props:{columns:{type:Array,required:!0}},computed:{classes(){return{\"cols-2\":2===this.columns.length,\"cols-3\":3===this.columns.length}}}},Be=De,Me=(n(\"e9b0\"),Object(w[\"a\"])(Be,ke,xe,!1,null,\"30edf911\",null)),qe=Me.exports,Re=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"content-and-media\",class:e.classes},[n(\"ContentNode\",{attrs:{content:e.content}}),n(\"Asset\",{attrs:{identifier:e.media}})],1)},Ee=[];const Ve={leading:\"leading\",trailing:\"trailing\"};var Le={name:\"ContentAndMedia\",components:{Asset:Te[\"a\"],ContentNode:Ne},props:{content:Ne.props.content,media:Te[\"a\"].props.identifier,mediaPosition:{type:String,default:()=>Ve.trailing,validator:e=>Object.prototype.hasOwnProperty.call(Ve,e)}},computed:{classes(){return{\"media-leading\":this.mediaPosition===Ve.leading,\"media-trailing\":this.mediaPosition===Ve.trailing}}},MediaPosition:Ve},Fe=Le,ze=(n(\"1006\"),Object(w[\"a\"])(Fe,Re,Ee,!1,null,\"3fa44f9e\",null)),Ue=ze.exports,He=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"full-width\"},e._l(e.groups,(function(t,s){return n(e.componentFor(t),e._b({key:s,tag:\"component\",staticClass:\"group\"},\"component\",e.propsFor(t),!1),[n(\"ContentNode\",{attrs:{content:t.content}})],1)})),1)},Ge=[],We=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.tag,{tag:\"component\",attrs:{id:e.anchor}},[e._t(\"default\")],2)},Qe=[],Ke=n(\"72e7\"),Xe={name:\"LinkableElement\",mixins:[Ke[\"a\"]],inject:{navigationBarHeight:{default(){}},store:{default(){return{addLinkableSection(){},updateLinkableSection(){}}}}},props:{anchor:{type:String,required:!0},depth:{type:Number,default:()=>0},tag:{type:String,default:()=>\"div\"},title:{type:String,required:!0}},computed:{intersectionRootMargin(){const e=this.navigationBarHeight?`-${this.navigationBarHeight}px`:\"0%\";return e+\" 0% -50% 0%\"}},created(){this.store.addLinkableSection({anchor:this.anchor,depth:this.depth,title:this.title,visibility:0})},methods:{onIntersect(e){const t=Math.min(1,e.intersectionRatio);this.store.updateLinkableSection({anchor:this.anchor,depth:this.depth,title:this.title,visibility:t})}}},Je=Xe,Ye=Object(w[\"a\"])(Je,We,Qe,!1,null,null,null),Ze=Ye.exports;const{BlockType:et}=Ne;var tt={name:\"FullWidth\",components:{ContentNode:Ne,LinkableElement:Ze},props:Ne.props,computed:{groups:({content:e})=>e.reduce((e,t)=>0===e.length||t.type===et.heading?[...e,{heading:t.type===et.heading?t:null,content:[t]}]:[...e.slice(0,e.length-1),{heading:e[e.length-1].heading,content:e[e.length-1].content.concat(t)}],[])},methods:{componentFor(e){return e.heading?Ze:\"div\"},depthFor(e){switch(e.level){case 1:case 2:return 0;default:return 1}},propsFor(e){return e.heading?{anchor:e.heading.anchor,depth:this.depthFor(e.heading),title:e.heading.text}:{}}}},nt=tt,st=(n(\"aece\"),Object(w[\"a\"])(nt,He,Ge,!1,null,\"1f2be54b\",null)),it=st.exports;const rt={columns:\"columns\",contentAndMedia:\"contentAndMedia\",fullWidth:\"fullWidth\"};var ot={name:\"BodyContent\",props:{content:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(rt,e))}},methods:{componentFor(e){return{[rt.columns]:qe,[rt.contentAndMedia]:Ue,[rt.fullWidth]:it}[e.kind]},propsFor(e){const{content:t,kind:n,media:s,mediaPosition:i}=e;return{[rt.columns]:{columns:t},[rt.contentAndMedia]:{content:t,media:s,mediaPosition:i},[rt.fullWidth]:{content:t}}[n]}},LayoutKind:rt},at=ot,lt=(n(\"1dd5\"),Object(w[\"a\"])(at,_e,Se,!1,null,\"4d5a806e\",null)),ct=lt.exports,ut={name:\"Body\",components:{BodyContent:ct},props:ct.props},dt=ut,pt=(n(\"5237\"),Object(w[\"a\"])(dt,Ce,we,!1,null,\"6499e2f2\",null)),ht=pt.exports,mt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"TutorialCTA\",e._b({},\"TutorialCTA\",e.$props,!1))},ft=[],vt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"BaseCTA\",e._b({attrs:{label:\"Next\"}},\"BaseCTA\",e.baseProps,!1))},gt=[],yt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"call-to-action\"},[n(\"Row\",[n(\"LeftColumn\",[n(\"span\",{staticClass:\"label\"},[e._v(e._s(e.label))]),n(\"h2\",[e._v(\" \"+e._s(e.title)+\" \")]),e.abstract?n(\"ContentNode\",{staticClass:\"description\",attrs:{content:[e.abstractParagraph]}}):e._e(),e.action?n(\"Button\",{attrs:{action:e.action}}):e._e()],1),n(\"RightColumn\",{staticClass:\"right-column\"},[e.media?n(\"Asset\",{staticClass:\"media\",attrs:{identifier:e.media}}):e._e()],1)],1)],1)},bt=[],Ct=n(\"0f00\"),wt=n(\"620a\"),_t=n(\"c081\"),St={name:\"CallToAction\",components:{Asset:Te[\"a\"],Button:_t[\"a\"],ContentNode:$e[\"a\"],LeftColumn:{render(e){return e(wt[\"a\"],{props:{span:{large:5,small:12}}},this.$slots.default)}},RightColumn:{render(e){return e(wt[\"a\"],{props:{span:{large:6,small:12}}},this.$slots.default)}},Row:Ct[\"a\"]},props:{title:{type:String,required:!0},label:{type:String,required:!0},abstract:{type:Array,required:!1},action:{type:Object,required:!1},media:{type:String,required:!1}},computed:{abstractParagraph(){return{type:\"paragraph\",inlineContent:this.abstract}}}},kt=St,xt=(n(\"80f7\"),Object(w[\"a\"])(kt,yt,bt,!1,null,\"2016b288\",null)),Tt=xt.exports,At={name:\"CallToAction\",components:{BaseCTA:Tt},computed:{baseProps(){return{title:this.title,abstract:this.abstract,action:this.action,media:this.media}}},props:{title:{type:String,required:!0},abstract:{type:Array,required:!1},action:{type:Object,required:!1},media:{type:String,required:!1}}},It=At,$t=Object(w[\"a\"])(It,vt,gt,!1,null,null,null),Ot=$t.exports,Pt={name:\"CallToAction\",components:{TutorialCTA:Ot},props:Ot.props},jt=Pt,Nt=(n(\"3e1b\"),Object(w[\"a\"])(jt,mt,ft,!1,null,\"426a965c\",null)),Dt=Nt.exports,Bt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"TutorialHero\",e._b({},\"TutorialHero\",e.$props,!1))},Mt=[],qt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"LinkableSection\",{staticClass:\"tutorial-hero\",attrs:{anchor:\"introduction\",title:e.sectionTitle}},[n(\"div\",{staticClass:\"hero dark\"},[e.backgroundImageUrl?n(\"div\",{staticClass:\"bg\",style:e.bgStyle}):e._e(),e._t(\"above-title\"),n(\"Row\",[n(\"Column\",[n(\"Headline\",{attrs:{level:1}},[e.chapter?n(\"template\",{slot:\"eyebrow\"},[e._v(e._s(e.chapter))]):e._e(),e._v(\" \"+e._s(e.title)+\" \")],2),e.content||e.video?n(\"div\",{staticClass:\"intro\"},[e.content?n(\"ContentNode\",{attrs:{content:e.content}}):e._e(),e.video?[n(\"p\",[n(\"a\",{staticClass:\"call-to-action\",attrs:{href:\"#\"},on:{click:function(t){return t.preventDefault(),e.toggleCallToActionModal.apply(null,arguments)}}},[e._v(\" Watch intro video \"),n(\"PlayIcon\",{staticClass:\"cta-icon icon-inline\"})],1)]),n(\"GenericModal\",{attrs:{visible:e.callToActionModalVisible,isFullscreen:\"\",theme:\"dark\"},on:{\"update:visible\":function(t){e.callToActionModalVisible=t}}},[n(\"Asset\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.callToActionModalVisible,expression:\"callToActionModalVisible\"}],ref:\"asset\",staticClass:\"video-asset\",attrs:{identifier:e.video},on:{videoEnded:e.handleVideoEnd}})],1)]:e._e()],2):e._e(),n(\"Metadata\",{staticClass:\"metadata\",attrs:{projectFilesUrl:e.projectFilesUrl,estimatedTimeInMinutes:e.estimatedTimeInMinutes,xcodeRequirement:e.xcodeRequirementData}})],1)],1)],2)])},Rt=[],Et=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"headline\"},[e.$slots.eyebrow?n(\"span\",{staticClass:\"eyebrow\"},[e._t(\"eyebrow\")],2):e._e(),n(\"Heading\",{staticClass:\"heading\",attrs:{level:e.level}},[e._t(\"default\")],2)],1)},Vt=[];const Lt=1,Ft=6,zt={type:Number,required:!0,validator:e=>e>=Lt&&e<=Ft},Ut={name:\"Heading\",render:function(e){return e(\"h\"+this.level,this.$slots.default)},props:{level:zt}};var Ht={name:\"Headline\",components:{Heading:Ut},props:{level:zt}},Gt=Ht,Wt=(n(\"323a\"),Object(w[\"a\"])(Gt,Et,Vt,!1,null,\"1898f592\",null)),Qt=Wt.exports,Kt=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"PortalSource\",{attrs:{to:\"modal-destination\",disabled:!e.isVisible}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.isVisible,expression:\"isVisible\"}],staticClass:\"generic-modal\",class:[e.stateClasses,e.themeClass],style:e.modalColors,attrs:{role:\"dialog\"}},[n(\"div\",{staticClass:\"backdrop\",on:{click:e.onClickOutside}}),n(\"div\",{ref:\"container\",staticClass:\"container\",style:{width:e.width}},[e.showClose?n(\"button\",{ref:\"close\",staticClass:\"close\",attrs:{\"aria-label\":\"Close\"},on:{click:function(t){return t.preventDefault(),e.closeModal.apply(null,arguments)}}},[n(\"CloseIcon\")],1):e._e(),n(\"div\",{ref:\"content\",staticClass:\"modal-content\"},[e._t(\"default\")],2)])])])},Xt=[],Jt=n(\"f2af\"),Yt=n(\"c8e2\"),Zt=n(\"95da\"),en=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"close-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"m10.3772239 3.1109127.7266116.7266116-3.27800002 3.2763884 3.27072752 3.2703884-.7266116.7266116-3.27011592-3.271-3.26211596 3.2637276-.7266116-.7266116 3.26272756-3.263116-3.27-3.26911596.72661159-.72661159 3.26938841 3.26972755z\",\"fill-rule\":\"evenodd\"}})])},tn=[],nn={name:\"CloseIcon\",components:{SVGIcon:y[\"a\"]}},sn=nn,rn=Object(w[\"a\"])(sn,en,tn,!1,null,null,null),on=rn.exports;const an={light:\"light\",dark:\"dark\",dynamic:\"dynamic\",code:\"code\"};var ln={name:\"GenericModal\",model:{prop:\"visible\",event:\"update:visible\"},components:{CloseIcon:on,PortalSource:h[\"Portal\"]},props:{visible:{type:Boolean,default:!1},isFullscreen:{type:Boolean,default:!1},theme:{type:String,validator:e=>Object.keys(an).includes(e),default:an.light},codeBackgroundColorOverride:{type:String,default:\"\"},width:{type:String,default:null},showClose:{type:Boolean,default:!0}},data(){return{lastFocusItem:null,prefersDarkStyle:!1,focusTrapInstance:null}},computed:{isVisible:{get:({visible:e})=>e,set(e){this.$emit(\"update:visible\",e)}},modalColors(){return{\"--background\":this.codeBackgroundColorOverride}},themeClass({theme:e,prefersDarkStyle:t,isThemeDynamic:n}){let s={};return n&&(s={\"theme-light\":!t,\"theme-dark\":t}),[\"theme-\"+e,s]},stateClasses:({isFullscreen:e,isVisible:t,showClose:n})=>({\"modal-fullscreen\":e,\"modal-standard\":!e,\"modal-open\":t,\"modal-with-close\":n}),isThemeDynamic:({theme:e})=>e===an.dynamic||e===an.code},watch:{isVisible(e){e?this.onShow():this.onHide()}},mounted(){if(this.focusTrapInstance=new Yt[\"a\"],document.addEventListener(\"keydown\",this.onKeydown),this.isThemeDynamic){const e=window.matchMedia(\"(prefers-color-scheme: dark)\");e.addListener(this.onColorSchemePreferenceChange),this.$once(\"hook:beforeDestroy\",()=>{e.removeListener(this.onColorSchemePreferenceChange)}),this.onColorSchemePreferenceChange(e)}},beforeDestroy(){this.isVisible&&Jt[\"a\"].unlockScroll(this.$refs.container),document.removeEventListener(\"keydown\",this.onKeydown),this.focusTrapInstance.destroy()},methods:{async onShow(){await this.$nextTick(),Jt[\"a\"].lockScroll(this.$refs.container),await this.focusCloseButton(),this.focusTrapInstance.updateFocusContainer(this.$refs.container),this.focusTrapInstance.start(),Zt[\"a\"].hide(this.$refs.container)},onHide(){Jt[\"a\"].unlockScroll(this.$refs.container),this.focusTrapInstance.stop(),this.lastFocusItem&&(this.lastFocusItem.focus({preventScroll:!0}),this.lastFocusItem=null),this.$emit(\"close\"),Zt[\"a\"].show(this.$refs.container)},closeModal(){this.isVisible=!1},selectContent(){window.getSelection().selectAllChildren(this.$refs.content)},onClickOutside(){this.closeModal()},onKeydown(e){const{metaKey:t=!1,ctrlKey:n=!1,key:s}=e;this.isVisible&&(\"a\"===s&&(t||n)&&(e.preventDefault(),this.selectContent()),\"Escape\"===s&&this.closeModal())},onColorSchemePreferenceChange({matches:e}){this.prefersDarkStyle=e},async focusCloseButton(){this.lastFocusItem=document.activeElement,await this.$nextTick(),this.$refs.close&&this.$refs.close.focus(),this.$emit(\"open\")}}},cn=ln,un=(n(\"8016\"),Object(w[\"a\"])(cn,Kt,Xt,!1,null,\"ea628b36\",null)),dn=un.exports,pn=n(\"c4dd\"),hn=n(\"748c\"),mn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"metadata\"},[e.estimatedTimeInMinutes?n(\"div\",{staticClass:\"item\",attrs:{\"aria-label\":e.estimatedTimeInMinutes+\" minutes estimated time\"}},[n(\"div\",{staticClass:\"content\",attrs:{\"aria-hidden\":\"true\"}},[n(\"div\",{staticClass:\"duration\"},[e._v(\" \"+e._s(e.estimatedTimeInMinutes)+\" \"),n(\"div\",{staticClass:\"minutes\"},[e._v(\"min\")])])]),n(\"div\",{staticClass:\"bottom\",attrs:{\"aria-hidden\":\"true\"}},[e._v(\"Estimated Time\")])]):e._e(),e.projectFilesUrl?n(\"div\",{staticClass:\"item\"},[n(\"DownloadIcon\",{staticClass:\"item-large-icon icon-inline\"}),n(\"div\",{staticClass:\"content bottom\"},[n(\"a\",{staticClass:\"content-link project-download\",attrs:{href:e.projectFilesUrl}},[e._v(\" Project files \"),n(\"InlineDownloadIcon\",{staticClass:\"small-icon icon-inline\"})],1)])],1):e._e(),e.xcodeRequirement?n(\"div\",{staticClass:\"item\"},[n(\"XcodeIcon\",{staticClass:\"item-large-icon icon-inline\"}),n(\"div\",{staticClass:\"content bottom\"},[e.isTargetIDE?n(\"span\",[e._v(e._s(e.xcodeRequirement.title))]):n(\"a\",{staticClass:\"content-link\",attrs:{href:e.xcodeRequirement.url}},[e._v(\" \"+e._s(e.xcodeRequirement.title)+\" \"),n(\"InlineChevronRightIcon\",{staticClass:\"icon-inline small-icon xcode-icon\"})],1)])],1):e._e()])},fn=[],vn=n(\"de60\"),gn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"xcode-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M2.668 4.452l-1.338-2.229 0.891-0.891 2.229 1.338 1.338 2.228 3.667 3.666 0.194-0.194 2.933 2.933c0.13 0.155 0.209 0.356 0.209 0.576 0 0.497-0.403 0.9-0.9 0.9-0.22 0-0.421-0.079-0.577-0.209l0.001 0.001-2.934-2.933 0.181-0.181-3.666-3.666z\"}}),n(\"path\",{attrs:{d:\"M11.824 1.277l-0.908 0.908c-0.091 0.091-0.147 0.216-0.147 0.354 0 0.106 0.033 0.205 0.090 0.286l-0.001-0.002 0.058 0.069 0.185 0.185c0.090 0.090 0.215 0.146 0.353 0.146 0.107 0 0.205-0.033 0.286-0.090l-0.002 0.001 0.069-0.057 0.909-0.908c0.118 0.24 0.187 0.522 0.187 0.82 0 1.045-0.848 1.893-1.893 1.893-0.296 0-0.577-0.068-0.826-0.189l0.011 0.005-5.5 5.5c0.116 0.238 0.184 0.518 0.184 0.813 0 1.045-0.848 1.893-1.893 1.893-0.296 0-0.576-0.068-0.826-0.189l0.011 0.005 0.908-0.909c0.090-0.090 0.146-0.215 0.146-0.353 0-0.107-0.033-0.205-0.090-0.286l0.001 0.002-0.057-0.069-0.185-0.185c-0.091-0.091-0.216-0.147-0.354-0.147-0.106 0-0.205 0.033-0.286 0.090l0.002-0.001-0.069 0.058-0.908 0.908c-0.116-0.238-0.184-0.518-0.184-0.813 0-1.045 0.847-1.892 1.892-1.892 0.293 0 0.571 0.067 0.819 0.186l-0.011-0.005 5.5-5.5c-0.116-0.238-0.184-0.519-0.184-0.815 0-1.045 0.847-1.892 1.892-1.892 0.296 0 0.577 0.068 0.827 0.19l-0.011-0.005z\"}})])},yn=[],bn={name:\"XcodeIcon\",components:{SVGIcon:y[\"a\"]}},Cn=bn,wn=Object(w[\"a\"])(Cn,gn,yn,!1,null,null,null),_n=wn.exports,Sn=n(\"34b0\"),kn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"inline-download-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z\"}}),n(\"path\",{attrs:{d:\"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z\"}})])},xn=[],Tn={name:\"InlineDownloadIcon\",components:{SVGIcon:y[\"a\"]}},An=Tn,In=Object(w[\"a\"])(An,kn,xn,!1,null,null,null),$n=In.exports,On={name:\"HeroMetadata\",components:{InlineDownloadIcon:$n,InlineChevronRightIcon:Sn[\"a\"],DownloadIcon:vn[\"a\"],XcodeIcon:_n},inject:[\"isTargetIDE\"],props:{projectFilesUrl:{type:String},estimatedTimeInMinutes:{type:Number},xcodeRequirement:{type:Object,required:!1}}},Pn=On,jn=(n(\"5356\"),Object(w[\"a\"])(Pn,mn,fn,!1,null,\"2fa6f125\",null)),Nn=jn.exports,Dn={name:\"Hero\",components:{PlayIcon:pn[\"a\"],GenericModal:dn,Column:{render(e){return e(wt[\"a\"],{props:{span:{large:7,medium:9,small:12}}},this.$slots.default)}},ContentNode:$e[\"a\"],Headline:Qt,Metadata:Nn,Row:Ct[\"a\"],Asset:Te[\"a\"],LinkableSection:Ze},inject:[\"references\"],props:{title:{type:String,required:!0},chapter:{type:String},content:{type:Array},projectFiles:{type:String},estimatedTimeInMinutes:{type:Number},xcodeRequirement:{type:String,required:!1},video:{type:String},backgroundImage:{type:String}},computed:{backgroundImageUrl(){const e=this.references[this.backgroundImage]||{},{variants:t=[]}=e,n=t.find(e=>e.traits.includes(\"light\"));return n?Object(hn[\"b\"])(n.url):\"\"},projectFilesUrl(){return this.projectFiles?Object(hn[\"b\"])(this.references[this.projectFiles].url):null},bgStyle(){return{backgroundImage:`url('${this.backgroundImageUrl}')`}},xcodeRequirementData(){return this.references[this.xcodeRequirement]},sectionTitle(){return\"Introduction\"}},data(){return{callToActionModalVisible:!1}},methods:{async toggleCallToActionModal(){this.callToActionModalVisible=!0,await this.$nextTick();const e=this.$refs.asset.$el.querySelector(\"video\");if(e)try{await e.play(),e.muted=!1}catch(t){}},handleVideoEnd(){this.callToActionModalVisible=!1}}},Bn=Dn,Mn=(n(\"3c4b\"),Object(w[\"a\"])(Bn,qt,Rt,!1,null,\"cb87b2d0\",null)),qn=Mn.exports,Rn={name:\"Hero\",components:{TutorialHero:qn},props:qn.props},En=Rn,Vn=(n(\"2f9d\"),Object(w[\"a\"])(En,Bt,Mt,!1,null,\"35a9482f\",null)),Ln=Vn.exports,Fn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"TutorialAssessments\",e._b({},\"TutorialAssessments\",e.$props,!1),[n(\"p\",{attrs:{slot:\"success\"},slot:\"success\"},[e._v(\"Great job, you've answered all the questions for this article.\")])])},zn=[],Un=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"LinkableSection\",{staticClass:\"assessments-wrapper\",attrs:{anchor:e.anchor,title:e.title}},[n(\"Row\",{ref:\"assessments\",staticClass:\"assessments\"},[n(\"MainColumn\",[n(\"Row\",{staticClass:\"banner\"},[n(\"HeaderColumn\",[n(\"h2\",{staticClass:\"title\"},[e._v(e._s(e.title))])])],1),e.completed?n(\"div\",{staticClass:\"success\"},[e._t(\"success\",(function(){return[n(\"p\",[e._v(e._s(e.SuccessMessage))])]}))],2):n(\"div\",[n(\"Progress\",e._b({ref:\"progress\"},\"Progress\",e.progress,!1)),n(\"Quiz\",{key:e.activeIndex,attrs:{choices:e.activeAssessment.choices,content:e.activeAssessment.content,isLast:e.isLast,title:e.activeAssessment.title},on:{submit:e.onSubmit,advance:e.onAdvance,\"see-results\":e.onSeeResults}})],1),n(\"div\",{staticClass:\"visuallyhidden\",attrs:{\"aria-live\":\"assertive\"}},[e.completed?e._t(\"success\",(function(){return[e._v(\" \"+e._s(e.SuccessMessage)+\" \")]})):e._e()],2)],1)],1)],1)},Hn=[],Gn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"Row\",[n(\"p\",{staticClass:\"title\"},[e._v(\"Question \"+e._s(e.index)+\" of \"+e._s(e.total))])])},Wn=[],Qn={name:\"AssessmentsProgress\",components:{Row:Ct[\"a\"]},props:{index:{type:Number,required:!0},total:{type:Number,required:!0}}},Kn=Qn,Xn=(n(\"0530\"),Object(w[\"a\"])(Kn,Gn,Wn,!1,null,\"8ec95972\",null)),Jn=Xn.exports,Yn=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"quiz\"},[n(\"ContentNode\",{staticClass:\"title\",attrs:{content:e.title}}),e.content?n(\"ContentNode\",{staticClass:\"question-content\",attrs:{content:e.content}}):e._e(),n(\"div\",{staticClass:\"choices\"},[e._l(e.choices,(function(t,s){return n(\"label\",{key:s,class:e.choiceClasses[s]},[n(e.getIconComponent(s),{tag:\"component\",staticClass:\"choice-icon\"}),n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:e.selectedIndex,expression:\"selectedIndex\"}],attrs:{type:\"radio\",name:\"assessment\"},domProps:{value:s,checked:e._q(e.selectedIndex,s)},on:{change:function(t){e.selectedIndex=s}}}),n(\"ContentNode\",{staticClass:\"question\",attrs:{content:t.content}}),e.userChoices[s].checked?[n(\"ContentNode\",{staticClass:\"answer\",attrs:{content:t.justification}}),t.reaction?n(\"p\",{staticClass:\"answer\"},[e._v(e._s(t.reaction))]):e._e()]:e._e()],2)})),n(\"div\",{staticClass:\"visuallyhidden\",attrs:{\"aria-live\":\"assertive\"}},[e._v(\" \"+e._s(e.ariaLiveText)+\" \")])],2),n(\"div\",{staticClass:\"controls\"},[n(\"ButtonLink\",{staticClass:\"check\",attrs:{disabled:null===e.selectedIndex||e.showNextQuestion},nativeOn:{click:function(t){return e.submit.apply(null,arguments)}}},[e._v(\" Submit \")]),e.isLast?n(\"ButtonLink\",{staticClass:\"results\",attrs:{disabled:!e.showNextQuestion},nativeOn:{click:function(t){return e.seeResults.apply(null,arguments)}}},[e._v(\" Next \")]):n(\"ButtonLink\",{staticClass:\"next\",attrs:{disabled:!e.showNextQuestion},nativeOn:{click:function(t){return e.advance.apply(null,arguments)}}},[e._v(\" Next Question \")])],1)],1)},Zn=[],es=n(\"76ab\"),ts=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"reset-circle-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z\"}}),n(\"path\",{attrs:{d:\"M3.828 4.539l0.707-0.707 5.657 5.657-0.707 0.707-5.657-5.657z\"}}),n(\"path\",{attrs:{d:\"M3.828 9.489l5.657-5.657 0.707 0.707-5.657 5.657-0.707-0.707z\"}})])},ns=[],ss={name:\"ResetCircleIcon\",components:{SVGIcon:y[\"a\"]}},is=ss,rs=Object(w[\"a\"])(is,ts,ns,!1,null,null,null),os=rs.exports,as=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"check-circle-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z\"}}),n(\"path\",{attrs:{d:\"M9.626 3.719l0.866 0.5-3.5 6.062-3.464-2 0.5-0.866 2.6 1.5z\"}})])},ls=[],cs={name:\"CheckCircleIcon\",components:{SVGIcon:y[\"a\"]}},us=cs,ds=Object(w[\"a\"])(us,as,ls,!1,null,null,null),ps=ds.exports,hs={name:\"Quiz\",components:{CheckCircleIcon:ps,ResetCircleIcon:os,ContentNode:$e[\"a\"],ButtonLink:es[\"a\"]},props:{content:{type:Array,required:!1},choices:{type:Array,required:!0},isLast:{type:Boolean,default:!1},title:{type:Array,required:!0}},data(){return{userChoices:this.choices.map(()=>({checked:!1})),selectedIndex:null,checkedIndex:null}},computed:{correctChoices(){return this.choices.reduce((e,t,n)=>t.isCorrect?e.add(n):e,new Set)},choiceClasses(){return this.userChoices.map((e,t)=>({choice:!0,active:this.selectedIndex===t,disabled:e.checked||this.showNextQuestion,correct:e.checked&&this.choices[t].isCorrect,incorrect:e.checked&&!this.choices[t].isCorrect}))},showNextQuestion(){return Array.from(this.correctChoices).every(e=>this.userChoices[e].checked)},ariaLiveText:({checkedIndex:e,choices:t})=>{if(null===e)return\"\";const{isCorrect:n}=t[e];return`Answer number ${e+1} is ${n?\"correct\":\"incorrect\"}`}},methods:{getIconComponent(e){const t=this.userChoices[e];if(t&&t.checked)return this.choices[e].isCorrect?ps:os},submit(){this.$set(this.userChoices,this.selectedIndex,{checked:!0}),this.checkedIndex=this.selectedIndex,this.$emit(\"submit\")},advance(){this.$emit(\"advance\")},seeResults(){this.$emit(\"see-results\")}}},ms=hs,fs=(n(\"5c7b\"),Object(w[\"a\"])(ms,Yn,Zn,!1,null,\"455ff2a6\",null)),vs=fs.exports;const gs=12,ys=\"Great job, you've answered all the questions for this tutorial.\";var bs={name:\"Assessments\",constants:{SuccessMessage:ys},components:{LinkableSection:Ze,Quiz:vs,Progress:Jn,Row:Ct[\"a\"],HeaderColumn:{render(e){return e(wt[\"a\"],{props:{isCentered:{large:!0},span:{large:10}}},this.$slots.default)}},MainColumn:{render(e){return e(wt[\"a\"],{props:{isCentered:{large:!0},span:{large:10,medium:10,small:12}}},this.$slots.default)}}},props:{assessments:{type:Array,required:!0},anchor:{type:String,required:!0}},inject:[\"navigationBarHeight\"],data(){return{activeIndex:0,completed:!1,SuccessMessage:ys}},computed:{activeAssessment(){return this.assessments[this.activeIndex]},isLast(){return this.activeIndex===this.assessments.length-1},progress(){return{index:this.activeIndex+1,total:this.assessments.length}},title(){return\"Check Your Understanding\"}},methods:{scrollTo(e,t=0){e.scrollIntoView(!0),window.scrollBy(0,-this.navigationBarHeight-t)},onSubmit(){this.$nextTick(()=>{this.scrollTo(this.$refs.progress.$el,gs)})},onAdvance(){this.activeIndex+=1,this.$nextTick(()=>{this.scrollTo(this.$refs.progress.$el,gs)})},onSeeResults(){this.completed=!0,this.$nextTick(()=>{this.scrollTo(this.$refs.assessments.$el,gs)})}}},Cs=bs,ws=(n(\"53b5\"),Object(w[\"a\"])(Cs,Un,Hn,!1,null,\"c1de71de\",null)),_s=ws.exports,Ss={name:\"Assessments\",components:{TutorialAssessments:_s},props:_s.props},ks=Ss,xs=(n(\"f264\"),Object(w[\"a\"])(ks,Fn,zn,!1,null,\"3c94366b\",null)),Ts=xs.exports;const As={articleBody:\"articleBody\",callToAction:\"callToAction\",hero:\"hero\",assessments:\"assessments\"};var Is={name:\"Article\",components:{NavigationBar:ye,PortalTarget:h[\"PortalTarget\"]},mixins:[be[\"a\"]],inject:{isTargetIDE:{default:!1},store:{default(){return{reset(){}}}}},props:{hierarchy:{type:Object,required:!0},metadata:{type:Object,required:!0},references:{type:Object,required:!0},sections:{type:Array,required:!0,validator:e=>e.every(({kind:e})=>Object.prototype.hasOwnProperty.call(As,e))},identifierUrl:{type:String,required:!0}},computed:{heroSection(){return this.sections.find(this.isHero)},heroTitle(){return(this.heroSection||{}).title},pageTitle(){return this.heroTitle?`${this.heroTitle} — ${this.metadata.category} Tutorials`:void 0},pageDescription:({heroSection:e,extractFirstParagraphText:t})=>e?t(e.content):null},methods:{componentFor(e){const{kind:t}=e;return{[As.articleBody]:ht,[As.callToAction]:Dt,[As.hero]:Ln,[As.assessments]:Ts}[t]},isHero(e){return e.kind===As.hero},propsFor(e){const{abstract:t,action:n,anchor:s,assessments:i,backgroundImage:r,chapter:o,content:a,estimatedTimeInMinutes:l,kind:c,media:u,projectFiles:d,title:p,video:h,xcodeRequirement:m}=e;return{[As.articleBody]:{content:a},[As.callToAction]:{abstract:t,action:n,media:u,title:p},[As.hero]:{backgroundImage:r,chapter:o,content:a,estimatedTimeInMinutes:l,projectFiles:d,title:p,video:h,xcodeRequirement:m},[As.assessments]:{anchor:s,assessments:i}}[c]}},provide(){return{references:this.references}},created(){this.store.reset()},SectionKind:As},$s=Is,Os=(n(\"3a78\"),Object(w[\"a\"])($s,d,p,!1,null,\"d9f204d0\",null)),Ps=Os.exports,js=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"tutorial\"},[e.isTargetIDE?e._e():n(\"NavigationBar\",{attrs:{technology:e.metadata.category,chapters:e.hierarchy.modules,topic:e.tutorialTitle||\"\",rootReference:e.hierarchy.reference,identifierUrl:e.identifierUrl}}),n(\"main\",{attrs:{id:\"main\",role:\"main\",tabindex:\"0\"}},[e._l(e.sections,(function(e,t){return n(\"Section\",{key:t,attrs:{section:e}})})),n(\"BreakpointEmitter\",{on:{change:e.handleBreakpointChange}})],2),n(\"PortalTarget\",{attrs:{name:\"modal-destination\",multiple:\"\"}})],1)},Ns=[],Ds=n(\"66c9\"),Bs={computed:{isClientMobile(){let e=!1;return e=\"maxTouchPoints\"in navigator||\"msMaxTouchPoints\"in navigator?Boolean(navigator.maxTouchPoints||navigator.msMaxTouchPoints):window.matchMedia?window.matchMedia(\"(pointer:coarse)\").matches:\"orientation\"in window,e}}},Ms=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"sections\"},e._l(e.tasks,(function(t,s){return n(\"Section\",e._b({key:s,attrs:{id:t.anchor,sectionNumber:s+1,isRuntimePreviewVisible:e.isRuntimePreviewVisible},on:{\"runtime-preview-toggle\":e.onRuntimePreviewToggle}},\"Section\",t,!1))})),1)},qs=[],Rs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"LinkableSection\",{staticClass:\"section\",attrs:{anchor:e.anchor,title:e.introProps.title}},[n(\"Intro\",e._b({},\"Intro\",e.introProps,!1)),e.stepsSection.length>0?n(\"Steps\",{attrs:{content:e.stepsSection,isRuntimePreviewVisible:e.isRuntimePreviewVisible,sectionNumber:e.sectionNumber},on:{\"runtime-preview-toggle\":e.onRuntimePreviewToggle}}):e._e()],1)},Es=[],Vs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"intro-container\"},[n(\"Row\",{class:[\"intro\",\"intro-\"+e.sectionNumber,{ide:e.isTargetIDE}]},[n(\"Column\",{staticClass:\"left\"},[n(\"Headline\",{attrs:{level:2}},[n(\"router-link\",{attrs:{slot:\"eyebrow\",to:e.sectionLink},slot:\"eyebrow\"},[e._v(\" Section \"+e._s(e.sectionNumber)+\" \")]),e._v(\" \"+e._s(e.title)+\" \")],1),n(\"ContentNode\",{attrs:{content:e.content}})],1),n(\"Column\",{staticClass:\"right\"},[n(\"div\",{staticClass:\"media\"},[e.media?n(\"Asset\",{attrs:{identifier:e.media,showsReplayButton:!e.isClientMobile,showsVideoControls:e.isClientMobile,videoAutoplays:!e.isClientMobile}}):e._e()],1)])],1),e.expandedSections.length>0?n(\"ExpandedIntro\",{staticClass:\"expanded-intro\",attrs:{content:e.expandedSections}}):e._e()],1)},Ls=[],Fs={name:\"SectionIntro\",inject:{isClientMobile:{default:()=>!1},isTargetIDE:{default:()=>!1}},components:{Asset:Te[\"a\"],ContentNode:$e[\"a\"],ExpandedIntro:ct,Headline:Qt,Row:Ct[\"a\"],Column:{render(e){return e(wt[\"a\"],{props:{span:{large:6,small:12}}},this.$slots.default)}}},props:{sectionAnchor:{type:String,required:!0},content:{type:Array,required:!0},media:{type:String,required:!0},title:{type:String,required:!0},sectionNumber:{type:Number,required:!0},expandedSections:{type:Array,default:()=>[]}},methods:{focus(){this.$emit(\"focus\",this.media)}},computed:{sectionLink(){return{path:this.$route.path,hash:this.sectionAnchor,query:this.$route.query}}}},zs=Fs,Us=(n(\"4896\"),Object(w[\"a\"])(zs,Vs,Ls,!1,null,\"54daa228\",null)),Hs=Us.exports,Gs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"steps\"},[n(\"div\",{staticClass:\"content-container\"},e._l(e.contentNodes,(function(t,s){return n(t.component,e._b({key:s,ref:\"contentNodes\",refInFor:!0,tag:\"component\",class:e.contentClass(s),attrs:{currentIndex:e.activeStep}},\"component\",t.props,!1))})),1),e.isBreakpointSmall?e._e():n(\"BackgroundTheme\",{staticClass:\"asset-container\",class:e.assetContainerClasses},[n(\"transition\",{attrs:{name:\"fade\"}},[e.visibleAsset.media?n(\"div\",{key:e.visibleAsset.media,class:[\"asset-wrapper\",{ide:e.isTargetIDE}]},[n(\"Asset\",{ref:\"asset\",staticClass:\"step-asset\",attrs:{identifier:e.visibleAsset.media,showsReplayButton:\"\",showsVideoControls:!1}})],1):e._e(),e.visibleAsset.code?n(\"CodePreview\",{attrs:{code:e.visibleAsset.code,preview:e.visibleAsset.runtimePreview,isRuntimePreviewVisible:e.isRuntimePreviewVisible},on:{\"runtime-preview-toggle\":e.onRuntimePreviewToggle}},[e.visibleAsset.runtimePreview?n(\"transition\",{attrs:{name:\"fade\"}},[n(\"Asset\",{key:e.visibleAsset.runtimePreview,attrs:{identifier:e.visibleAsset.runtimePreview}})],1):e._e()],1):e._e()],1)],1)],1)},Ws=[],Qs=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{class:[\"code-preview\",{ide:e.isTargetIDE}]},[n(\"CodeTheme\",[e.code?n(\"CodeListing\",e._b({attrs:{showLineNumbers:\"\"}},\"CodeListing\",e.codeProps,!1)):e._e()],1),n(\"div\",{staticClass:\"runtime-preview\",class:e.runtimePreviewClasses,style:e.previewStyles},[n(\"div\",{staticClass:\"runtimve-preview__container\"},[n(\"button\",{staticClass:\"header\",attrs:{disabled:!e.hasRuntimePreview,title:e.runtimePreviewTitle},on:{click:e.togglePreview}},[n(\"span\",{staticClass:\"runtime-preview-label\",attrs:{\"aria-label\":e.textAriaLabel}},[e._v(e._s(e.togglePreviewText))]),n(\"DiagonalArrowIcon\",{staticClass:\"icon-inline preview-icon\",class:[e.shouldDisplayHideLabel?\"preview-hide\":\"preview-show\"]})],1),n(\"transition\",{on:{leave:e.handleLeave}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:e.shouldDisplayHideLabel,expression:\"shouldDisplayHideLabel\"}],staticClass:\"runtime-preview-asset\"},[e._t(\"default\")],2)])],1)])],1)},Ks=[],Xs=n(\"7b69\"),Js=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"diagonal-arrow\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M0.010 12.881l10.429-10.477-3.764 0.824-0.339-1.549 7.653-1.679-1.717 7.622-1.546-0.349 0.847-3.759-10.442 10.487z\"}})])},Ys=[],Zs={name:\"DiagonalArrowIcon\",components:{SVGIcon:y[\"a\"]}},ei=Zs,ti=Object(w[\"a\"])(ei,Js,Ys,!1,null,null,null),ni=ti.exports,si=n(\"8590\");const{BreakpointName:ii}=o[\"a\"].constants;function ri({width:e,height:t},n=1){const s=400,i=e<=s?1.75:3;return{width:e/(i/n),height:t/(i/n)}}var oi={name:\"CodePreview\",inject:[\"references\",\"isTargetIDE\",\"store\"],components:{DiagonalArrowIcon:ni,CodeListing:Xs[\"a\"],CodeTheme:si[\"a\"]},props:{code:{type:String,required:!0},preview:{type:String,required:!1},isRuntimePreviewVisible:{type:Boolean,required:!0}},data(){return{tutorialState:this.store.state}},computed:{currentBreakpoint(){return this.tutorialState.breakpoint},hasRuntimePreview(){return!!this.preview},previewAssetSize(){const e=this.hasRuntimePreview?this.references[this.preview]:{},t=(e.variants||[{}])[0]||{},n={width:900};let s=t.size||{};s.width||s.height||(s=n);const i=this.currentBreakpoint===ii.medium?.8:1;return ri(s,i)},previewSize(){const e={width:102};return this.shouldDisplayHideLabel&&this.previewAssetSize?{width:this.previewAssetSize.width}:e},previewStyles(){const{width:e}=this.previewSize;return{width:e+\"px\"}},codeProps(){return this.references[this.code]},runtimePreviewClasses(){return{collapsed:!this.shouldDisplayHideLabel,disabled:!this.hasRuntimePreview,\"runtime-preview-ide\":this.isTargetIDE}},shouldDisplayHideLabel(){return this.hasRuntimePreview&&this.isRuntimePreviewVisible},runtimePreviewTitle(){return this.hasRuntimePreview?null:\"No preview available for this step.\"},togglePreviewText(){return this.hasRuntimePreview?\"Preview\":\"No Preview\"},textAriaLabel:({shouldDisplayHideLabel:e,togglePreviewText:t})=>`${t}, ${e?\"Hide\":\"Show\"}`},methods:{handleLeave(e,t){setTimeout(t,200)},togglePreview(){this.hasRuntimePreview&&this.$emit(\"runtime-preview-toggle\",!this.isRuntimePreviewVisible)}}},ai=oi,li=(n(\"5053\"),Object(w[\"a\"])(ai,Qs,Ks,!1,null,\"9acc0234\",null)),ci=li.exports,ui=n(\"3908\"),di=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{style:e.backgroundStyle},[e._t(\"default\")],2)},pi=[],hi={name:\"BackgroundTheme\",data(){return{codeThemeState:Ds[\"a\"].state}},computed:{backgroundStyle(){const{codeColors:e}=this.codeThemeState;return e?{\"--background\":e.background}:null}}},mi=hi,fi=Object(w[\"a\"])(mi,di,pi,!1,null,null,null),vi=fi.exports,gi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{class:[\"step-container\",\"step-\"+e.stepNumber]},[n(\"div\",{ref:\"step\",staticClass:\"step\",class:{focused:e.isActive},attrs:{\"data-index\":e.index}},[n(\"p\",{staticClass:\"step-label\"},[e._v(\"Step \"+e._s(e.stepNumber))]),n(\"ContentNode\",{attrs:{content:e.content}}),e.caption&&e.caption.length>0?n(\"ContentNode\",{staticClass:\"caption\",attrs:{content:e.caption}}):e._e()],1),e.isBreakpointSmall||!e.isTargetIDE?n(\"div\",{staticClass:\"media-container\"},[e.media?n(\"Asset\",{attrs:{identifier:e.media,showsReplayButton:!e.isClientMobile,showsVideoControls:e.isClientMobile,videoAutoplays:!e.isClientMobile}}):e._e(),e.code?n(\"MobileCodePreview\",{attrs:{code:e.code}},[e.runtimePreview?n(\"Asset\",{staticClass:\"preview\",attrs:{identifier:e.runtimePreview}}):e._e()],1):e._e()],1):e._e()])},yi=[],bi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"BackgroundTheme\",{staticClass:\"mobile-code-preview\"},[e.code?n(\"GenericModal\",{staticClass:\"full-code-listing-modal\",attrs:{theme:e.isTargetIDE?\"code\":\"light\",codeBackgroundColorOverride:e.modalBackgroundColor,isFullscreen:\"\",visible:e.fullCodeIsVisible},on:{\"update:visible\":function(t){e.fullCodeIsVisible=t}}},[n(\"div\",{staticClass:\"full-code-listing-modal-content\"},[n(\"CodeTheme\",[n(\"CodeListing\",e._b({staticClass:\"full-code-listing\",attrs:{showLineNumbers:\"\"}},\"CodeListing\",e.codeProps,!1))],1)],1)]):e._e(),n(\"CodeTheme\",[e.code?n(\"MobileCodeListing\",e._b({attrs:{showLineNumbers:\"\"},on:{\"file-name-click\":e.toggleFullCode}},\"MobileCodeListing\",e.codeProps,!1)):e._e()],1),n(\"CodeTheme\",{staticClass:\"preview-toggle-container\"},[n(\"PreviewToggle\",{attrs:{isActionable:!!e.$slots.default},on:{click:e.togglePreview}})],1),e.$slots.default?n(\"GenericModal\",{staticClass:\"runtime-preview-modal\",attrs:{theme:e.isTargetIDE?\"dynamic\":\"light\",isFullscreen:\"\",visible:e.previewIsVisible},on:{\"update:visible\":function(t){e.previewIsVisible=t}}},[n(\"div\",{staticClass:\"runtime-preview-modal-content\"},[n(\"span\",{staticClass:\"runtime-preview-label\"},[e._v(\"Preview\")]),e._t(\"default\")],2)]):e._e()],1)},Ci=[],wi=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"code-listing-preview\",attrs:{\"data-syntax\":e.syntax}},[n(\"CodeListing\",{attrs:{fileName:e.fileName,syntax:e.syntax,fileType:e.fileType,content:e.previewedLines,startLineNumber:e.displayedRange.start,highlights:e.highlights,showLineNumbers:\"\",isFileNameActionable:\"\"},on:{\"file-name-click\":function(t){return e.$emit(\"file-name-click\")}}})],1)},_i=[],Si={name:\"MobileCodeListing\",components:{CodeListing:Xs[\"a\"]},props:{fileName:String,syntax:String,fileType:String,content:{type:Array,required:!0},highlights:{type:Array,default:()=>[]}},computed:{highlightedLineNumbers(){return new Set(this.highlights.map(({line:e})=>e))},firstHighlightRange(){if(0===this.highlightedLineNumbers.size)return{start:1,end:this.content.length};const e=Math.min(...this.highlightedLineNumbers.values());let t=e;while(this.highlightedLineNumbers.has(t+1))t+=1;return{start:e,end:t}},displayedRange(){const e=this.firstHighlightRange,t=e.start-2<1?1:e.start-2,n=e.end+3>=this.content.length+1?this.content.length+1:e.end+3;return{start:t,end:n}},previewedLines(){return this.content.slice(this.displayedRange.start-1,this.displayedRange.end-1)}}},ki=Si,xi=(n(\"fae5\"),Object(w[\"a\"])(ki,wi,_i,!1,null,\"5ad4e037\",null)),Ti=xi.exports,Ai=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"span\",{staticClass:\"toggle-preview\"},[e.isActionable?n(\"a\",{staticClass:\"toggle-text\",attrs:{href:\"#\"},on:{click:function(t){return t.preventDefault(),e.$emit(\"click\")}}},[e._v(\" Preview \"),n(\"InlinePlusCircleIcon\",{staticClass:\"toggle-icon icon-inline\"})],1):n(\"span\",{staticClass:\"toggle-text\"},[e._v(\" No preview \")])])},Ii=[],$i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"inline-plus-circle-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z\"}}),n(\"path\",{attrs:{d:\"M4 6.52h6v1h-6v-1z\"}}),n(\"path\",{attrs:{d:\"M6.5 4.010h1v6h-1v-6z\"}})])},Oi=[],Pi={name:\"InlinePlusCircleIcon\",components:{SVGIcon:y[\"a\"]}},ji=Pi,Ni=Object(w[\"a\"])(ji,$i,Oi,!1,null,null,null),Di=Ni.exports,Bi={name:\"MobileCodePreviewToggle\",components:{InlinePlusCircleIcon:Di},props:{isActionable:{type:Boolean,required:!0}}},Mi=Bi,qi=(n(\"e97b\"),Object(w[\"a\"])(Mi,Ai,Ii,!1,null,\"d0709828\",null)),Ri=qi.exports,Ei={name:\"MobileCodePreview\",inject:[\"references\",\"isTargetIDE\",\"store\"],components:{GenericModal:dn,CodeListing:Xs[\"a\"],MobileCodeListing:Ti,PreviewToggle:Ri,CodeTheme:si[\"a\"],BackgroundTheme:vi},props:{code:{type:String,required:!0}},computed:{codeProps(){return this.references[this.code]},modalBackgroundColor(){const{codeColors:e}=this.store.state;return e?e.background:null}},data(){return{previewIsVisible:!1,fullCodeIsVisible:!1}},methods:{togglePreview(){this.previewIsVisible=!this.previewIsVisible},toggleFullCode(){this.fullCodeIsVisible=!this.fullCodeIsVisible}}},Vi=Ei,Li=(n(\"4d5c\"),Object(w[\"a\"])(Vi,bi,Ci,!1,null,\"3bee1128\",null)),Fi=Li.exports;const{BreakpointName:zi}=o[\"a\"].constants;var Ui={name:\"Step\",components:{Asset:Te[\"a\"],MobileCodePreview:Fi,ContentNode:$e[\"a\"]},inject:[\"isTargetIDE\",\"isClientMobile\",\"store\"],props:{code:{type:String,required:!1},content:{type:Array,required:!0},caption:{type:Array,required:!1},media:{type:String,required:!1},runtimePreview:{type:String,required:!1},sectionNumber:{type:Number,required:!0},stepNumber:{type:Number,required:!0},numberOfSteps:{type:Number,required:!0},index:{type:Number,required:!0},currentIndex:{type:Number,required:!0}},data(){return{tutorialState:this.store.state}},computed:{isBreakpointSmall(){return this.tutorialState.breakpoint===zi.small},isActive:({index:e,currentIndex:t})=>e===t}},Hi=Ui,Gi=(n(\"bc03\"),Object(w[\"a\"])(Hi,gi,yi,!1,null,\"4abdd121\",null)),Wi=Gi.exports;const{BreakpointName:Qi}=o[\"a\"].constants,{IntersectionDirections:Ki}=Ke[\"a\"].constants,Xi=\"-35% 0% -65% 0%\";var Ji={name:\"SectionSteps\",components:{ContentNode:$e[\"a\"],Step:Wi,Asset:Te[\"a\"],CodePreview:ci,BackgroundTheme:vi},mixins:[Ke[\"a\"]],constants:{IntersectionMargins:Xi},inject:[\"isTargetIDE\",\"store\"],data(){const e=this.content.findIndex(this.isStepNode),{code:t,media:n,runtimePreview:s}=this.content[e]||{};return{tutorialState:this.store.state,visibleAsset:{media:n,code:t,runtimePreview:s},activeStep:e}},computed:{assetContainerClasses(){return{\"for-step-code\":!!this.visibleAsset.code,ide:this.isTargetIDE}},numberOfSteps(){return this.content.filter(this.isStepNode).length},contentNodes(){return this.content.reduce(({stepCounter:e,nodes:t},n,s)=>{const{type:i,...r}=n,o=this.isStepNode(n),a=o?e+1:e;return o?{stepCounter:e+1,nodes:t.concat({component:Wi,type:i,props:{...r,stepNumber:a,index:s,numberOfSteps:this.numberOfSteps,sectionNumber:this.sectionNumber}})}:{stepCounter:e,nodes:t.concat({component:$e[\"a\"],type:i,props:{content:[n]}})}},{stepCounter:0,nodes:[]}).nodes},isBreakpointSmall(){return this.tutorialState.breakpoint===Qi.small},stepNodes:({contentNodes:e,isStepNode:t})=>e.filter(t),intersectionRootMargin:()=>Xi},async mounted(){await Object(ui[\"b\"])(8),this.findClosestStepNode()},methods:{isStepNode({type:e}){return\"step\"===e},contentClass(e){return{[\"interstitial interstitial-\"+(e+1)]:!this.isStepNode(this.content[e])}},onReverseIntoLastStep(){const{asset:e}=this.$refs;if(e){const t=e.$el.querySelector(\"video\");t&&(t.currentTime=0,t.play().catch(()=>{}))}},onFocus(e){const{code:t,media:n,runtimePreview:s}=this.content[e];this.activeStep=e,this.visibleAsset={code:t,media:n,runtimePreview:s}},onRuntimePreviewToggle(e){this.$emit(\"runtime-preview-toggle\",e)},findClosestStepNode(){const e=.333*window.innerHeight;let t=null,n=0;this.stepNodes.forEach(s=>{const{index:i}=s.props,r=this.$refs.contentNodes[i].$refs.step;if(!r)return;const{top:o,bottom:a}=r.getBoundingClientRect(),l=o-e,c=a-e,u=Math.abs(l+c);(0===n||u<=n)&&(n=u,t=i)}),null!==t&&this.onFocus(t)},getIntersectionTargets(){const{stepNodes:e,$refs:t}=this;return e.map(({props:{index:e}})=>t.contentNodes[e].$refs.step)},onIntersect(e){const{target:t,isIntersecting:n}=e;if(!n)return;const s=parseFloat(t.getAttribute(\"data-index\"));this.intersectionScrollDirection===Ki.down&&s===this.stepNodes[this.stepNodes.length-1].props.index&&this.onReverseIntoLastStep(),this.onFocus(s)}},props:{content:{type:Array,required:!0},isRuntimePreviewVisible:{type:Boolean,require:!0},sectionNumber:{type:Number,required:!0}}},Yi=Ji,Zi=(n(\"00f4\"),Object(w[\"a\"])(Yi,Gs,Ws,!1,null,\"25d30c2c\",null)),er=Zi.exports,tr={name:\"Section\",components:{Intro:Hs,LinkableSection:Ze,Steps:er},computed:{introProps(){const[{content:e,media:t},...n]=this.contentSection;return{content:e,expandedSections:n,media:t,sectionAnchor:this.anchor,sectionNumber:this.sectionNumber,title:this.title}}},props:{anchor:{type:String,required:!0},title:{type:String,required:!0},contentSection:{type:Array,required:!0},stepsSection:{type:Array,required:!0},sectionNumber:{type:Number,required:!0},isRuntimePreviewVisible:{type:Boolean,required:!0}},methods:{onRuntimePreviewToggle(e){this.$emit(\"runtime-preview-toggle\",e)}}},nr=tr,sr=(n(\"9dc4\"),Object(w[\"a\"])(nr,Rs,Es,!1,null,\"6b3a0b3a\",null)),ir=sr.exports,rr={name:\"SectionList\",components:{Section:ir},data(){return{isRuntimePreviewVisible:!0}},props:{tasks:{type:Array,required:!0}},methods:{onRuntimePreviewToggle(e){this.isRuntimePreviewVisible=e}}},or=rr,ar=(n(\"4d07\"),Object(w[\"a\"])(or,Ms,qs,!1,null,\"79a75e9e\",null)),lr=ar.exports;const cr={assessments:_s,hero:qn,tasks:lr,callToAction:Ot},ur=new Set(Object.keys(cr)),dr={name:\"TutorialSection\",render:function(e){const{kind:t,...n}=this.section,s=cr[t];return s?e(s,{props:n}):null},props:{section:{type:Object,required:!0,validator:e=>ur.has(e.kind)}}};var pr={name:\"Tutorial\",mixins:[be[\"a\"],Bs],components:{NavigationBar:ye,Section:dr,PortalTarget:h[\"PortalTarget\"],BreakpointEmitter:o[\"a\"]},inject:[\"isTargetIDE\",\"store\"],computed:{heroSection(){return this.sections.find(({kind:e})=>\"hero\"===e)},tutorialTitle(){return(this.heroSection||{}).title},pageTitle(){return this.tutorialTitle?`${this.tutorialTitle} — ${this.metadata.category} Tutorials`:void 0},pageDescription:({heroSection:e,extractFirstParagraphText:t})=>e?t(e.content):null},props:{sections:{type:Array,required:!0},references:{type:Object,required:!0},hierarchy:{type:Object,required:!0},metadata:{type:Object,required:!0},identifierUrl:{type:String,required:!0}},methods:{handleBreakpointChange(e){this.store.updateBreakpoint(e)},handleCodeColorsChange(e){Ds[\"a\"].updateCodeColors(e)}},created(){this.store.reset()},mounted(){this.$bridge.on(\"codeColors\",this.handleCodeColorsChange),this.$bridge.send({type:\"requestCodeColors\"})},provide(){return{references:this.references,isClientMobile:this.isClientMobile}},beforeDestroy(){this.$bridge.off(\"codeColors\",this.handleCodeColorsChange)}},hr=pr,mr=(n(\"1a91\"),Object(w[\"a\"])(hr,js,Ns,!1,null,\"0f871b08\",null)),fr=mr.exports,vr=n(\"bb52\"),gr=n(\"146e\");const yr={article:\"article\",tutorial:\"project\"};var br={name:\"Topic\",inject:{isTargetIDE:{default:!1}},mixins:[vr[\"a\"],gr[\"a\"]],data(){return{topicData:null}},computed:{navigationBarHeight(){return this.isTargetIDE?0:52},store(){return u},hierarchy(){const{hierarchy:e={}}=this.topicData,{technologyNavigation:t=[\"overview\",\"tutorials\",\"resources\"]}=e||{};return{...e,technologyNavigation:t}},topicKey:({$route:e,topicData:t})=>[e.path,t.identifier.interfaceLanguage].join()},beforeRouteEnter(e,t,n){Object(r[\"b\"])(e,t,n).then(e=>n(t=>{t.topicData=e})).catch(n)},beforeRouteUpdate(e,t,n){Object(r[\"d\"])(e,t)?Object(r[\"b\"])(e,t,n).then(e=>{this.topicData=e,n()}).catch(n):n()},created(){this.store.reset()},mounted(){this.$bridge.on(\"contentUpdate\",e=>{this.topicData=e})},methods:{componentFor(e){const{kind:t}=e;return{[yr.article]:Ps,[yr.tutorial]:fr}[t]},propsFor(e){const{hierarchy:t,kind:n,metadata:s,references:i,sections:r,identifier:o}=e;return{[yr.article]:{hierarchy:t,metadata:s,references:i,sections:r,identifierUrl:o.url},[yr.tutorial]:{hierarchy:t,metadata:s,references:i,sections:r,identifierUrl:o.url}}[n]}},provide(){return{navigationBarHeight:this.navigationBarHeight,store:this.store}},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},Cr=br,wr=Object(w[\"a\"])(Cr,s,i,!1,null,null,null);t[\"default\"]=wr.exports},\"323a\":function(e,t,n){\"use strict\";n(\"0b61\")},\"32b1\":function(e,t,n){},\"385e\":function(e,t,n){},\"3a78\":function(e,t,n){\"use strict\";n(\"90d1\")},\"3c4b\":function(e,t,n){\"use strict\";n(\"1aae\")},\"3e1b\":function(e,t,n){\"use strict\";n(\"c5c1\")},4896:function(e,t,n){\"use strict\";n(\"fa9c\")},\"4b4a\":function(e,t,n){},\"4d07\":function(e,t,n){\"use strict\";n(\"b52e\")},\"4d5c\":function(e,t,n){\"use strict\";n(\"7730\")},\"4eea\":function(e,t,n){},5053:function(e,t,n){\"use strict\";n(\"61a8\")},5237:function(e,t,n){\"use strict\";n(\"4b4a\")},5241:function(e,t,n){\"use strict\";n(\"2b86\")},\"525c\":function(e,t,n){},5356:function(e,t,n){\"use strict\";n(\"7e3c\")},\"53b5\":function(e,t,n){\"use strict\";n(\"a662\")},5913:function(e,t,n){},5952:function(e,t,n){\"use strict\";n(\"14b7\")},\"5c7b\":function(e,t,n){\"use strict\";n(\"311e\")},\"5da4\":function(e,t,n){},\"61a8\":function(e,t,n){},\"63a8\":function(e,t,n){},\"653a\":function(e,t,n){\"use strict\";var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"router-link\",{staticClass:\"nav-title-content\",attrs:{to:e.to}},[n(\"span\",{staticClass:\"title\"},[e._t(\"default\")],2),n(\"span\",{staticClass:\"subhead\"},[e._v(\" \"),e._t(\"subhead\")],2)])},i=[],r={name:\"NavTitleContainer\",props:{to:{type:[String,Object],required:!0}}},o=r,a=(n(\"a497\"),n(\"2877\")),l=Object(a[\"a\"])(o,s,i,!1,null,\"60ea3af8\",null);t[\"a\"]=l.exports},\"66c9\":function(e,t,n){\"use strict\";t[\"a\"]={state:{codeColors:null},reset(){this.state.codeColors=null},updateCodeColors(e){const t=e=>e?`rgba(${e.red}, ${e.green}, ${e.blue}, ${e.alpha})`:null;this.state.codeColors=Object.entries(e).reduce((e,[n,s])=>({...e,[n]:t(s)}),{})}}},7096:function(e,t,n){},7730:function(e,t,n){},7839:function(e,t,n){\"use strict\";n(\"385e\")},7948:function(e,t,n){\"use strict\";var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"inline-chevron-down-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M12.634 2.964l0.76 0.649-6.343 7.426-6.445-7.423 0.755-0.655 5.683 6.545 5.59-6.542z\"}})])},i=[],r=n(\"be08\"),o={name:\"InlineChevronDownIcon\",components:{SVGIcon:r[\"a\"]}},a=o,l=n(\"2877\"),c=Object(l[\"a\"])(a,s,i,!1,null,null,null);t[\"a\"]=c.exports},\"7b17\":function(e,t,n){},\"7e3c\":function(e,t,n){},8016:function(e,t,n){\"use strict\";n(\"ce7d\")},\"80e4\":function(e,t,n){\"use strict\";var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"asset\"},[n(e.assetComponent,e._g(e._b({tag:\"component\"},\"component\",e.assetProps,!1),e.assetListeners))],1)},i=[],r=n(\"8bd9\"),o=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"video\",{attrs:{controls:e.showsControls,autoplay:e.autoplays,poster:e.normalizeAssetUrl(e.defaultPosterAttributes.url),muted:\"\",playsinline:\"\"},domProps:{muted:!0},on:{playing:function(t){return e.$emit(\"playing\")},ended:function(t){return e.$emit(\"ended\")}}},[n(\"source\",{attrs:{src:e.normalizeAssetUrl(e.videoAttributes.url)}})])},a=[],l=n(\"748c\"),c=n(\"e425\"),u=n(\"821b\"),d={name:\"VideoAsset\",props:{variants:{type:Array,required:!0},showsControls:{type:Boolean,default:()=>!0},autoplays:{type:Boolean,default:()=>!0},posterVariants:{type:Array,required:!1,default:()=>[]}},data:()=>({appState:c[\"a\"].state}),computed:{preferredColorScheme:({appState:e})=>e.preferredColorScheme,systemColorScheme:({appState:e})=>e.systemColorScheme,userPrefersDark:({preferredColorScheme:e,systemColorScheme:t})=>e===u[\"a\"].dark.value||e===u[\"a\"].auto.value&&t===u[\"a\"].dark.value,shouldShowDarkVariant:({darkVideoVariantAttributes:e,userPrefersDark:t})=>e&&t,defaultVideoAttributes(){return this.videoVariantsGroupedByAppearance.light[0]||this.darkVideoVariantAttributes||{}},darkVideoVariantAttributes(){return this.videoVariantsGroupedByAppearance.dark[0]},videoVariantsGroupedByAppearance(){return Object(l[\"d\"])(this.variants)},posterVariantsGroupedByAppearance(){return Object(l[\"d\"])(this.posterVariants)},defaultPosterAttributes:({posterVariantsGroupedByAppearance:e,userPrefersDark:t})=>t&&e.dark.length?e.dark[0]:e.light[0]||{},videoAttributes:({darkVideoVariantAttributes:e,defaultVideoAttributes:t,shouldShowDarkVariant:n})=>n?e:t},methods:{normalizeAssetUrl:l[\"b\"]}},p=d,h=n(\"2877\"),m=Object(h[\"a\"])(p,o,a,!1,null,null,null),f=m.exports,v=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{staticClass:\"video-replay-container\"},[n(\"VideoAsset\",{ref:\"asset\",attrs:{variants:e.variants,showsControls:e.showsControls,autoplays:e.autoplays},on:{ended:e.onVideoEnd}}),n(\"a\",{staticClass:\"replay-button\",class:{visible:this.showsReplayButton},attrs:{href:\"#\"},on:{click:function(t){return t.preventDefault(),e.replay.apply(null,arguments)}}},[e._v(\" Replay \"),n(\"InlineReplayIcon\",{staticClass:\"replay-icon icon-inline\"})],1)],1)},g=[],y=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"inline-replay-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M2.254 10.201c-1.633-2.613-0.838-6.056 1.775-7.689 2.551-1.594 5.892-0.875 7.569 1.592l0.12 0.184-0.848 0.53c-1.34-2.145-4.166-2.797-6.311-1.457s-2.797 4.166-1.457 6.311 4.166 2.797 6.311 1.457c1.006-0.629 1.71-1.603 2.003-2.723l0.056-0.242 0.98 0.201c-0.305 1.487-1.197 2.792-2.51 3.612-2.613 1.633-6.056 0.838-7.689-1.775z\"}}),n(\"path\",{attrs:{d:\"M10.76 1.355l0.984-0.18 0.851 4.651-4.56-1.196 0.254-0.967 3.040 0.796z\"}})])},b=[],C=n(\"be08\"),w={name:\"InlineReplayIcon\",components:{SVGIcon:C[\"a\"]}},_=w,S=Object(h[\"a\"])(_,y,b,!1,null,null,null),k=S.exports,x={name:\"ReplayableVideoAsset\",components:{InlineReplayIcon:k,VideoAsset:f},props:{variants:{type:Array,required:!0},showsControls:{type:Boolean,default:()=>!0},autoplays:{type:Boolean,default:()=>!0}},data(){return{showsReplayButton:!1}},methods:{async replay(){const e=this.$refs.asset.$el;e&&(await e.play(),this.showsReplayButton=!1)},onVideoEnd(){this.showsReplayButton=!0}}},T=x,A=(n(\"dffc\"),Object(h[\"a\"])(T,v,g,!1,null,\"59608016\",null)),I=A.exports;const $={video:\"video\",image:\"image\"};var O={name:\"Asset\",components:{ImageAsset:r[\"a\"],VideoAsset:f},constants:{AssetTypes:$},inject:[\"references\"],props:{identifier:{type:String,required:!0},showsReplayButton:{type:Boolean,default:()=>!1},showsVideoControls:{type:Boolean,default:()=>!0},videoAutoplays:{type:Boolean,default:()=>!0}},computed:{rawAsset(){return this.references[this.identifier]||{}},isRawAssetVideo:({rawAsset:e})=>e.type===$.video,videoPoster(){return this.isRawAssetVideo&&this.references[this.rawAsset.poster]},asset(){return this.isRawAssetVideo&&this.prefersReducedMotion&&this.videoPoster||this.rawAsset},assetComponent(){switch(this.asset.type){case $.image:return r[\"a\"];case $.video:return this.showsReplayButton?I:f;default:return}},prefersReducedMotion(){return window.matchMedia(\"(prefers-reduced-motion)\").matches},assetProps(){return{[$.image]:this.imageProps,[$.video]:this.videoProps}[this.asset.type]},imageProps(){return{alt:this.asset.alt,variants:this.asset.variants}},videoProps(){return{variants:this.asset.variants,showsControls:this.showsVideoControls,autoplays:!this.prefersReducedMotion&&this.videoAutoplays,posterVariants:this.videoPoster?this.videoPoster.variants:[]}},assetListeners(){return{[$.image]:null,[$.video]:{ended:()=>this.$emit(\"videoEnded\")}}[this.asset.type]}}},P=O,j=(n(\"7839\"),Object(h[\"a\"])(P,s,i,!1,null,\"1b5cc854\",null));t[\"a\"]=j.exports},\"80f7\":function(e,t,n){\"use strict\";n(\"4eea\")},8590:function(e,t,n){\"use strict\";var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"div\",{style:e.codeStyle},[e._t(\"default\")],2)},i=[],r=n(\"66c9\");const o=0,a=255;function l(e){const t=e.match(/rgba\\((\\d+),\\s*(\\d+),\\s*(\\d+),\\s*(\\d+\\.?\\d*|\\.\\d+)\\s*\\)/);if(!t)throw new Error(\"invalid rgba() input\");const n=10;return{r:parseInt(t[1],n),g:parseInt(t[2],n),b:parseInt(t[3],n),a:parseFloat(t[4])}}function c(e){const{r:t,g:n,b:s}=l(e);return.2126*t+.7152*n+.0722*s}function u(e,t){const n=Math.round(a*t),s=l(e),{a:i}=s,[r,c,u]=[s.r,s.g,s.b].map(e=>Math.max(o,Math.min(a,e+n)));return`rgba(${r}, ${c}, ${u}, ${i})`}function d(e,t){return u(e,t)}function p(e,t){return u(e,-1*t)}var h={name:\"CodeTheme\",data(){return{codeThemeState:r[\"a\"].state}},computed:{codeStyle(){const{codeColors:e}=this.codeThemeState;return e?{\"--text\":e.text,\"--background\":e.background,\"--line-highlight\":e.lineHighlight,\"--url\":e.commentURL,\"--syntax-comment\":e.comment,\"--syntax-quote\":e.comment,\"--syntax-keyword\":e.keyword,\"--syntax-literal\":e.keyword,\"--syntax-selector-tag\":e.keyword,\"--syntax-string\":e.stringLiteral,\"--syntax-bullet\":e.stringLiteral,\"--syntax-meta\":e.keyword,\"--syntax-number\":e.stringLiteral,\"--syntax-symbol\":e.stringLiteral,\"--syntax-tag\":e.stringLiteral,\"--syntax-attr\":e.typeAnnotation,\"--syntax-built_in\":e.typeAnnotation,\"--syntax-builtin-name\":e.typeAnnotation,\"--syntax-class\":e.typeAnnotation,\"--syntax-params\":e.typeAnnotation,\"--syntax-section\":e.typeAnnotation,\"--syntax-title\":e.typeAnnotation,\"--syntax-type\":e.typeAnnotation,\"--syntax-attribute\":e.keyword,\"--syntax-identifier\":e.text,\"--syntax-subst\":e.text,\"--color-syntax-param-internal-name\":this.internalParamNameColor}:null},internalParamNameColor(){const{background:e,text:t}=this.codeThemeState.codeColors;try{const n=c(e),s=n<a/2?p:d,i=.25;return s(t,i)}catch{return t}}}},m=h,f=n(\"2877\"),v=Object(f[\"a\"])(m,s,i,!1,null,null,null);t[\"a\"]=v.exports},\"90d1\":function(e,t,n){},\"9dc4\":function(e,t,n){\"use strict\";n(\"fe9d\")},a497:function(e,t,n){\"use strict\";n(\"da75\")},a662:function(e,t,n){},a95e:function(e,t,n){},aece:function(e,t,n){\"use strict\";n(\"c0df\")},b52e:function(e,t,n){},bc03:function(e,t,n){\"use strict\";n(\"5da4\")},c0df:function(e,t,n){},c4dd:function(e,t,n){\"use strict\";var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"play-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z\"}}),n(\"path\",{attrs:{d:\"M10.195 7.010l-5 3v-6l5 3z\"}})])},i=[],r=n(\"be08\"),o={name:\"PlayIcon\",components:{SVGIcon:r[\"a\"]}},a=o,l=n(\"2877\"),c=Object(l[\"a\"])(a,s,i,!1,null,null,null);t[\"a\"]=c.exports},c5c1:function(e,t,n){},cb8d:function(e,t,n){\"use strict\";n(\"0466\")},ce7d:function(e,t,n){},d86f:function(e,t,n){},da75:function(e,t,n){},db87:function(e,t,n){},dbd9:function(e,t,n){},dbeb:function(e,t,n){},de60:function(e,t,n){\"use strict\";var s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(\"SVGIcon\",{staticClass:\"download-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z\"}}),n(\"path\",{attrs:{d:\"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z\"}})])},i=[],r=n(\"be08\"),o={name:\"DownloadIcon\",components:{SVGIcon:r[\"a\"]}},a=o,l=n(\"2877\"),c=Object(l[\"a\"])(a,s,i,!1,null,null,null);t[\"a\"]=c.exports},dffc:function(e,t,n){\"use strict\";n(\"f3cd\")},e4e4:function(e,t,n){\"use strict\";n(\"f767\")},e688:function(e,t,n){\"use strict\";n(\"5913\")},e84c:function(e,t,n){\"use strict\";n(\"d86f\")},e97b:function(e,t,n){\"use strict\";n(\"dbd9\")},e9b0:function(e,t,n){\"use strict\";n(\"ee09\")},ed71:function(e,t,n){\"use strict\";n(\"7096\")},ee09:function(e,t,n){},f264:function(e,t,n){\"use strict\";n(\"63a8\")},f3cd:function(e,t,n){},f767:function(e,t,n){},fa9c:function(e,t,n){},fae5:function(e,t,n){\"use strict\";n(\"32b1\")},fe9d:function(e,t,n){}}]);"
  },
  {
    "path": "docs/js/tutorials-overview.c8178b83.js",
    "content": "/*!\n * This source file is part of the Swift.org open source project\n * \n * Copyright (c) 2021 Apple Inc. and the Swift project authors\n * Licensed under Apache License v2.0 with Runtime Library Exception\n * \n * See https://swift.org/LICENSE.txt for license information\n * See https://swift.org/CONTRIBUTORS.txt for Swift project authors\n */\n(window[\"webpackJsonp\"]=window[\"webpackJsonp\"]||[]).push([[\"tutorials-overview\"],{\"0175\":function(t,e,n){\"use strict\";n(\"ec73\")},\"032c\":function(t,e,n){\"use strict\";n(\"9b79\")},\"095b\":function(t,e,n){\"use strict\";n(\"3601\")},\"1cc5\":function(t,e,n){\"use strict\";n(\"5780\")},\"202a\":function(t,e,n){\"use strict\";n(\"5899\")},\"246a\":function(t,e,n){},3601:function(t,e,n){},\"385e\":function(t,e,n){},\"3b96\":function(t,e,n){\"use strict\";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"SVGIcon\",{staticClass:\"curly-brackets-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M9.987 14h-0.814v-0.916h0.36c0.137 0 0.253-0.038 0.349-0.116 0.099-0.080 0.179-0.188 0.239-0.318 0.064-0.134 0.11-0.298 0.139-0.483 0.031-0.186 0.045-0.38 0.045-0.58v-2.115c0-0.417 0.046-0.781 0.139-1.083 0.092-0.3 0.2-0.554 0.322-0.754 0.127-0.203 0.246-0.353 0.366-0.458 0.087-0.076 0.155-0.131 0.207-0.169-0.052-0.037-0.12-0.093-0.207-0.167-0.12-0.105-0.239-0.255-0.366-0.459-0.122-0.2-0.23-0.453-0.322-0.754-0.093-0.3-0.139-0.665-0.139-1.082v-2.13c0-0.199-0.014-0.392-0.045-0.572-0.029-0.182-0.076-0.345-0.139-0.483-0.060-0.137-0.141-0.246-0.239-0.328-0.095-0.076-0.212-0.115-0.349-0.115h-0.36v-0.916h0.814c0.442 0 0.788 0.18 1.030 0.538 0.238 0.352 0.358 0.826 0.358 1.407v2.236c0 0.3 0.015 0.597 0.044 0.886 0.030 0.287 0.086 0.544 0.164 0.765 0.077 0.216 0.184 0.392 0.318 0.522 0.129 0.124 0.298 0.188 0.503 0.188h0.058v0.916h-0.058c-0.206 0-0.374 0.064-0.503 0.188-0.134 0.129-0.242 0.305-0.318 0.521-0.078 0.223-0.134 0.48-0.164 0.766-0.029 0.288-0.044 0.587-0.044 0.884v2.236c0 0.582-0.12 1.055-0.358 1.409-0.242 0.358-0.588 0.538-1.030 0.538z\"}}),n(\"path\",{attrs:{d:\"M4.827 14h-0.814c-0.442 0-0.788-0.18-1.030-0.538-0.238-0.352-0.358-0.825-0.358-1.409v-2.221c0-0.301-0.015-0.599-0.045-0.886-0.029-0.287-0.085-0.544-0.163-0.764-0.077-0.216-0.184-0.393-0.318-0.522-0.131-0.127-0.296-0.188-0.503-0.188h-0.058v-0.916h0.058c0.208 0 0.373-0.063 0.503-0.188 0.135-0.129 0.242-0.304 0.318-0.522 0.078-0.22 0.134-0.477 0.163-0.765 0.030-0.286 0.045-0.585 0.045-0.886v-2.251c0-0.582 0.12-1.055 0.358-1.407 0.242-0.358 0.588-0.538 1.030-0.538h0.814v0.916h-0.36c-0.138 0-0.252 0.038-0.349 0.116-0.099 0.079-0.179 0.189-0.239 0.327-0.064 0.139-0.11 0.302-0.141 0.483-0.029 0.18-0.044 0.373-0.044 0.572v2.13c0 0.417-0.046 0.782-0.138 1.082-0.092 0.302-0.201 0.556-0.324 0.754-0.123 0.201-0.246 0.356-0.366 0.459-0.086 0.074-0.153 0.13-0.206 0.167 0.052 0.038 0.12 0.093 0.206 0.169 0.12 0.103 0.243 0.258 0.366 0.458s0.232 0.453 0.324 0.754c0.092 0.302 0.138 0.666 0.138 1.083v2.115c0 0.2 0.015 0.394 0.044 0.58 0.030 0.186 0.077 0.349 0.139 0.482 0.062 0.132 0.142 0.239 0.241 0.32 0.096 0.079 0.21 0.116 0.349 0.116h0.36z\"}})])},a=[],i=n(\"be08\"),o={name:\"CurlyBracketsIcon\",components:{SVGIcon:i[\"a\"]}},r=o,c=n(\"2877\"),l=Object(c[\"a\"])(r,s,a,!1,null,null,null);e[\"a\"]=l.exports},\"3f36\":function(t,e,n){\"use strict\";n(\"246a\")},\"54b0\":function(t,e,n){},5668:function(t,e,n){\"use strict\";n(\"82d9\")},5780:function(t,e,n){},5899:function(t,e,n){},6211:function(t,e,n){\"use strict\";n(\"75f3\")},\"653a\":function(t,e,n){\"use strict\";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"router-link\",{staticClass:\"nav-title-content\",attrs:{to:t.to}},[n(\"span\",{staticClass:\"title\"},[t._t(\"default\")],2),n(\"span\",{staticClass:\"subhead\"},[t._v(\" \"),t._t(\"subhead\")],2)])},a=[],i={name:\"NavTitleContainer\",props:{to:{type:[String,Object],required:!0}}},o=i,r=(n(\"a497\"),n(\"2877\")),c=Object(r[\"a\"])(o,s,a,!1,null,\"60ea3af8\",null);e[\"a\"]=c.exports},6962:function(t,e,n){\"use strict\";n(\"85fb\")},\"75f3\":function(t,e,n){},\"77e2\":function(t,e,n){\"use strict\";n(\"fb73\")},7839:function(t,e,n){\"use strict\";n(\"385e\")},\"80e4\":function(t,e,n){\"use strict\";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"asset\"},[n(t.assetComponent,t._g(t._b({tag:\"component\"},\"component\",t.assetProps,!1),t.assetListeners))],1)},a=[],i=n(\"8bd9\"),o=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"video\",{attrs:{controls:t.showsControls,autoplay:t.autoplays,poster:t.normalizeAssetUrl(t.defaultPosterAttributes.url),muted:\"\",playsinline:\"\"},domProps:{muted:!0},on:{playing:function(e){return t.$emit(\"playing\")},ended:function(e){return t.$emit(\"ended\")}}},[n(\"source\",{attrs:{src:t.normalizeAssetUrl(t.videoAttributes.url)}})])},r=[],c=n(\"748c\"),l=n(\"e425\"),u=n(\"821b\"),d={name:\"VideoAsset\",props:{variants:{type:Array,required:!0},showsControls:{type:Boolean,default:()=>!0},autoplays:{type:Boolean,default:()=>!0},posterVariants:{type:Array,required:!1,default:()=>[]}},data:()=>({appState:l[\"a\"].state}),computed:{preferredColorScheme:({appState:t})=>t.preferredColorScheme,systemColorScheme:({appState:t})=>t.systemColorScheme,userPrefersDark:({preferredColorScheme:t,systemColorScheme:e})=>t===u[\"a\"].dark.value||t===u[\"a\"].auto.value&&e===u[\"a\"].dark.value,shouldShowDarkVariant:({darkVideoVariantAttributes:t,userPrefersDark:e})=>t&&e,defaultVideoAttributes(){return this.videoVariantsGroupedByAppearance.light[0]||this.darkVideoVariantAttributes||{}},darkVideoVariantAttributes(){return this.videoVariantsGroupedByAppearance.dark[0]},videoVariantsGroupedByAppearance(){return Object(c[\"d\"])(this.variants)},posterVariantsGroupedByAppearance(){return Object(c[\"d\"])(this.posterVariants)},defaultPosterAttributes:({posterVariantsGroupedByAppearance:t,userPrefersDark:e})=>e&&t.dark.length?t.dark[0]:t.light[0]||{},videoAttributes:({darkVideoVariantAttributes:t,defaultVideoAttributes:e,shouldShowDarkVariant:n})=>n?t:e},methods:{normalizeAssetUrl:c[\"b\"]}},p=d,m=n(\"2877\"),h=Object(m[\"a\"])(p,o,r,!1,null,null,null),v=h.exports,f=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"video-replay-container\"},[n(\"VideoAsset\",{ref:\"asset\",attrs:{variants:t.variants,showsControls:t.showsControls,autoplays:t.autoplays},on:{ended:t.onVideoEnd}}),n(\"a\",{staticClass:\"replay-button\",class:{visible:this.showsReplayButton},attrs:{href:\"#\"},on:{click:function(e){return e.preventDefault(),t.replay.apply(null,arguments)}}},[t._v(\" Replay \"),n(\"InlineReplayIcon\",{staticClass:\"replay-icon icon-inline\"})],1)],1)},y=[],b=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"SVGIcon\",{staticClass:\"inline-replay-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M2.254 10.201c-1.633-2.613-0.838-6.056 1.775-7.689 2.551-1.594 5.892-0.875 7.569 1.592l0.12 0.184-0.848 0.53c-1.34-2.145-4.166-2.797-6.311-1.457s-2.797 4.166-1.457 6.311 4.166 2.797 6.311 1.457c1.006-0.629 1.71-1.603 2.003-2.723l0.056-0.242 0.98 0.201c-0.305 1.487-1.197 2.792-2.51 3.612-2.613 1.633-6.056 0.838-7.689-1.775z\"}}),n(\"path\",{attrs:{d:\"M10.76 1.355l0.984-0.18 0.851 4.651-4.56-1.196 0.254-0.967 3.040 0.796z\"}})])},C=[],_=n(\"be08\"),g={name:\"InlineReplayIcon\",components:{SVGIcon:_[\"a\"]}},V=g,S=Object(m[\"a\"])(V,b,C,!1,null,null,null),A=S.exports,T={name:\"ReplayableVideoAsset\",components:{InlineReplayIcon:A,VideoAsset:v},props:{variants:{type:Array,required:!0},showsControls:{type:Boolean,default:()=>!0},autoplays:{type:Boolean,default:()=>!0}},data(){return{showsReplayButton:!1}},methods:{async replay(){const t=this.$refs.asset.$el;t&&(await t.play(),this.showsReplayButton=!1)},onVideoEnd(){this.showsReplayButton=!0}}},w=T,k=(n(\"dffc\"),Object(m[\"a\"])(w,f,y,!1,null,\"59608016\",null)),I=k.exports;const x={video:\"video\",image:\"image\"};var O={name:\"Asset\",components:{ImageAsset:i[\"a\"],VideoAsset:v},constants:{AssetTypes:x},inject:[\"references\"],props:{identifier:{type:String,required:!0},showsReplayButton:{type:Boolean,default:()=>!1},showsVideoControls:{type:Boolean,default:()=>!0},videoAutoplays:{type:Boolean,default:()=>!0}},computed:{rawAsset(){return this.references[this.identifier]||{}},isRawAssetVideo:({rawAsset:t})=>t.type===x.video,videoPoster(){return this.isRawAssetVideo&&this.references[this.rawAsset.poster]},asset(){return this.isRawAssetVideo&&this.prefersReducedMotion&&this.videoPoster||this.rawAsset},assetComponent(){switch(this.asset.type){case x.image:return i[\"a\"];case x.video:return this.showsReplayButton?I:v;default:return}},prefersReducedMotion(){return window.matchMedia(\"(prefers-reduced-motion)\").matches},assetProps(){return{[x.image]:this.imageProps,[x.video]:this.videoProps}[this.asset.type]},imageProps(){return{alt:this.asset.alt,variants:this.asset.variants}},videoProps(){return{variants:this.asset.variants,showsControls:this.showsVideoControls,autoplays:!this.prefersReducedMotion&&this.videoAutoplays,posterVariants:this.videoPoster?this.videoPoster.variants:[]}},assetListeners(){return{[x.image]:null,[x.video]:{ended:()=>this.$emit(\"videoEnded\")}}[this.asset.type]}}},j=O,N=(n(\"7839\"),Object(m[\"a\"])(j,s,a,!1,null,\"1b5cc854\",null));e[\"a\"]=N.exports},\"82d9\":function(t,e,n){},\"85fb\":function(t,e,n){},\"8d2d\":function(t,e,n){\"use strict\";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"SVGIcon\",{staticClass:\"tutorial-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M0.933 6.067h3.733v1.867h-3.733v-1.867z\"}}),n(\"path\",{attrs:{d:\"M0.933 1.867h3.733v1.867h-3.733v-1.867z\"}}),n(\"path\",{attrs:{d:\"M13.067 1.867v10.267h-7.467v-10.267zM12.133 2.8h-5.6v8.4h5.6z\"}}),n(\"path\",{attrs:{d:\"M0.933 10.267h3.733v1.867h-3.733v-1.867z\"}})])},a=[],i=n(\"be08\"),o={name:\"TutorialIcon\",components:{SVGIcon:i[\"a\"]}},r=o,c=n(\"2877\"),l=Object(c[\"a\"])(r,s,a,!1,null,null,null);e[\"a\"]=l.exports},\"8f86\":function(t,e,n){},\"9b79\":function(t,e,n){},\"9f56\":function(t,e,n){},a497:function(t,e,n){\"use strict\";n(\"da75\")},a9f1:function(t,e,n){\"use strict\";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"SVGIcon\",{staticClass:\"article-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M8.033 1l3.967 4.015v7.985h-10v-12zM7.615 2h-4.615v10h8v-6.574z\"}}),n(\"path\",{attrs:{d:\"M7 1h1v4h-1z\"}}),n(\"path\",{attrs:{d:\"M7 5h5v1h-5z\"}})])},a=[],i=n(\"be08\"),o={name:\"ArticleIcon\",components:{SVGIcon:i[\"a\"]}},r=o,c=n(\"2877\"),l=Object(c[\"a\"])(r,s,a,!1,null,null,null);e[\"a\"]=l.exports},b185:function(t,e,n){},b9c2:function(t,e,n){},c4dd:function(t,e,n){\"use strict\";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"SVGIcon\",{staticClass:\"play-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5v0c0-3.038-2.462-5.5-5.5-5.5v0z\"}}),n(\"path\",{attrs:{d:\"M10.195 7.010l-5 3v-6l5 3z\"}})])},a=[],i=n(\"be08\"),o={name:\"PlayIcon\",components:{SVGIcon:i[\"a\"]}},r=o,c=n(\"2877\"),l=Object(c[\"a\"])(r,s,a,!1,null,null,null);e[\"a\"]=l.exports},c802:function(t,e,n){\"use strict\";n(\"f084\")},d647:function(t,e,n){\"use strict\";n(\"b185\")},da75:function(t,e,n){},dcb9:function(t,e,n){},de60:function(t,e,n){\"use strict\";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"SVGIcon\",{staticClass:\"download-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5s2.91-6.5 6.5-6.5zM7 1.5c-3.038 0-5.5 2.462-5.5 5.5s2.462 5.5 5.5 5.5c3.038 0 5.5-2.462 5.5-5.5s-2.462-5.5-5.5-5.5z\"}}),n(\"path\",{attrs:{d:\"M7.51 2.964l-0.001 5.431 1.308-2.041 0.842 0.539-2.664 4.162-2.633-4.164 0.845-0.534 1.303 2.059 0.001-5.452z\"}})])},a=[],i=n(\"be08\"),o={name:\"DownloadIcon\",components:{SVGIcon:i[\"a\"]}},r=o,c=n(\"2877\"),l=Object(c[\"a\"])(r,s,a,!1,null,null,null);e[\"a\"]=l.exports},dffc:function(t,e,n){\"use strict\";n(\"f3cd\")},e929:function(t,e,n){\"use strict\";n(\"54b0\")},ec73:function(t,e,n){},ee29:function(t,e,n){\"use strict\";n(\"b9c2\")},f025:function(t,e,n){\"use strict\";n.r(e);var s,a,i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.topicData?n(\"Overview\",t._b({key:t.topicKey},\"Overview\",t.overviewProps,!1)):t._e()},o=[],r=n(\"25a9\"),c=n(\"bb52\"),l=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"tutorials-overview\"},[t.isTargetIDE?t._e():n(\"Nav\",{staticClass:\"theme-dark\",attrs:{sections:t.otherSections}},[t._v(\" \"+t._s(t.title)+\" \")]),n(\"main\",{staticClass:\"main\",attrs:{id:\"main\",role:\"main\",tabindex:\"0\"}},[n(\"div\",{staticClass:\"radial-gradient\"},[t._t(\"above-hero\"),t.heroSection?n(\"Hero\",{attrs:{action:t.heroSection.action,content:t.heroSection.content,estimatedTime:t.metadata.estimatedTime,image:t.heroSection.image,title:t.heroSection.title}}):t._e()],2),t.otherSections.length>0?n(\"LearningPath\",{attrs:{sections:t.otherSections}}):t._e()],1)],1)},u=[],d={state:{activeTutorialLink:null,activeVolume:null},reset(){this.state.activeTutorialLink=null,this.state.activeVolume=null},setActiveSidebarLink(t){this.state.activeTutorialLink=t},setActiveVolume(t){this.state.activeVolume=t}},p=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"NavBase\",[n(\"NavTitleContainer\",{attrs:{to:t.buildUrl(t.$route.path,t.$route.query)}},[n(\"template\",{slot:\"default\"},[t._t(\"default\")],2),n(\"template\",{slot:\"subhead\"},[t._v(\"Tutorials\")])],2),n(\"template\",{slot:\"menu-items\"},[n(\"NavMenuItemBase\",{staticClass:\"in-page-navigation\"},[n(\"TutorialsNavigation\",{attrs:{sections:t.sections}})],1),t._t(\"menu-items\")],2)],2)},m=[],h=n(\"cbcf\"),v=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"nav\",{staticClass:\"tutorials-navigation\"},[n(\"TutorialsNavigationList\",t._l(t.sections,(function(e,s){return n(\"li\",{key:e.name+\"_\"+s,class:t.sectionClasses(e)},[t.isVolume(e)?n(t.componentForVolume(e),t._b({tag:\"component\",on:{\"select-menu\":t.onSelectMenu,\"deselect-menu\":t.onDeselectMenu}},\"component\",t.propsForVolume(e),!1),t._l(e.chapters,(function(e){return n(\"li\",{key:e.name},[n(\"TutorialsNavigationLink\",[t._v(\" \"+t._s(e.name)+\" \")])],1)})),0):t.isResources(e)?n(\"TutorialsNavigationLink\",[t._v(\" Resources \")]):t._e()],1)})),0)],1)},f=[],y=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"router-link\",{staticClass:\"tutorials-navigation-link\",class:{active:t.active},attrs:{to:t.fragment},nativeOn:{click:function(e){return t.handleFocus.apply(null,arguments)}}},[t._t(\"default\")],2)},b=[],C=n(\"002d\"),_=n(\"8a61\"),g={name:\"TutorialsNavigationLink\",mixins:[_[\"a\"]],inject:{store:{default:()=>({state:{}})}},data(){return{state:this.store.state}},computed:{active:({state:{activeTutorialLink:t},text:e})=>e===t,fragment:({text:t,$route:e})=>({hash:Object(C[\"a\"])(t),query:e.query}),text:({$slots:{default:[{text:t}]}})=>t.trim()},methods:{async handleFocus(){const{hash:t}=this.fragment,e=document.getElementById(t);e&&(e.focus(),await this.scrollToElement(\"#\"+t))}}},V=g,S=(n(\"6962\"),n(\"2877\")),A=Object(S[\"a\"])(V,y,b,!1,null,\"6bb99205\",null),T=A.exports,w=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"ol\",{staticClass:\"tutorials-navigation-list\",attrs:{role:\"list\"}},[t._t(\"default\")],2)},k=[],I={name:\"TutorialsNavigationList\"},x=I,O=(n(\"202a\"),Object(S[\"a\"])(x,w,k,!1,null,\"6f2800d1\",null)),j=O.exports,N=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"tutorials-navigation-menu\",class:{collapsed:t.collapsed}},[n(\"button\",{staticClass:\"toggle\",attrs:{\"aria-expanded\":t.collapsed?\"false\":\"true\",type:\"button\"},on:{click:function(e){return e.stopPropagation(),t.onClick.apply(null,arguments)}}},[n(\"span\",{staticClass:\"text\"},[t._v(t._s(t.title))]),n(\"InlineCloseIcon\",{staticClass:\"toggle-icon icon-inline\"})],1),n(\"transition-expand\",[t.collapsed?t._e():n(\"div\",{staticClass:\"tutorials-navigation-menu-content\"},[n(\"TutorialsNavigationList\",{attrs:{\"aria-label\":\"Chapters\"}},[t._t(\"default\")],2)],1)])],1)},M=[],E=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"SVGIcon\",{staticClass:\"inline-close-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M11.91 1l1.090 1.090-4.917 4.915 4.906 4.905-1.090 1.090-4.906-4.905-4.892 4.894-1.090-1.090 4.892-4.894-4.903-4.904 1.090-1.090 4.903 4.904z\"}})])},$=[],q=n(\"be08\"),B={name:\"InlineCloseIcon\",components:{SVGIcon:q[\"a\"]}},R=B,z=Object(S[\"a\"])(R,E,$,!1,null,null,null),D=z.exports,L={name:\"TransitionExpand\",functional:!0,render(t,e){const n={props:{name:\"expand\"},on:{afterEnter(t){t.style.height=\"auto\"},enter(t){const{width:e}=getComputedStyle(t);t.style.width=e,t.style.position=\"absolute\",t.style.visibility=\"hidden\",t.style.height=\"auto\";const{height:n}=getComputedStyle(t);t.style.width=null,t.style.position=null,t.style.visibility=null,t.style.height=0,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=n})},leave(t){const{height:e}=getComputedStyle(t);t.style.height=e,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=0})}}};return t(\"transition\",n,e.children)}},P=L,G=(n(\"032c\"),Object(S[\"a\"])(P,s,a,!1,null,null,null)),F=G.exports,H={name:\"TutorialsNavigationMenu\",components:{InlineCloseIcon:D,TransitionExpand:F,TutorialsNavigationList:j},props:{collapsed:{type:Boolean,default:!0},title:{type:String,required:!0}},methods:{onClick(){this.collapsed?this.$emit(\"select-menu\",this.title):this.$emit(\"deselect-menu\")}}},K=H,U=(n(\"d647\"),Object(S[\"a\"])(K,N,M,!1,null,\"6513d652\",null)),Z=U.exports;const J={resources:\"resources\",volume:\"volume\"};var Q={name:\"TutorialsNavigation\",components:{TutorialsNavigationLink:T,TutorialsNavigationList:j,TutorialsNavigationMenu:Z},constants:{SectionKind:J},inject:{store:{default:()=>({setActiveVolume(){}})}},data(){return{state:this.store.state}},props:{sections:{type:Array,required:!0}},computed:{activeVolume:({state:t})=>t.activeVolume},methods:{sectionClasses(t){return{volume:this.isVolume(t),\"volume--named\":this.isNamedVolume(t),resource:this.isResources(t)}},componentForVolume:({name:t})=>t?Z:j,isResources:({kind:t})=>t===J.resources,isVolume:({kind:t})=>t===J.volume,activateFirstNamedVolume(){const{isNamedVolume:t,sections:e}=this,n=e.find(t);n&&this.store.setActiveVolume(n.name)},isNamedVolume(t){return this.isVolume(t)&&t.name},onDeselectMenu(){this.store.setActiveVolume(null)},onSelectMenu(t){this.store.setActiveVolume(t)},propsForVolume({name:t}){const{activeVolume:e}=this;return t?{collapsed:t!==e,title:t}:{\"aria-label\":\"Chapters\"}}},created(){this.activateFirstNamedVolume()}},W=Q,X=(n(\"095b\"),Object(S[\"a\"])(W,v,f,!1,null,\"0cbd8adb\",null)),Y=X.exports,tt=n(\"653a\"),et=n(\"d26a\"),nt=n(\"863d\");const st={resources:\"resources\",volume:\"volume\"};var at={name:\"Nav\",constants:{SectionKind:st},components:{NavMenuItemBase:nt[\"a\"],NavTitleContainer:tt[\"a\"],TutorialsNavigation:Y,NavBase:h[\"a\"]},props:{sections:{type:Array,require:!0}},methods:{buildUrl:et[\"b\"]}},it=at,ot=(n(\"6211\"),Object(S[\"a\"])(it,p,m,!1,null,\"1001350c\",null)),rt=ot.exports,ct=n(\"bf08\"),lt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"section\",{staticClass:\"hero\"},[n(\"div\",{staticClass:\"copy-container\"},[n(\"h1\",{staticClass:\"title\"},[t._v(t._s(t.title))]),t.content?n(\"ContentNode\",{attrs:{content:t.content}}):t._e(),t.estimatedTime?n(\"p\",{staticClass:\"meta\"},[n(\"TimerIcon\"),n(\"span\",{staticClass:\"meta-content\"},[n(\"strong\",{staticClass:\"time\"},[t._v(t._s(t.estimatedTime))]),n(\"span\",[t._v(\" Estimated Time\")])])],1):t._e(),t.action?n(\"CallToActionButton\",{attrs:{action:t.action,\"aria-label\":t.action.overridingTitle+\" with \"+t.title,isDark:\"\"}}):t._e()],1),t.image?n(\"Asset\",{attrs:{identifier:t.image}}):t._e()],1)},ut=[],dt=n(\"80e4\"),pt=n(\"c081\"),mt=n(\"5677\"),ht=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"SVGIcon\",{staticClass:\"timer-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M7 0.5c3.59 0 6.5 2.91 6.5 6.5s-2.91 6.5-6.5 6.5c-3.59 0-6.5-2.91-6.5-6.5v0c0-3.59 2.91-6.5 6.5-6.5v0zM7 2c-2.761 0-5 2.239-5 5s2.239 5 5 5c2.761 0 5-2.239 5-5v0c0-2.761-2.239-5-5-5v0z\"}}),n(\"path\",{attrs:{d:\"M6.51 3.51h1.5v3.5h-1.5v-3.5z\"}}),n(\"path\",{attrs:{d:\"M6.51 7.010h4v1.5h-4v-1.5z\"}})])},vt=[],ft={name:\"TimerIcon\",components:{SVGIcon:q[\"a\"]}},yt=ft,bt=Object(S[\"a\"])(yt,ht,vt,!1,null,null,null),Ct=bt.exports,_t={name:\"Hero\",components:{Asset:dt[\"a\"],CallToActionButton:pt[\"a\"],ContentNode:mt[\"a\"],TimerIcon:Ct},props:{action:{type:Object,required:!1},content:{type:Array,required:!1},estimatedTime:{type:String,required:!1},image:{type:String,required:!1},title:{type:String,required:!0}}},gt=_t,Vt=(n(\"f974\"),Object(S[\"a\"])(gt,lt,ut,!1,null,\"fc7f508c\",null)),St=Vt.exports,At=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"learning-path\",class:t.classes},[n(\"div\",{staticClass:\"main-container\"},[t.isTargetIDE?t._e():n(\"div\",{staticClass:\"secondary-content-container\"},[n(\"TutorialsNavigation\",{attrs:{sections:t.sections,\"aria-label\":\"On this page\"}})],1),n(\"div\",{staticClass:\"primary-content-container\"},[n(\"div\",{staticClass:\"content-sections-container\"},[t._l(t.volumes,(function(e,s){return n(\"Volume\",t._b({key:\"volume_\"+s,staticClass:\"content-section\"},\"Volume\",t.propsFor(e),!1))})),t._l(t.otherSections,(function(e,s){return n(t.componentFor(e),t._b({key:\"resource_\"+s,tag:\"component\",staticClass:\"content-section\"},\"component\",t.propsFor(e),!1))}))],2)])])])},Tt=[],wt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"section\",{staticClass:\"resources\",attrs:{id:\"resources\",tabindex:\"-1\"}},[n(\"VolumeName\",{attrs:{name:\"Resources\",content:t.content}}),n(\"TileGroup\",{attrs:{tiles:t.tiles}})],1)},kt=[],It=n(\"72e7\");const xt={topOneThird:\"-30% 0% -70% 0%\",center:\"-50% 0% -50% 0%\"};var Ot={mixins:[It[\"a\"]],computed:{intersectionRoot(){return null},intersectionRootMargin(){return xt.center}},methods:{onIntersect(t){if(!t.isIntersecting)return;const e=this.onIntersectViewport;e?e():console.warn(\"onIntersectViewportCenter not implemented\")}}},jt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"volume-name\"},[t.image?n(\"Asset\",{staticClass:\"image\",attrs:{identifier:t.image,\"aria-hidden\":\"true\"}}):t._e(),n(\"h2\",{staticClass:\"name\"},[t._v(\" \"+t._s(t.name)+\" \")]),t.content?n(\"ContentNode\",{attrs:{content:t.content}}):t._e()],1)},Nt=[],Mt={name:\"VolumeName\",components:{ContentNode:mt[\"a\"],Asset:dt[\"a\"]},props:{image:{type:String,required:!1},content:{type:Array,required:!1},name:{type:String,required:!1}}},Et=Mt,$t=(n(\"c802\"),Object(S[\"a\"])(Et,jt,Nt,!1,null,\"14577284\",null)),qt=$t.exports,Bt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"tile-group\",class:t.countClass},t._l(t.tiles,(function(e){return n(\"Tile\",t._b({key:e.title},\"Tile\",t.propsFor(e),!1))})),1)},Rt=[],zt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"tile\"},[t.identifier?n(\"div\",{staticClass:\"icon\"},[n(t.iconComponent,{tag:\"component\"})],1):t._e(),n(\"div\",{staticClass:\"title\"},[t._v(t._s(t.title))]),n(\"ContentNode\",{attrs:{content:t.content}}),t.action?n(\"DestinationDataProvider\",{attrs:{destination:t.action},scopedSlots:t._u([{key:\"default\",fn:function(e){var s=e.url,a=e.title;return n(\"Reference\",{staticClass:\"link\",attrs:{url:s}},[t._v(\" \"+t._s(a)+\" \"),n(\"InlineChevronRightIcon\",{staticClass:\"link-icon icon-inline\"})],1)}}],null,!1,3874201962)}):t._e()],1)},Dt=[],Lt=n(\"3b96\"),Pt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"SVGIcon\",{staticClass:\"document-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M11.2,5.3,8,2l-.1-.1H2.8V12.1h8.5V6.3l-.1-1ZM8,3.2l2,2.1H8Zm2.4,8H3.6V2.8H7V6.3h3.4Z\"}})])},Gt=[],Ft={name:\"DocumentIcon\",components:{SVGIcon:q[\"a\"]}},Ht=Ft,Kt=(n(\"77e2\"),Object(S[\"a\"])(Ht,Pt,Gt,!1,null,\"56114692\",null)),Ut=Kt.exports,Zt=n(\"de60\"),Jt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"SVGIcon\",{staticClass:\"forum-icon\",attrs:{viewBox:\"0 0 14 14\"}},[n(\"path\",{attrs:{d:\"M13 1v9h-7l-1.5 3-1.5-3h-2v-9zM12 2h-10v7h1.616l0.884 1.763 0.88-1.763h6.62z\"}}),n(\"path\",{attrs:{d:\"M3 4h8.001v1h-8.001v-1z\"}}),n(\"path\",{attrs:{d:\"M3 6h8.001v1h-8.001v-1z\"}})])},Qt=[],Wt={name:\"ForumIcon\",components:{SVGIcon:q[\"a\"]}},Xt=Wt,Yt=Object(S[\"a\"])(Xt,Jt,Qt,!1,null,null,null),te=Yt.exports,ee=n(\"c4dd\"),ne=n(\"86d8\"),se=n(\"34b0\"),ae=n(\"c7ea\");const ie={documentation:\"documentation\",downloads:\"downloads\",featured:\"featured\",forums:\"forums\",sampleCode:\"sampleCode\",videos:\"videos\"};var oe={name:\"Tile\",constants:{Identifier:ie},components:{DestinationDataProvider:ae[\"a\"],InlineChevronRightIcon:se[\"a\"],ContentNode:mt[\"a\"],CurlyBracketsIcon:Lt[\"a\"],DocumentIcon:Ut,DownloadIcon:Zt[\"a\"],ForumIcon:te,PlayIcon:ee[\"a\"],Reference:ne[\"a\"]},props:{action:{type:Object,required:!1},content:{type:Array,required:!0},identifier:{type:String,required:!1},title:{type:String,require:!0}},computed:{iconComponent:({identifier:t})=>({[ie.documentation]:Ut,[ie.downloads]:Zt[\"a\"],[ie.forums]:te,[ie.sampleCode]:Lt[\"a\"],[ie.videos]:ee[\"a\"]}[t])}},re=oe,ce=(n(\"0175\"),Object(S[\"a\"])(re,zt,Dt,!1,null,\"86db603a\",null)),le=ce.exports,ue={name:\"TileGroup\",components:{Tile:le},props:{tiles:{type:Array,required:!0}},computed:{countClass:({tiles:t})=>\"count-\"+t.length},methods:{propsFor:({action:t,content:e,identifier:n,title:s})=>({action:t,content:e,identifier:n,title:s})}},de=ue,pe=(n(\"f0ca\"),Object(S[\"a\"])(de,Bt,Rt,!1,null,\"015f9f13\",null)),me=pe.exports,he={name:\"Resources\",mixins:[Ot],inject:{store:{default:()=>({setActiveSidebarLink(){},setActiveVolume(){}})}},components:{VolumeName:qt,TileGroup:me},computed:{intersectionRootMargin:()=>xt.topOneThird},props:{content:{type:Array,required:!1},tiles:{type:Array,required:!0}},methods:{onIntersectViewport(){this.store.setActiveSidebarLink(\"Resources\"),this.store.setActiveVolume(null)}}},ve=he,fe=(n(\"5668\"),Object(S[\"a\"])(ve,wt,kt,!1,null,\"49ba6f62\",null)),ye=fe.exports,be=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"section\",{staticClass:\"volume\"},[t.name?n(\"VolumeName\",t._b({},\"VolumeName\",{name:t.name,image:t.image,content:t.content},!1)):t._e(),t._l(t.chapters,(function(e,s){return n(\"Chapter\",{key:e.name,staticClass:\"tile\",attrs:{content:e.content,image:e.image,name:e.name,number:s+1,topics:t.lookupTopics(e.tutorials),volumeHasName:!!t.name}})}))],2)},Ce=[],_e=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"section\",{staticClass:\"chapter\",attrs:{id:t.anchor,tabindex:\"-1\"}},[n(\"div\",{staticClass:\"info\"},[n(\"Asset\",{attrs:{identifier:t.image,\"aria-hidden\":\"true\"}}),n(\"div\",{staticClass:\"intro\"},[n(t.volumeHasName?\"h3\":\"h2\",{tag:\"component\",staticClass:\"name\",attrs:{\"aria-label\":t.name+\" - Chapter \"+t.number}},[n(\"span\",{staticClass:\"eyebrow\",attrs:{\"aria-hidden\":\"true\"}},[t._v(\"Chapter \"+t._s(t.number))]),n(\"span\",{staticClass:\"name-text\",attrs:{\"aria-hidden\":\"true\"}},[t._v(t._s(t.name))])]),t.content?n(\"ContentNode\",{attrs:{content:t.content}}):t._e()],1)],1),n(\"TopicList\",{attrs:{topics:t.topics}})],1)},ge=[],Ve=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"ol\",{staticClass:\"topic-list\"},t._l(t.topics,(function(e){return n(\"li\",{key:e.url,staticClass:\"topic\",class:[t.kindClassFor(e),{\"no-time-estimate\":!e.estimatedTime}]},[n(\"div\",{staticClass:\"topic-icon\"},[n(t.iconComponent(e),{tag:\"component\"})],1),n(\"router-link\",{staticClass:\"container\",attrs:{to:t.buildUrl(e.url,t.$route.query),\"aria-label\":t.ariaLabelFor(e)}},[n(\"div\",{staticClass:\"link\"},[t._v(t._s(e.title))]),e.estimatedTime?n(\"div\",{staticClass:\"time\"},[n(\"TimerIcon\"),n(\"span\",{staticClass:\"time-label\"},[t._v(t._s(e.estimatedTime))])],1):t._e()])],1)})),0)},Se=[],Ae=n(\"a9f1\"),Te=n(\"8d2d\");const we={article:\"article\",tutorial:\"project\"},ke={article:\"article\",tutorial:\"tutorial\"},Ie={[we.article]:\"Article\",[we.tutorial]:\"Tutorial\"};var xe={name:\"ChapterTopicList\",components:{TimerIcon:Ct},constants:{TopicKind:we,TopicKindClass:ke,TopicKindIconLabel:Ie},props:{topics:{type:Array,required:!0}},methods:{buildUrl:et[\"b\"],iconComponent:({kind:t})=>({[we.article]:Ae[\"a\"],[we.tutorial]:Te[\"a\"]}[t]),kindClassFor:({kind:t})=>({[we.article]:ke.article,[we.tutorial]:ke.tutorial}[t]),formatTime:t=>t.replace(\"min\",\" minutes\").replace(\"hrs\",\" hours\"),ariaLabelFor({title:t,estimatedTime:e,kind:n}){const s=[t,Ie[n]];return e&&s.push(this.formatTime(e)+\" Estimated Time\"),s.join(\" - \")}}},Oe=xe,je=(n(\"1cc5\"),Object(S[\"a\"])(Oe,Ve,Se,!1,null,\"da979188\",null)),Ne=je.exports,Me={name:\"Chapter\",mixins:[Ot],inject:{store:{default:()=>({setActiveSidebarLink(){},setActiveVolume(){}})}},components:{Asset:dt[\"a\"],ContentNode:mt[\"a\"],TopicList:Ne},props:{content:{type:Array,required:!1},image:{type:String,required:!0},name:{type:String,required:!0},number:{type:Number,required:!0},topics:{type:Array,required:!0},volumeHasName:{type:Boolean,default:!1}},computed:{anchor:({name:t})=>Object(C[\"a\"])(t),intersectionRootMargin:()=>xt.topOneThird},methods:{onIntersectViewport(){this.store.setActiveSidebarLink(this.name),this.volumeHasName||this.store.setActiveVolume(null)}}},Ee=Me,$e=(n(\"f31c\"),Object(S[\"a\"])(Ee,_e,ge,!1,null,\"1d13969f\",null)),qe=$e.exports,Be={name:\"Volume\",mixins:[Ot],components:{VolumeName:qt,Chapter:qe},computed:{intersectionRootMargin:()=>xt.topOneThird},inject:{references:{default:()=>({})},store:{default:()=>({setActiveVolume(){}})}},props:{chapters:{type:Array,required:!0},content:{type:Array,required:!1},image:{type:String,required:!1},name:{type:String,required:!1}},methods:{lookupTopics(t){return t.reduce((t,e)=>t.concat(this.references[e]||[]),[])},onIntersectViewport(){this.name&&this.store.setActiveVolume(this.name)}}},Re=Be,ze=(n(\"ee29\"),Object(S[\"a\"])(Re,be,Ce,!1,null,\"2129f58c\",null)),De=ze.exports;const Le={resources:\"resources\",volume:\"volume\"};var Pe={name:\"LearningPath\",components:{Resources:ye,TutorialsNavigation:Y,Volume:De},constants:{SectionKind:Le},inject:{isTargetIDE:{default:!1}},props:{sections:{type:Array,required:!0,validator:t=>t.every(t=>Object.prototype.hasOwnProperty.call(Le,t.kind))}},computed:{classes:({isTargetIDE:t})=>({ide:t}),partitionedSections:({sections:t})=>t.reduce(([t,e],n)=>n.kind===Le.volume?[t.concat(n),e]:[t,e.concat(n)],[[],[]]),volumes:({partitionedSections:t})=>t[0],otherSections:({partitionedSections:t})=>t[1]},methods:{componentFor:({kind:t})=>({[Le.resources]:ye,[Le.volume]:De}[t]),propsFor:({chapters:t,content:e,image:n,kind:s,name:a,tiles:i})=>({[Le.resources]:{content:e,tiles:i},[Le.volume]:{chapters:t,content:e,image:n,name:a}}[s])}},Ge=Pe,Fe=(n(\"e929\"),Object(S[\"a\"])(Ge,At,Tt,!1,null,\"48bfa85c\",null)),He=Fe.exports;const Ke={hero:\"hero\",resources:\"resources\",volume:\"volume\"};var Ue={name:\"TutorialsOverview\",components:{Hero:St,LearningPath:He,Nav:rt},mixins:[ct[\"a\"]],constants:{SectionKind:Ke},inject:{isTargetIDE:{default:!1}},props:{metadata:{type:Object,default:()=>({})},references:{type:Object,default:()=>({})},sections:{type:Array,default:()=>[],validator:t=>t.every(t=>Object.prototype.hasOwnProperty.call(Ke,t.kind))}},computed:{pageTitle:({title:t})=>[t,\"Tutorials\"].filter(Boolean).join(\" \"),pageDescription:({heroSection:t,extractFirstParagraphText:e})=>t?e(t.content):null,partitionedSections:({sections:t})=>t.reduce(([t,e],n)=>n.kind===Ke.hero?[t.concat(n),e]:[t,e.concat(n)],[[],[]]),heroSections:({partitionedSections:t})=>t[0],otherSections:({partitionedSections:t})=>t[1],heroSection:({heroSections:t})=>t[0],store:()=>d,title:({metadata:{category:t=\"\"}})=>t},provide(){return{references:this.references,store:this.store}},created(){this.store.reset()}},Ze=Ue,Je=(n(\"3f36\"),Object(S[\"a\"])(Ze,l,u,!1,null,\"53888684\",null)),Qe=Je.exports,We=n(\"146e\"),Xe={name:\"TutorialsOverview\",components:{Overview:Qe},mixins:[c[\"a\"],We[\"a\"]],data(){return{topicData:null}},computed:{overviewProps:({topicData:{metadata:t,references:e,sections:n}})=>({metadata:t,references:e,sections:n}),topicKey:({$route:t,topicData:e})=>[t.path,e.identifier.interfaceLanguage].join()},beforeRouteEnter(t,e,n){Object(r[\"b\"])(t,e,n).then(t=>n(e=>{e.topicData=t})).catch(n)},beforeRouteUpdate(t,e,n){Object(r[\"d\"])(t,e)?Object(r[\"b\"])(t,e,n).then(t=>{this.topicData=t,n()}).catch(n):n()},watch:{topicData(){this.$nextTick(()=>{this.newContentMounted()})}}},Ye=Xe,tn=Object(S[\"a\"])(Ye,i,o,!1,null,null,null);e[\"default\"]=tn.exports},f084:function(t,e,n){},f0ca:function(t,e,n){\"use strict\";n(\"8f86\")},f31c:function(t,e,n){\"use strict\";n(\"9f56\")},f3cd:function(t,e,n){},f974:function(t,e,n){\"use strict\";n(\"dcb9\")},fb73:function(t,e,n){}}]);"
  },
  {
    "path": "docs/metadata.json",
    "content": "{\"bundleDisplayName\":\"ShuffleIt\",\"bundleIdentifier\":\"ShuffleIt\",\"schemaVersion\":{\"major\":0,\"minor\":1,\"patch\":0}}"
  },
  {
    "path": "docs/theme-settings.json",
    "content": "{\n  \"meta\": {},\n  \"theme\": {\n    \"code\": {\n      \"indentationWidth\": 4\n    },\n    \"colors\": {\n      \"text\": \"\",\n      \"text-background\": \"\",\n      \"grid\": \"\",\n      \"article-background\": \"\",\n      \"generic-modal-background\": \"\",\n      \"secondary-label\": \"\",\n      \"header-text\": \"\",\n      \"not-found\": {\n        \"input-border\": \"\"\n      },\n      \"runtime-preview\": {\n        \"text\": \"\"\n      },\n      \"tabnav-item\": {\n        \"border-color\": \"\"\n      },\n      \"svg-icon\": {\n        \"fill-light\": \"\",\n        \"fill-dark\": \"\"\n      },\n      \"loading-placeholder\": {\n        \"background\": \"\"\n      },\n      \"button\": {\n        \"text\": \"\",\n        \"light\": {\n          \"background\": \"\",\n          \"backgroundHover\": \"\",\n          \"backgroundActive\": \"\"\n        },\n        \"dark\": {\n          \"background\": \"\",\n          \"backgroundHover\": \"\",\n          \"backgroundActive\": \"\"\n        }\n      },\n      \"link\": null\n    },\n    \"style\": {\n      \"button\": {\n        \"borderRadius\": null\n      }\n    },\n    \"typography\": {\n      \"html-font\": \"\"\n    }\n  },\n  \"features\": {\n    \"docs\": {\n    }\n  }\n}\n"
  }
]